@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700;800;900&display=swap');
:root {
  --lct-bg: #f7f9fc;
  --lct-surface: #ffffff;
  --lct-surface-2: #f1f5f9;
  --lct-text: #0f172a;
  --lct-muted: #64748b;
  --lct-line: #e2e8f0;
  --lct-primary: #2563eb;
  --lct-primary-dark: #1e40af;
  --lct-accent: #06b6d4;
  --lct-success: #16a34a;
  --lct-warning: #f59e0b;
  --lct-danger: #dc2626;
  --lct-radius-sm: 10px;
  --lct-radius: 18px;
  --lct-radius-lg: 28px;
  --lct-shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
  --lct-shadow: 0 18px 50px rgba(15, 23, 42, .1);
  --lct-container: 1180px;
  --lct-container-wide: 1320px;
  --lct-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lct-bg);
  color: var(--lct-text);
  font-family: var(--lct-font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }

.lct-container { width: min(var(--lct-container), calc(100% - 40px)); margin: 0 auto; }
.lct-container-wide { width: min(var(--lct-container-wide), calc(100% - 32px)); margin: 0 auto; }
.lct-section { padding: 72px 0; }
.lct-section-compact { padding: 34px 0; }
.lct-section-muted { background: #fff; border-top: 1px solid var(--lct-line); border-bottom: 1px solid var(--lct-line); }
.lct-main { min-height: 64vh; }

.lct-skip-link { position: absolute; top: -100px; left: 16px; z-index: 999; background: #fff; color: #111; padding: 10px 14px; border-radius: 8px; box-shadow: var(--lct-shadow-sm); }
.lct-skip-link:focus { top: 16px; }

/* Header */
.lct-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(226,232,240,.9);
  backdrop-filter: blur(18px);
}
.lct-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 76px; }
.lct-site-branding { display: flex; align-items: center; flex: 0 0 auto; }
.custom-logo { max-height: 46px; width: auto; }
.lct-brand-text { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.lct-brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 14px; background: linear-gradient(135deg, var(--lct-primary), var(--lct-accent)); color: #fff; font-size: 13px; }
.lct-brand-name { font-size: 18px; }

.lct-primary-nav { display: flex; align-items: center; justify-content: center; flex: 1 1 auto; }
.lct-menu { display: flex; align-items: center; justify-content: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.lct-menu > li { position: relative; }
.lct-menu > li > a,
.lct-menu > li > button { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 13px; border-radius: 999px; color: #334155; font-weight: 650; font-size: 14px; }
.lct-menu > li:hover > a,
.lct-menu > li:focus-within > a { background: #eef4ff; color: var(--lct-primary-dark); }
.lct-menu .sub-menu { position: absolute; top: calc(100% + 12px); left: 0; display: none; min-width: 220px; list-style: none; margin: 0; padding: 10px; background: #fff; border: 1px solid var(--lct-line); border-radius: 18px; box-shadow: var(--lct-shadow); }
.lct-menu li:hover > .sub-menu,
.lct-menu li:focus-within > .sub-menu { display: block; }
.lct-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 12px; color: #334155; font-size: 14px; }
.lct-menu .sub-menu a:hover { background: #f1f5f9; color: var(--lct-primary-dark); }

.lct-has-mega { position: static !important; }
.lct-mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  display: none;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 32px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--lct-line);
  border-radius: 24px;
  box-shadow: var(--lct-shadow);
}
.lct-has-mega:hover .lct-mega-menu,
.lct-has-mega:focus-within .lct-mega-menu { display: grid; }
.lct-mega-col { padding: 10px; border-radius: 18px; background: #f8fafc; }
.lct-mega-col h3 { margin: 0 0 8px; font-size: 14px; color: var(--lct-text); }
.lct-mega-col a { display: block; padding: 7px 8px; border-radius: 10px; color: var(--lct-muted); font-size: 14px; }
.lct-mega-col a:hover { background: #fff; color: var(--lct-primary-dark); }

.lct-header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.lct-text-link { color: #334155; font-size: 14px; font-weight: 650; }
.lct-text-link:hover { color: var(--lct-primary); }
.lct-mobile-toggle { display: none; width: 42px; height: 42px; border: 0; background: #eef4ff; border-radius: 14px; padding: 10px; cursor: pointer; }
.lct-mobile-toggle span { display: block; height: 2px; margin: 5px 0; background: #0f172a; border-radius: 99px; }

/* Buttons */
.lct-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent; font-weight: 750; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.lct-btn:hover { transform: translateY(-1px); }
.lct-btn-primary { background: var(--lct-primary); color: #fff; box-shadow: 0 10px 24px rgba(37, 99, 235, .22); }
.lct-btn-primary:hover { background: var(--lct-primary-dark); }
.lct-btn-dark { background: #0f172a; color: #fff; }
.lct-btn-soft { background: #eef4ff; color: var(--lct-primary-dark); border-color: #dbeafe; }
.lct-btn-light { background: #fff; color: #0f172a; border-color: rgba(255,255,255,.45); }

/* Hero */
.lct-home-hero {
  padding: 92px 0 56px;
  background:
    radial-gradient(circle at 50% 10%, rgba(37, 99, 235, .14), transparent 34%),
    radial-gradient(circle at 82% 25%, rgba(6, 182, 212, .14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.lct-hero-inner { text-align: center; }
.lct-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px; color: var(--lct-primary); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.lct-home-hero h1 { max-width: 780px; margin: 0 auto; font-size: clamp(42px, 7vw, 82px); line-height: .98; letter-spacing: -.06em; }
.lct-hero-copy { max-width: 720px; margin: 22px auto 0; color: var(--lct-muted); font-size: 18px; }
.lct-hero-search {
  display: grid;
  grid-template-columns: 1.4fr .9fr .9fr auto;
  gap: 10px;
  align-items: end;
  width: min(1040px, 100%);
  margin: 34px auto 0;
  padding: 10px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 999px;
  box-shadow: var(--lct-shadow);
  text-align: left;
}
.lct-hero-search label { display: grid; gap: 3px; padding: 0 12px; border-right: 1px solid var(--lct-line); }
.lct-hero-search label:last-of-type { border-right: 0; }
.lct-hero-search span { color: var(--lct-muted); font-size: 12px; font-weight: 700; }
.lct-hero-search input,
.lct-hero-search select { width: 100%; min-height: 40px; border: 0; outline: none; background: transparent; color: var(--lct-text); font-weight: 650; }
.lct-hero-search button { min-height: 56px; padding: 0 28px; }
.lct-quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.lct-quick-links a { padding: 9px 14px; border: 1px solid var(--lct-line); border-radius: 999px; color: #475569; background: #fff; font-size: 14px; font-weight: 650; }
.lct-quick-links a:hover { border-color: #bfdbfe; color: var(--lct-primary-dark); background: #eff6ff; }

/* Page hero */
.lct-page-hero { padding: 66px 0 42px; background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%); border-bottom: 1px solid var(--lct-line); }
.lct-page-hero h1 { max-width: 860px; margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
.lct-page-hero p:not(.lct-eyebrow) { max-width: 760px; color: var(--lct-muted); font-size: 18px; }

/* Home sections */
.lct-section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.lct-section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -.04em; }
.lct-link-arrow { color: var(--lct-primary); font-weight: 800; }
.lct-link-arrow::after { content: ' →'; }
.lct-trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lct-trust-row div { display: grid; gap: 4px; padding: 18px 20px; background: #fff; border: 1px solid var(--lct-line); border-radius: 18px; box-shadow: var(--lct-shadow-sm); }
.lct-trust-row strong { font-size: 16px; }
.lct-trust-row span { color: var(--lct-muted); font-size: 14px; }
.lct-continent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lct-continent-card { min-height: 190px; display: flex; flex-direction: column; justify-content: end; padding: 22px; border-radius: 26px; color: #fff; background: linear-gradient(135deg, rgba(15,23,42,.92), rgba(30,64,175,.84)), radial-gradient(circle at 20% 20%, rgba(255,255,255,.2), transparent 26%); box-shadow: var(--lct-shadow-sm); overflow: hidden; position: relative; }
.lct-continent-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(6,182,212,.6), transparent 34%); opacity: .8; }
.lct-continent-card > * { position: relative; z-index: 1; }
.lct-continent-card span { font-size: 28px; font-weight: 850; letter-spacing: -.04em; }
.lct-continent-card p { margin: 8px 0 0; color: rgba(255,255,255,.8); }
.lct-private-cta { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px; border-radius: 30px; background: #0f172a; color: #fff; box-shadow: var(--lct-shadow); }
.lct-private-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }
.lct-private-cta p { color: rgba(255,255,255,.72); }
.lct-private-cta .lct-eyebrow { color: #93c5fd; }
.lct-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

/* Plugin frame and shortcode styling */
.lct-plugin-frame { position: relative; }
.lct-content-card,
.lct-center-card,
.lct-plugin-notice { background: #fff; border: 1px solid var(--lct-line); border-radius: 28px; box-shadow: var(--lct-shadow-sm); padding: 30px; }
.lct-center-card { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lct-plugin-notice { text-align: center; }

/* Style common Patchatravel plugin markup without touching business logic */
.lct-plugin-frame .ltg-tour-search,
.lct-plugin-frame .ltg-booking-form,
.lct-plugin-frame .ltg-payment-page,
.lct-plugin-frame .ltg-dashboard,
.lct-plugin-frame .ltg-private-group-planner,
.lct-plugin-frame .ltg-tour-detail { background: #fff; border: 1px solid var(--lct-line); border-radius: 28px; box-shadow: var(--lct-shadow-sm); }
.lct-plugin-frame .ltg-tour-search { padding: 18px; margin-bottom: 22px; }
.lct-plugin-frame .ltg-tour-search form,
.lct-plugin-frame .ltg-search-form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; align-items: end; }
.lct-plugin-frame .ltg-tour-search label { display: grid; gap: 6px; color: var(--lct-muted); font-size: 13px; font-weight: 750; }
.lct-plugin-frame input,
.lct-plugin-frame select,
.lct-plugin-frame textarea,
.lct-content-card input,
.lct-content-card select,
.lct-content-card textarea { min-height: 44px; border: 1px solid var(--lct-line); border-radius: 14px; padding: 10px 12px; background: #fff; color: var(--lct-text); }
.lct-plugin-frame textarea { min-height: 110px; }
.lct-plugin-frame button,
.lct-plugin-frame input[type="submit"],
.lct-plugin-frame .button,
.lct-plugin-frame .ltg-btn,
.lct-plugin-frame a[class*="btn"] { border-radius: 999px !important; min-height: 42px; padding: 10px 18px; font-weight: 800; }
.lct-plugin-frame button[type="submit"],
.lct-plugin-frame input[type="submit"] { border: 0; background: var(--lct-primary); color: #fff; }
.lct-plugin-frame .ltg-tour-grid,
.lct-plugin-frame .ltg-tours-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lct-plugin-frame .ltg-tour-card { border: 1px solid var(--lct-line); border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--lct-shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.lct-plugin-frame .ltg-tour-card:hover { transform: translateY(-3px); box-shadow: var(--lct-shadow); }
.lct-plugin-frame .ltg-tour-card img { aspect-ratio: 16 / 10; object-fit: cover; }
.lct-plugin-frame .ltg-tour-card-body,
.lct-plugin-frame .ltg-tour-content { padding: 18px; }
.lct-plugin-frame table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--lct-line); border-radius: 18px; background: #fff; }
.lct-plugin-frame th,
.lct-plugin-frame td { padding: 13px 14px; border-bottom: 1px solid var(--lct-line); text-align: left; vertical-align: top; }
.lct-plugin-frame tr:last-child td { border-bottom: 0; }
.lct-plugin-frame th { background: #f8fafc; font-size: 13px; color: #475569; }
.lct-plugin-frame .ltg-booking-success,
.lct-plugin-frame .ltg-success { background: #ecfdf5; border: 1px solid #bbf7d0; color: #14532d; border-radius: 18px; padding: 18px; }
.lct-plugin-frame .ltg-booking-error,
.lct-plugin-frame .ltg-error { background: #fef2f2; border: 1px solid #fecaca; color: #7f1d1d; border-radius: 18px; padding: 18px; }

/* Template specific */
.lct-tour-detail-frame .ltg-tour-detail { overflow: hidden; }
.lct-template-booking .lct-plugin-frame,
.lct-template-payment .lct-plugin-frame,
.lct-template-dashboard .lct-plugin-frame,
.lct-template-private-group .lct-plugin-frame { max-width: 1040px; }
.lct-private-hero { padding: 70px 0 48px; background: radial-gradient(circle at 70% 30%, rgba(37,99,235,.16), transparent 32%), linear-gradient(180deg, #fff 0%, #f8fafc 100%); border-bottom: 1px solid var(--lct-line); }
.lct-private-hero h1 { margin: 0; max-width: 780px; font-size: clamp(38px, 6vw, 70px); line-height: 1; letter-spacing: -.06em; }
.lct-private-hero p:not(.lct-eyebrow) { max-width: 760px; color: var(--lct-muted); font-size: 18px; }

/* Posts */
.lct-post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lct-post-card { background: #fff; border: 1px solid var(--lct-line); border-radius: 24px; overflow: hidden; box-shadow: var(--lct-shadow-sm); }
.lct-post-thumb img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.lct-post-card-body { padding: 20px; }
.lct-post-card h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.25; }
.lct-post-date { margin: 0 0 8px; color: var(--lct-muted); font-size: 13px; }
.lct-featured-image img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 28px; box-shadow: var(--lct-shadow-sm); }
.lct-article-content { max-width: 820px; }
.lct-article-content a { color: var(--lct-primary); text-decoration: underline; }

/* Footer */
.lct-site-footer { background: #0f172a; color: #fff; padding: 54px 0 24px; }
.lct-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.lct-site-footer p,
.lct-footer-bottom { color: rgba(255,255,255,.68); }
.lct-site-footer h3 { margin: 0 0 12px; font-size: 15px; color: #fff; }
.lct-site-footer a:not(.lct-btn) { display: block; color: rgba(255,255,255,.72); margin: 8px 0; }
.lct-site-footer a:hover { color: #fff; }
.lct-footer-brand .lct-brand-mark { background: #fff; color: #0f172a; }
.lct-footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 26px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

@media (max-width: 1100px) {
  .lct-header-actions { display: none; }
  .lct-hero-search { grid-template-columns: 1fr 1fr; border-radius: 28px; }
  .lct-hero-search label { border-right: 0; border-bottom: 1px solid var(--lct-line); padding-bottom: 8px; }
  .lct-hero-search button { grid-column: 1 / -1; }
  .lct-continent-grid { grid-template-columns: repeat(2, 1fr); }
  .lct-plugin-frame .ltg-tour-grid,
  .lct-plugin-frame .ltg-tours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .lct-mobile-toggle { display: block; }
  .lct-header-inner { min-height: 66px; }
  .lct-primary-nav { position: fixed; inset: 66px 12px auto; display: none; padding: 14px; background: #fff; border: 1px solid var(--lct-line); border-radius: 22px; box-shadow: var(--lct-shadow); }
  body.lct-nav-open .lct-primary-nav { display: block; }
  .lct-menu { display: block; }
  .lct-menu > li > a { width: 100%; justify-content: space-between; border-radius: 14px; }
  .lct-mega-menu,
  .lct-menu .sub-menu { position: static; display: none; transform: none; width: 100%; box-shadow: none; margin: 8px 0 12px; }
  .lct-has-mega:hover .lct-mega-menu,
  .lct-has-mega:focus-within .lct-mega-menu { display: grid; grid-template-columns: 1fr; }
  .lct-section { padding: 54px 0; }
  .lct-home-hero { padding: 64px 0 42px; }
  .lct-home-hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .lct-trust-row,
  .lct-footer-grid,
  .lct-post-list { grid-template-columns: 1fr; }
  .lct-private-cta { grid-template-columns: 1fr; }
  .lct-cta-actions { justify-content: flex-start; }
  .lct-plugin-frame .ltg-tour-search form,
  .lct-plugin-frame .ltg-search-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .lct-container,
  .lct-container-wide { width: min(100% - 28px, var(--lct-container)); }
  .lct-hero-search { grid-template-columns: 1fr; border-radius: 24px; padding: 12px; }
  .lct-hero-search label { padding: 0 2px 8px; }
  .lct-continent-grid,
  .lct-plugin-frame .ltg-tour-grid,
  .lct-plugin-frame .ltg-tours-grid,
  .lct-plugin-frame .ltg-tour-search form,
  .lct-plugin-frame .ltg-search-form { grid-template-columns: 1fr; }
  .lct-section-head { display: block; }
  .lct-continent-card { min-height: 160px; }
  .lct-footer-bottom { display: grid; }
  .lct-plugin-frame table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Phase 7F: SEO landing pages */
.lct-seo-hero {
  padding: 74px 0 48px;
  background:
    radial-gradient(circle at 15% 20%, rgba(37, 99, 235, .14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(6, 182, 212, .16), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--lct-line);
}
.lct-seo-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 34px; align-items: center; }
.lct-seo-hero h1 { margin: 0; max-width: 800px; font-size: clamp(38px, 6vw, 72px); line-height: .98; letter-spacing: -.06em; }
.lct-seo-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.lct-seo-search-card { padding: 24px; background: rgba(255,255,255,.96); border: 1px solid var(--lct-line); border-radius: 28px; box-shadow: var(--lct-shadow); }
.lct-seo-search-card h2 { margin: 0 0 16px; font-size: 24px; letter-spacing: -.03em; }
.lct-seo-search-card form { display: grid; gap: 12px; }
.lct-seo-search-card label { display: grid; gap: 6px; }
.lct-seo-search-card span { color: var(--lct-muted); font-size: 12px; font-weight: 800; }
.lct-seo-search-card input { width: 100%; min-height: 46px; padding: 0 13px; border: 1px solid var(--lct-line); border-radius: 14px; outline: none; background: #fff; }
.lct-seo-search-card input:focus { border-color: #93c5fd; box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.lct-seo-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lct-seo-stats div { padding: 18px 20px; background: #fff; border: 1px solid var(--lct-line); border-radius: 20px; box-shadow: var(--lct-shadow-sm); }
.lct-seo-stats strong { display: block; margin-bottom: 4px; }
.lct-seo-stats span { color: var(--lct-muted); font-size: 14px; }
.lct-country-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.lct-country-chip-grid a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; background: #fff; border: 1px solid var(--lct-line); border-radius: 999px; font-weight: 750; color: #334155; box-shadow: var(--lct-shadow-sm); }
.lct-country-chip-grid a:hover { transform: translateY(-1px); border-color: #bfdbfe; color: var(--lct-primary-dark); background: #eff6ff; }
.lct-seo-tour-frame { scroll-margin-top: 110px; }
.lct-seo-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.lct-seo-side-card { position: sticky; top: 100px; padding: 24px; background: #0f172a; color: #fff; border-radius: 26px; box-shadow: var(--lct-shadow); }
.lct-seo-side-card h3 { margin: 0 0 8px; font-size: 24px; }
.lct-seo-side-card p { color: rgba(255,255,255,.72); }
.lct-faq-wrap { max-width: 960px; }
.lct-faq-list { display: grid; gap: 12px; }
.lct-faq-item { background: #fff; border: 1px solid var(--lct-line); border-radius: 18px; box-shadow: var(--lct-shadow-sm); overflow: hidden; }
.lct-faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; font-weight: 850; }
.lct-faq-item summary::-webkit-details-marker { display: none; }
.lct-faq-item summary::after { content: '+'; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: #eef4ff; color: var(--lct-primary-dark); flex: 0 0 auto; }
.lct-faq-item[open] summary::after { content: '–'; }
.lct-faq-item p { margin: 0; padding: 0 20px 20px; color: var(--lct-muted); }

/* Phase 7H: Content/blog polish */
.lct-blog-hero, .lct-faq-hero { background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.lct-blog-category-row { display: flex; flex-wrap: wrap; gap: 10px; }
.lct-blog-category-row a { padding: 10px 14px; border: 1px solid var(--lct-line); border-radius: 999px; background: #fff; color: #334155; font-weight: 750; }
.lct-blog-category-row a:hover { background: #eff6ff; border-color: #bfdbfe; color: var(--lct-primary-dark); }
.lct-post-list-modern .lct-post-card:first-child { grid-column: span 2; }
.lct-article-hero { padding-bottom: 58px; }
.lct-article-content { font-size: 17px; }
.lct-article-content h2, .lct-article-content h3 { letter-spacing: -.025em; line-height: 1.18; }
.lct-article-content blockquote { margin: 26px 0; padding: 20px 24px; border-left: 4px solid var(--lct-primary); background: #f8fafc; border-radius: 16px; color: #334155; }
.lct-article-content table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 14px; }
.lct-article-content th, .lct-article-content td { border: 1px solid var(--lct-line); padding: 10px 12px; }
.lct-article-content th { background: #f8fafc; }

/* Phase 7G: Mobile UX polish */
.lct-mobile-sticky-cta { display: none; }
.lct-site-header.lct-is-scrolled { box-shadow: 0 12px 32px rgba(15, 23, 42, .08); }
body.lct-nav-open { overflow: hidden; }
.lct-touch-submenu-toggle { display: none; }
@media (max-width: 860px) {
  .lct-container { width: min(100% - 28px, var(--lct-container)); }
  .lct-container-wide { width: min(100% - 22px, var(--lct-container-wide)); }
  .lct-section { padding: 48px 0; }
  .lct-home-hero { padding: 58px 0 38px; }
  .lct-home-hero h1, .lct-seo-hero h1 { letter-spacing: -.05em; }
  .lct-hero-copy { font-size: 16px; }
  .lct-hero-search { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 12px; border-radius: 24px; }
  .lct-hero-search label { padding: 10px 12px; border: 1px solid var(--lct-line); border-radius: 16px; background: #fff; }
  .lct-hero-search button { min-height: 52px; width: 100%; }
  .lct-section-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .lct-trust-row, .lct-seo-stats, .lct-post-list { grid-template-columns: 1fr; }
  .lct-continent-grid { grid-template-columns: 1fr; }
  .lct-private-cta { grid-template-columns: 1fr; padding: 24px; }
  .lct-cta-actions { display: grid; gap: 10px; }
  .lct-cta-actions .lct-btn { width: 100%; }
  .lct-seo-hero { padding: 48px 0 34px; }
  .lct-seo-hero-grid, .lct-seo-content-grid { grid-template-columns: 1fr; }
  .lct-seo-search-card { border-radius: 22px; padding: 18px; }
  .lct-seo-side-card { position: static; }
  .lct-post-list-modern .lct-post-card:first-child { grid-column: auto; }
  .lct-plugin-frame .ltg-tour-grid,
  .lct-plugin-frame .ltg-tours-grid { grid-template-columns: 1fr !important; }
  .lct-plugin-frame table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .lct-mobile-sticky-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; background: rgba(255,255,255,.94); border: 1px solid var(--lct-line); border-radius: 999px; box-shadow: var(--lct-shadow); backdrop-filter: blur(18px); }
  .lct-mobile-sticky-cta a { display: grid; place-items: center; min-height: 44px; border-radius: 999px; background: #0f172a; color: #fff; font-weight: 850; font-size: 14px; }
  .lct-mobile-sticky-cta a:nth-child(2) { background: var(--lct-primary); }
  .lct-site-footer { padding-bottom: 86px; }
  .lct-primary-nav { max-height: calc(100vh - 82px); overflow: auto; }
  .lct-mega-col { background: #fff; border: 1px solid var(--lct-line); }
}
@media (max-width: 520px) {
  .lct-page-hero h1 { font-size: 34px; }
  .lct-home-hero h1 { font-size: 42px; }
  .lct-quick-links { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .lct-quick-links a { flex: 0 0 auto; }
  .lct-country-chip-grid { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .lct-country-chip-grid a { flex: 0 0 auto; }
  .lct-post-card-body { padding: 16px; }
}
@media (max-width: 860px) {
  .lct-menu li.lct-submenu-open > .sub-menu,
  .lct-menu li.lct-submenu-open > .lct-mega-menu { display: grid; grid-template-columns: 1fr; }
}

/* Phase 7F: SEO landing pages */
.lct-seo-hero {
  padding: 74px 0 48px;
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 99, 235, .12), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(6, 182, 212, .13), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--lct-line);
}
.lct-breadcrumb-lite { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; color: var(--lct-muted); font-size: 14px; }
.lct-breadcrumb-lite a { color: #475569; }
.lct-breadcrumb-lite a:hover { color: var(--lct-primary); }
.lct-seo-hero h1 { max-width: 940px; margin: 0; font-size: clamp(38px, 6vw, 70px); line-height: 1.02; letter-spacing: -.055em; }
.lct-seo-hero-copy { max-width: 860px; margin: 18px 0 0; color: var(--lct-muted); font-size: 18px; }
.lct-seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.lct-seo-chip-wrap { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 12px; scrollbar-width: thin; }
.lct-country-chip { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--lct-line); color: #334155; font-weight: 750; box-shadow: var(--lct-shadow-sm); }
.lct-country-chip.is-active, .lct-country-chip:hover { border-color: #bfdbfe; color: var(--lct-primary-dark); background: #eff6ff; }
.lct-seo-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 18px; align-items: stretch; }
.lct-seo-card { background: #fff; border: 1px solid var(--lct-line); border-radius: 26px; padding: 24px; box-shadow: var(--lct-shadow-sm); }
.lct-seo-card-large { grid-row: span 2; }
.lct-seo-card h2, .lct-seo-card h3 { margin-top: 0; letter-spacing: -.025em; }
.lct-entry-content p:first-child { margin-top: 0; }
.lct-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.lct-check-list li { position: relative; padding-left: 26px; color: #334155; }
.lct-check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--lct-success); font-weight: 900; }
.lct-alert-card { background: #fff7ed; border: 1px solid #fed7aa; color: #7c2d12; border-radius: 20px; padding: 18px 20px; box-shadow: var(--lct-shadow-sm); }

/* Phase 7H: FAQ / content / blog */
.lct-faq-section { max-width: 980px; }
.lct-faq-intro { margin-bottom: 20px; }
.lct-faq-list { display: grid; gap: 12px; }
.lct-faq-item { background: #fff; border: 1px solid var(--lct-line); border-radius: 20px; box-shadow: var(--lct-shadow-sm); overflow: hidden; }
.lct-faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 850; list-style: none; display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.lct-faq-item summary::-webkit-details-marker { display: none; }
.lct-faq-item summary::after { content: '+'; display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #eef4ff; color: var(--lct-primary-dark); flex: 0 0 auto; }
.lct-faq-item[open] summary::after { content: '–'; }
.lct-faq-item > div { padding: 0 22px 20px; color: var(--lct-muted); }
.lct-faq-cta { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; border-radius: 26px; background: #0f172a; color: #fff; }
.lct-faq-cta p { color: rgba(255,255,255,.72); }
.lct-faq-cta h2 { margin: 0; }
.lct-blog-hero { padding: 70px 0 44px; background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%); border-bottom: 1px solid var(--lct-line); }
.lct-blog-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 66px); line-height: 1.03; letter-spacing: -.055em; }
.lct-blog-hero p { max-width: 760px; color: var(--lct-muted); }
.lct-blog-search { display: flex; gap: 10px; max-width: 760px; margin-top: 22px; padding: 8px; border: 1px solid var(--lct-line); border-radius: 999px; background: #fff; box-shadow: var(--lct-shadow-sm); }
.lct-blog-search input { flex: 1; min-height: 46px; padding: 0 16px; border: 0; outline: none; background: transparent; }
.lct-post-thumb-empty { aspect-ratio: 16/10; background: linear-gradient(135deg, #dbeafe, #cffafe); display: grid; place-items: center; color: var(--lct-primary-dark); font-weight: 900; }
.lct-post-card { transition: transform .18s ease, box-shadow .18s ease; }
.lct-post-card:hover { transform: translateY(-3px); box-shadow: var(--lct-shadow); }
.lct-article-layout { display: grid; grid-template-columns: minmax(0, 820px) 320px; gap: 28px; align-items: start; }
.lct-article-sidebar { display: grid; gap: 16px; position: sticky; top: 96px; }
.lct-sidebar-card { background: #fff; border: 1px solid var(--lct-line); border-radius: 24px; padding: 22px; box-shadow: var(--lct-shadow-sm); }
.lct-sidebar-card h3 { margin: 0 0 8px; }
.lct-sidebar-card p { color: var(--lct-muted); }
.lct-post-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--lct-line); color: var(--lct-muted); }
.lct-post-tags a { display: inline-flex; margin: 4px; padding: 7px 10px; border-radius: 999px; background: #f1f5f9; color: #334155; text-decoration: none; }

/* Phase 7G: mobile UX polish */
.lct-mobile-sticky-cta { display: none; }
@media (max-width: 860px) {
  .lct-primary-nav { max-height: calc(100vh - 88px); overflow: auto; }
  .lct-has-mega.is-open .lct-mega-menu { display: grid; grid-template-columns: 1fr; }
  .lct-mega-col { background: #fff; border: 1px solid var(--lct-line); }
  .lct-mega-col h3 a { color: var(--lct-text); }
  .lct-mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 18px 46px rgba(15,23,42,.18);
    backdrop-filter: blur(16px);
  }
  .lct-mobile-sticky-cta a { display: grid; place-items: center; gap: 2px; padding: 8px 4px; border-radius: 16px; font-size: 12px; font-weight: 800; color: #334155; }
  .lct-mobile-sticky-cta a:hover { background: #eff6ff; color: var(--lct-primary-dark); }
  .lct-mobile-sticky-cta span { font-size: 16px; }
  body { padding-bottom: 82px; }
  .lct-page-hero, .lct-seo-hero, .lct-blog-hero { padding-top: 42px; }
  .lct-section { padding: 44px 0; }
  .lct-plugin-frame input, .lct-plugin-frame select, .lct-plugin-frame textarea { font-size: 16px; }
  .lct-plugin-frame .ltg-tour-grid, .lct-post-list { gap: 14px; }
}
@media (max-width: 760px) {
  .lct-seo-grid, .lct-article-layout { grid-template-columns: 1fr; }
  .lct-seo-card-large { grid-row: auto; }
  .lct-blog-search { border-radius: 22px; display: grid; }
  .lct-blog-search input { border: 1px solid var(--lct-line); border-radius: 16px; }
  .lct-faq-cta { display: grid; }
  .lct-article-sidebar { position: static; }
}
@media (max-width: 480px) {
  .lct-home-hero h1, .lct-seo-hero h1, .lct-blog-hero h1 { letter-spacing: -.04em; }
  .lct-btn { width: 100%; }
  .lct-seo-actions, .lct-cta-actions { display: grid; }
  .lct-country-chip { padding: 9px 12px; }
}
.lct-card { background:#fff; border:1px solid var(--lct-line); border-radius:24px; padding:24px; box-shadow:var(--lct-shadow-sm); }
.lct-blog-category-row { display:flex; gap:10px; flex-wrap:wrap; }
.lct-blog-category-row a { padding:9px 14px; border:1px solid var(--lct-line); border-radius:999px; background:#fff; color:#334155; font-weight:750; box-shadow:var(--lct-shadow-sm); }
.lct-blog-category-row a:hover { color:var(--lct-primary-dark); background:#eff6ff; border-color:#bfdbfe; }

/* Patch 7.1.1: keep mega menu stable while selecting countries */
@media (min-width: 861px) {
  .lct-has-mega { position: static !important; }
  .lct-mega-menu {
    top: 100%;
    z-index: 999;
    pointer-events: auto;
  }
  .lct-has-mega::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
    display: none;
  }
  .lct-has-mega:hover::after,
  .lct-has-mega:focus-within::after,
  .lct-has-mega.is-open::after { display: block; }
  .lct-has-mega.is-open .lct-mega-menu { display: grid; }
}
.lct-mega-menu a { cursor: pointer; }

/* Patchatravel theme v1.1.3: compact real API tour cards/detail and stronger search/menu usability */
:root { --lct-container: 1100px; --lct-container-wide: 1180px; }
.lct-section { padding: 56px 0; }
.lct-home-hero { padding: 70px 0 42px; }
.lct-home-hero h1 { font-size: clamp(36px, 6vw, 68px); }
.lct-plugin-frame .ltg-tour-grid,
.lct-plugin-frame .ltg-tours-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lct-plugin-frame .ltg-tour-card { border-radius: 18px; }
.lct-plugin-frame .ltg-tour-image {
  height: 150px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff !important;
}
.lct-plugin-frame .ltg-tour-card-body,
.lct-plugin-frame .ltg-tour-content { padding: 14px !important; }
.lct-plugin-frame .ltg-tour-card h3 { font-size: 16px !important; line-height: 1.35; }
.lct-plugin-frame .ltg-tour-meta,
.lct-plugin-frame .ltg-tour-destination,
.lct-plugin-frame .ltg-next-date,
.lct-plugin-frame .ltg-price-label { font-size: 13px; }
.lct-plugin-frame .ltg-price { font-size: 18px !important; }
.lct-tour-detail-frame { max-width: 1120px; }
.lct-tour-detail-frame .ltg-tour-detail { padding: 0; box-shadow: none; background: transparent; border: 0; }
.lct-plugin-frame .ltg-detail-section,
.lct-plugin-frame .ltg-detail-header { border-radius: 20px; }
.lct-plugin-frame .ltg-detail-hero-img { object-fit: contain !important; }
.lct-menu .lct-mega-menu a { cursor: pointer; }
.lct-has-mega.is-open .lct-mega-menu { display: grid; }
@media (max-width: 1100px) {
  .lct-plugin-frame .ltg-tour-grid,
  .lct-plugin-frame .ltg-tours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .lct-section { padding: 42px 0; }
  .lct-plugin-frame .ltg-tour-grid,
  .lct-plugin-frame .ltg-tours-grid { grid-template-columns: 1fr !important; }
  .lct-plugin-frame .ltg-tour-image { height: 140px !important; }
}

/* --- Patchatravel Ultra Premium Plus v1.4.0 --- */
:root{--lct-bg:#fff8f1;--lct-primary:#eb8b2f;--lct-primary-dark:#c9660a;--lct-gold:#ffcf8c;--lct-line:#eedaca;--lct-dark:#1d2336;--lct-shadow:0 24px 60px rgba(85,49,16,.12);--lct-shadow-lg:0 38px 90px rgba(85,49,16,.16)}
body{background:radial-gradient(circle at top left,rgba(255,204,150,.18),transparent 32%),linear-gradient(180deg,#fffaf7 0%,#fff8f1 100%)}
.lct-topbar{background:linear-gradient(90deg,#1f2a44,#2f3c62);color:rgba(255,255,255,.92);font-size:13px}.lct-topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:42px}.lct-topbar-links{display:flex;gap:18px}.lct-topbar a{color:#fff}.lct-site-header-premium{background:rgba(255,255,255,.78);box-shadow:0 10px 38px rgba(40,22,6,.06);backdrop-filter:blur(18px)}.lct-site-header.is-scrolled{box-shadow:0 18px 48px rgba(40,22,6,.12)}.lct-site-branding{gap:12px}.lct-brand-badge{display:inline-flex;min-height:32px;align-items:center;padding:0 12px;border-radius:999px;background:linear-gradient(135deg,#fff4e8,#fff0dc);border:1px solid #f0d8bf;color:#8f4c11;font-size:12px;font-weight:700}
.lct-menu-ultra{display:flex;align-items:center;gap:2px;flex-wrap:wrap}.lct-menu-ultra>.menu-item-has-children>.sub-menu{min-width:280px}.lct-menu-ultra .sub-menu .sub-menu{top:-10px;left:calc(100% - 12px)}.lct-menu-ultra .sub-menu li{position:relative}.lct-menu-ultra .sub-menu a{display:flex;align-items:center;justify-content:space-between}.lct-menu>li>a::after{content:"";position:absolute;left:14px;right:14px;bottom:8px;height:2px;border-radius:999px;background:linear-gradient(90deg,var(--lct-primary),var(--lct-gold));transform:scaleX(0);transition:transform .2s}.lct-menu>li:hover>a::after,.lct-menu>li:focus-within>a::after{transform:scaleX(1)}
.lct-page-hero-ultra,.lct-seo-hero-ultra{background:radial-gradient(circle at top right,rgba(255,192,120,.22),transparent 26%),linear-gradient(180deg,#fffaf6 0%,#fff4e9 100%)}.lct-home-hero-plus{background:radial-gradient(circle at 12% 12%,rgba(255,196,124,.32),transparent 30%),radial-gradient(circle at 92% 20%,rgba(255,226,188,.65),transparent 28%),linear-gradient(180deg,#fff8f1 0%,#fff3e6 100%);overflow:clip}.lct-home-hero-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);gap:34px;align-items:center}.lct-hero-copy-wrap h1{font-size:clamp(3rem,6vw,5.25rem);line-height:1.02;letter-spacing:-.045em}.lct-hero-copy{font-size:clamp(1.03rem,1.4vw,1.16rem);color:#5c574f}.lct-hero-stat-row{display:flex;flex-wrap:wrap;gap:14px;margin:22px 0 24px}.lct-hero-stat-row div{min-width:130px;padding:14px 16px;border-radius:20px;background:rgba(255,255,255,.72);border:1px solid rgba(238,218,202,.8);box-shadow:0 12px 32px rgba(85,49,16,.08)}.lct-hero-stat-row strong{display:block;font-size:1.55rem;color:#1d2336}.lct-hero-search{border-radius:28px;background:rgba(255,255,255,.86);border:1px solid rgba(238,218,202,.92);backdrop-filter:blur(10px);box-shadow:var(--lct-shadow)}
.lct-hero-showcase-card-main{position:relative;min-height:310px;padding-top:58px;background:linear-gradient(145deg,#1f2a44 0%,#4a5880 44%,#eb8b2f 100%);box-shadow:var(--lct-shadow-lg)}.lct-floating-badge{position:absolute;top:18px;left:18px;display:inline-flex;min-height:32px;align-items:center;padding:0 12px;border-radius:999px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.18);font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.lct-hero-mini-card,.lct-city-group-card,.lct-value-card,.lct-discovery-card,.lct-country-landing-card,.lct-country-tour-block{border-radius:26px;background:rgba(255,255,255,.88);backdrop-filter:blur(8px);border:1px solid rgba(238,218,202,.9);box-shadow:var(--lct-shadow)}
.lct-section-overlap{margin-top:-38px;position:relative;z-index:2}.lct-premium-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:14px;border-radius:28px;background:rgba(255,255,255,.86);border:1px solid rgba(238,218,202,.92);box-shadow:var(--lct-shadow)}.lct-premium-strip>div{padding:18px 20px;border-radius:22px;background:linear-gradient(180deg,#fff 0%,#fff5ed 100%)}.lct-premium-strip strong{display:block;color:#1d2336;margin-bottom:6px}.lct-premium-strip span{color:#6b655e;font-size:14px}
.lct-spotlight-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:18px}.lct-spotlight-card{position:relative;overflow:hidden;min-height:280px;padding:24px;border-radius:28px;color:#fff;box-shadow:var(--lct-shadow-lg)}.lct-spotlight-card::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.4))}.lct-spotlight-card>*{position:relative;z-index:1}.lct-spotlight-card-1{background:linear-gradient(145deg,#214270,#f08a24)}.lct-spotlight-card-2{background:linear-gradient(145deg,#72361e,#f39d45)}.lct-spotlight-card-3{background:linear-gradient(145deg,#1f2a44,#4b679f)}.lct-spotlight-tag{display:inline-flex;align-items:center;min-height:32px;padding:0 12px;border-radius:999px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.18);margin-bottom:18px;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.lct-spotlight-card strong{display:block;font-size:clamp(1.75rem,2.5vw,2.2rem);line-height:1.1;margin-bottom:10px}.lct-spotlight-card p{margin:0;max-width:250px;color:rgba(255,255,255,.92)}
.lct-discovery-hub{display:grid;gap:20px}.lct-discovery-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px}.lct-discovery-head h2{margin:6px 0 0;font-size:clamp(1.8rem,2.6vw,2.4rem)}.lct-discovery-head p:last-child{max-width:520px;color:#6f6861;margin:0}.lct-discovery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.lct-discovery-card{padding:22px}.lct-discovery-card-top{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}.lct-discovery-card-top h3{margin:0;font-size:1.25rem}.lct-mini-link,.lct-link-arrow{display:inline-flex;align-items:center;min-height:38px;padding:0 14px;border-radius:999px;background:#fff5ea;border:1px solid #f3dec9;color:#8e5219;font-size:13px;font-weight:700;box-shadow:0 10px 28px rgba(85,49,16,.08)}.lct-discovery-chip-wrap,.lct-city-chip-grid{display:flex;flex-wrap:wrap;gap:10px}.lct-country-chip,.lct-city-chip-grid a{display:inline-flex;align-items:center;gap:8px;min-height:40px;padding:0 14px;border-radius:999px;background:#fff;border:1px solid #f0dece;color:#4c4a47;font-weight:650}.lct-country-chip.is-active,.lct-country-chip:hover,.lct-city-chip-grid a:hover{background:#fff0df;color:#985518;border-color:#f3c08d}
.lct-country-landing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.lct-country-landing-card{display:flex;flex-direction:column;gap:12px;padding:24px;transition:transform .2s,box-shadow .2s}.lct-country-landing-card:hover{transform:translateY(-4px);box-shadow:var(--lct-shadow-lg)}.lct-country-landing-emoji{display:inline-grid;place-items:center;width:56px;height:56px;border-radius:18px;background:linear-gradient(135deg,#fff1df,#ffe5c4);font-size:24px}.lct-country-landing-card strong{color:#1d2336;font-size:1.18rem}.lct-country-landing-card p{margin:0;color:#6f6861}.lct-country-landing-link{color:#a25711;font-weight:700}.lct-country-landing-link::after{content:' →'}
.lct-country-tour-sections{display:grid;gap:28px}.lct-country-tour-block{padding:26px}.lct-country-tour-block-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:18px}.lct-country-tour-block-head h3{margin:0;font-size:clamp(1.5rem,2.4vw,2rem)}.lct-country-profile-grid{display:grid;grid-template-columns:1fr 1fr 1.4fr;gap:16px}.lct-country-profile-card{padding:22px;border-radius:26px;background:rgba(255,255,255,.9);border:1px solid rgba(238,218,202,.9);box-shadow:var(--lct-shadow)}.lct-country-profile-card span{display:block;color:#955719;font-weight:800;margin-bottom:8px}.lct-country-profile-card strong{font-size:1.05rem}.lct-country-city-row{margin-top:18px}
.lct-value-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.lct-value-card{padding:24px}.lct-value-card span{display:inline-grid;place-items:center;width:52px;height:52px;border-radius:16px;margin-bottom:16px;background:linear-gradient(135deg,#fff1df,#ffe8ca);color:#9a5315;font-weight:800}.lct-private-cta-premium{background:linear-gradient(145deg,#1d2336 0%,#314166 45%,#eb8b2f 100%);box-shadow:var(--lct-shadow-lg)}.lct-footer-cta{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:28px;margin-bottom:28px;transform:translateY(-46px);background:linear-gradient(145deg,#fff4e8 0%,#fff 55%,#fff7ef 100%);border-radius:26px;box-shadow:var(--lct-shadow)}.lct-footer-contact-list{display:grid;gap:10px;margin-top:18px}.lct-footer-contact-list span{display:inline-flex;align-items:center;gap:10px;min-height:42px;padding:0 14px;border-radius:14px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.9)}
@media(max-width:1180px){.lct-premium-strip,.lct-spotlight-grid,.lct-discovery-grid,.lct-country-landing-grid,.lct-value-grid,.lct-country-profile-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:980px){.lct-topbar-inner,.lct-discovery-head,.lct-country-tour-block-head,.lct-footer-cta{flex-direction:column;align-items:flex-start}.lct-topbar-links{display:none}}@media(max-width:767px){.lct-home-hero-grid,.lct-premium-strip,.lct-spotlight-grid,.lct-discovery-grid,.lct-country-landing-grid,.lct-value-grid,.lct-country-profile-grid{grid-template-columns:1fr}.lct-hero-copy-wrap h1{font-size:clamp(2.3rem,12vw,3.3rem)}.lct-footer-cta{transform:translateY(-26px)}}

/* --- MushroomTravel-inspired Commercial UX v1.6.0 --- */
:root {
  --lct-commerce-orange: #f58220;
  --lct-commerce-orange-dark: #d96a08;
  --lct-commerce-cream: #fff7ef;
  --lct-commerce-border: #f0ddca;
}
.lct-topbar-mushroom {
  background: #fff;
  color: #222;
  border-bottom: 1px solid var(--lct-commerce-border);
}
.lct-topbar-mushroom .lct-topbar-inner { min-height: 64px; }
.lct-topbar-help { display: grid; gap: 2px; }
.lct-topbar-help strong { color: #1d2336; font-size: 15px; }
.lct-topbar-help span { color: #6f6861; font-size: 13px; }
.lct-topbar-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
}
.lct-topbar-contact-grid a {
  display: grid;
  gap: 2px;
  min-height: 48px;
  padding: 8px 14px;
  border-radius: 16px;
  background: var(--lct-commerce-cream);
  border: 1px solid #f3dec8;
}
.lct-topbar-contact-grid a span { color: #8a4e12; font-size: 12px; font-weight: 800; }
.lct-topbar-contact-grid a strong { color: #1d2336; font-size: 14px; }
.lct-site-header-mushroom { border-bottom: 2px solid rgba(245,130,32,.22); }
.lct-menu-mushroom .lct-mega-wide { position: static; }
.lct-menu-mushroom .lct-mega-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: min(1180px, calc(100vw - 28px));
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 80px rgba(40,22,6,.16);
  border: 1px solid var(--lct-commerce-border);
  z-index: 130;
}
.lct-menu-mushroom .lct-mega-wide:hover > .lct-mega-panel,
.lct-menu-mushroom .lct-mega-wide:focus-within > .lct-mega-panel { display: grid; }
.lct-mega-feature {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1d2336, #314166 58%, var(--lct-commerce-orange));
  color: #fff;
}
.lct-mega-feature strong { display: block; font-size: 22px; line-height: 1.16; margin-bottom: 10px; }
.lct-mega-feature p { color: rgba(255,255,255,.82); margin: 0 0 16px; }
.lct-mushroom-hero {
  padding: 44px 0 52px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,193,128,.26), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(255,217,165,.35), transparent 28%),
    linear-gradient(180deg, #fff8f0 0%, #fffaf7 100%);
}
.lct-mushroom-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 24px;
  align-items: stretch;
}
.lct-mushroom-search-card,
.lct-mushroom-contact-card {
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--lct-commerce-border);
  box-shadow: 0 28px 70px rgba(85,49,16,.12);
}
.lct-mushroom-search-card { padding: 30px; }
.lct-mushroom-search-card h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #1d2336;
}
.lct-mushroom-search-card > p { color: #6f6861; max-width: 760px; }
.lct-mushroom-search {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(160px, .8fr) minmax(150px, .7fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  margin: 24px 0 18px;
  border: 1px solid #ead7c6;
  border-radius: 24px;
  background: var(--lct-commerce-cream);
}
.lct-mushroom-search label { display: grid; gap: 5px; color: #78532f; font-size: 12px; font-weight: 800; }
.lct-mushroom-search input { min-height: 46px; border: 1px solid #efd9c5; border-radius: 16px; background: #fff; padding: 0 14px; }
.lct-keyword-panel,
.lct-month-panel { display: grid; gap: 10px; margin-top: 14px; }
.lct-keyword-panel strong,
.lct-month-panel strong { color: #1d2336; }
.lct-keyword-list,
.lct-month-list { display: flex; flex-wrap: wrap; gap: 9px; }
.lct-keyword-list a,
.lct-month-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f1dfcf;
  color: #5d5046;
  font-size: 13px;
  font-weight: 700;
}
.lct-mushroom-contact-card { padding: 18px; display: grid; gap: 14px; }
.lct-contact-hero-box {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, #1d2336 0%, #314166 58%, var(--lct-commerce-orange) 100%);
}
.lct-contact-hero-box span { opacity: .78; }
.lct-contact-hero-box strong { font-size: 34px; line-height: 1.05; }
.lct-contact-hero-box small { color: rgba(255,255,255,.78); }
.lct-contact-mini-grid { display: grid; gap: 10px; }
.lct-contact-mini-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: var(--lct-commerce-cream);
  border: 1px solid #f1dfcf;
}
.lct-contact-mini-grid a span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
}
.lct-contact-mini-grid a strong,
.lct-contact-mini-grid a small { display: block; }
.lct-contact-mini-grid a small { color: #736b62; }
.lct-holiday-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lct-holiday-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, #1d2336, #3a496d 55%, var(--lct-commerce-orange));
  box-shadow: var(--lct-shadow);
}
.lct-holiday-grid span { color: rgba(255,255,255,.82); }
.lct-entry-content h3 { margin-top: 22px; }
.lct-entry-content ul,
.lct-check-list { padding-left: 1.2em; }
.lct-entry-content li,
.lct-check-list li { margin: 8px 0; }
.lct-country-profile-card-wide { grid-column: span 1; }
.lct-country-tour-block-head p:not(.lct-eyebrow) { max-width: 760px; color: #6f6861; margin: 6px 0 0; }
@media (max-width: 1180px) {
  .lct-mushroom-hero-grid,
  .lct-mushroom-search { grid-template-columns: 1fr; }
  .lct-menu-mushroom .lct-mega-panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lct-holiday-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .lct-topbar-contact-grid { display: none; }
  .lct-menu-mushroom .lct-mega-panel {
    position: static;
    transform: none;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    box-shadow: none;
  }
  .lct-menu li.lct-submenu-open > .lct-mega-panel,
  .lct-menu li.lct-submenu-open > .sub-menu { display: grid; }
}
@media (max-width: 767px) {
  .lct-mushroom-search-card { padding: 22px; }
  .lct-mushroom-search-card h1 { font-size: clamp(34px, 11vw, 48px); }
}


/* --- Patchatravel Homepage Revamp v1.7.0 --- */
.pt-home-hero {
  padding: 42px 0 62px;
  background:
    radial-gradient(circle at 10% 10%, rgba(245,130,32,.20), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(255,215,150,.34), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fffaf7 100%);
}
.pt-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr);
  gap: 24px;
  align-items: stretch;
}
.pt-home-search-card,
.pt-home-contact-panel,
.pt-destination-card,
.pt-quick-stats,
.pt-process-grid,
.pt-private-banner {
  border: 1px solid #f0ddca;
  background: rgba(255,255,255,.94);
  box-shadow: 0 26px 68px rgba(85,49,16,.12);
  border-radius: 30px;
}
.pt-home-search-card {
  padding: clamp(24px, 3.5vw, 40px);
}
.pt-home-label-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pt-pill,
.pt-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff2e6;
  border: 1px solid #f2d9bf;
  color: #9a5315;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
}
.pt-soft-text {
  color: #7b726a;
  font-size: 13px;
  font-weight: 700;
}
.pt-home-search-card h1 {
  margin: 0;
  font-size: clamp(40px, 6.6vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #1d2336;
}
.pt-home-subtitle {
  max-width: 780px;
  margin: 20px 0 0;
  color: #6c655e;
  font-size: 17px;
}
.pt-main-search {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(160px, .72fr) minmax(160px, .7fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  margin: 28px 0 20px;
  border-radius: 26px;
  background: #fff5ea;
  border: 1px solid #edd7c1;
}
.pt-main-search label {
  display: grid;
  gap: 6px;
  color: #74512e;
  font-size: 12px;
  font-weight: 850;
}
.pt-main-search input,
.pt-main-search select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ead6c1;
  border-radius: 16px;
  background: #fff;
  padding: 0 14px;
  color: #1f2937;
}
.pt-main-search button {
  min-height: 50px;
  padding-left: 26px;
  padding-right: 26px;
}
.pt-hot-search,
.pt-month-shortcuts {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.pt-hot-search strong,
.pt-month-shortcuts strong {
  color: #1d2336;
}
.pt-hot-search div,
.pt-month-shortcuts div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pt-hot-search a,
.pt-month-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0dfcf;
  color: #5e554d;
  font-size: 13px;
  font-weight: 750;
}
.pt-home-contact-panel {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.pt-contact-main {
  min-height: 220px;
  padding: 26px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(145deg, #1d2336 0%, #314166 58%, #f58220 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pt-contact-main span {
  opacity: .78;
}
.pt-contact-main strong {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}
.pt-contact-main p {
  color: rgba(255,255,255,.82);
}
.pt-contact-grid {
  display: grid;
  gap: 10px;
}
.pt-contact-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: #fff7ef;
  border: 1px solid #f0dfcf;
}
.pt-contact-grid a span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
}
.pt-contact-grid strong,
.pt-contact-grid small {
  display: block;
}
.pt-contact-grid small {
  color: #766d63;
}
.pt-overlap {
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.pt-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px;
}
.pt-quick-stats div {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fff5eb 100%);
}
.pt-quick-stats strong {
  display: block;
  color: #1d2336;
}
.pt-quick-stats span {
  color: #756b62;
  font-size: 14px;
}
.pt-home-section {
  padding: 66px 0;
}
.pt-section-soft {
  background: #fff;
  border-top: 1px solid #f0dfcf;
  border-bottom: 1px solid #f0dfcf;
}
.pt-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 24px;
}
.pt-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: #1d2336;
}
.pt-section-head p:not(.lct-eyebrow) {
  max-width: 720px;
  color: #756b62;
}
.pt-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pt-destination-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pt-destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 82px rgba(85,49,16,.18);
}
.pt-destination-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff4e7;
  font-size: 26px;
}
.pt-destination-card .pt-card-tag {
  position: absolute;
  top: 22px;
  right: 18px;
}
.pt-destination-card strong {
  font-size: 24px;
  color: #1d2336;
}
.pt-destination-card p {
  color: #746c63;
  margin: 8px 0 12px;
}
.pt-destination-card em {
  color: #a35813;
  font-style: normal;
  font-weight: 850;
}
.pt-tour-showcase .ltg-empty {
  background: #fff7ef;
  border-color: #f0dfcf;
}
.pt-idea-grid,
.pt-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pt-idea-grid a,
.pt-process-steps div {
  min-height: 180px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  border: 1px solid #f0dfcf;
  box-shadow: 0 16px 44px rgba(85,49,16,.08);
}
.pt-idea-grid a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pt-idea-grid span {
  font-size: 30px;
  margin-bottom: 12px;
}
.pt-idea-grid strong,
.pt-process-steps strong {
  color: #1d2336;
  font-size: 18px;
}
.pt-idea-grid p,
.pt-process-steps p {
  color: #746c63;
  margin-bottom: 0;
}
.pt-process-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
  padding: 26px;
}
.pt-process-intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}
.pt-process-intro p {
  color: #746c63;
}
.pt-process-steps div span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #f58220, #ffbd72);
  color: #fff;
  font-weight: 900;
}
.pt-private-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.22), transparent 30%),
    linear-gradient(145deg, #1d2336 0%, #314166 54%, #f58220 100%);
}
.pt-private-banner h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}
.pt-private-banner p:not(.lct-eyebrow) {
  color: rgba(255,255,255,.82);
}
.pt-private-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 1180px) {
  .pt-home-hero-grid,
  .pt-main-search,
  .pt-process-grid,
  .pt-private-banner {
    grid-template-columns: 1fr;
  }
  .pt-quick-stats,
  .pt-destination-grid,
  .pt-idea-grid,
  .pt-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .pt-home-search-card {
    padding: 22px;
  }
  .pt-home-search-card h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .pt-quick-stats,
  .pt-destination-grid,
  .pt-idea-grid,
  .pt-process-steps {
    grid-template-columns: 1fr;
  }
  .pt-section-head {
    display: grid;
  }
  .pt-private-actions,
  .pt-private-actions .lct-btn {
    width: 100%;
  }
}


/* --- Patchatravel Header/Menu cleanup + AI Homepage v1.8.0 --- */
.lct-topbar-member-grid {
  grid-template-columns: repeat(3, minmax(130px, 1fr));
}
.lct-header-actions .lct-btn-dark,
.lct-header-actions .lct-btn-soft[href*="private-group"],
.lct-header-actions a[href="#"]:not(.lct-text-link) {
  display: none;
}
.lct-site-header,
.lct-header-inner,
.lct-primary-nav,
.lct-menu,
.lct-menu > li {
  overflow: visible !important;
}
.lct-menu-mushroom .lct-mega-wide {
  position: static !important;
}
.lct-menu-mushroom .lct-mega-wide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.lct-menu-mushroom .lct-mega-panel {
  top: 100% !important;
  margin-top: 0 !important;
  pointer-events: auto;
  z-index: 9999 !important;
}
.lct-menu-mushroom .lct-mega-wide:hover > .lct-mega-panel,
.lct-menu-mushroom .lct-mega-wide:focus-within > .lct-mega-panel {
  display: grid !important;
}
.lct-menu-mushroom .lct-mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.pt-ai-hero {
  padding: 54px 0 62px;
  background:
    radial-gradient(circle at 10% 12%, rgba(245,130,32,.22), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(255,214,161,.34), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #fffaf7 100%);
}
.pt-ai-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: center;
}
.pt-ai-copy h1 {
  margin: 0;
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: .92;
  letter-spacing: -.065em;
  color: #1d2336;
}
.pt-ai-copy p:not(.lct-eyebrow) {
  max-width: 620px;
  color: #665f58;
  font-size: 18px;
}
.pt-ai-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.pt-ai-highlights span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0dfcf;
  color: #7a4b1b;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--lct-shadow-sm);
}
.pt-ai-search-card {
  position: relative;
  padding: 22px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,246,.92));
  border: 1px solid #efdcc9;
  box-shadow: 0 36px 90px rgba(85,49,16,.16);
}
.pt-ai-search-card::before {
  content: "AI";
  position: absolute;
  right: 24px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1d2336, #f58220);
  color: #fff;
  font-weight: 950;
  letter-spacing: .08em;
}
.pt-ai-search-form {
  display: grid;
  gap: 16px;
}
.pt-ai-prompt {
  display: grid;
  gap: 10px;
}
.pt-ai-prompt span,
.pt-ai-search-options span {
  color: #7a4b1b;
  font-size: 13px;
  font-weight: 850;
}
.pt-ai-prompt textarea {
  width: 100%;
  min-height: 170px;
  padding: 24px;
  border: 1px solid #ead4be;
  border-radius: 26px;
  resize: vertical;
  background:
    linear-gradient(180deg, #fff 0%, #fff8f0 100%);
  color: #1d2336;
  font-size: 18px;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.pt-ai-prompt textarea::placeholder {
  color: #a19080;
}
.pt-ai-search-options {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(160px, .65fr) auto;
  gap: 10px;
  align-items: end;
}
.pt-ai-search-options label {
  display: grid;
  gap: 7px;
}
.pt-ai-search-options select,
.pt-ai-search-options input {
  min-height: 50px;
  border: 1px solid #ead4be;
  border-radius: 16px;
  background: #fff;
  padding: 0 14px;
}
.pt-ai-search-options button {
  min-height: 52px;
  padding-left: 28px;
  padding-right: 28px;
}
.pt-ai-example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding-top: 4px;
}
.pt-ai-example-row strong {
  color: #1d2336;
  margin-right: 2px;
}
.pt-ai-example-row button {
  border: 1px solid #f0dfcf;
  background: #fff7ef;
  color: #6b4b2f;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.pt-quick-destination-section {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}
.pt-quick-destination-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pt-quick-destination-row a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0dfcf;
  color: #633f1c;
  font-weight: 850;
  box-shadow: var(--lct-shadow-sm);
}
.pt-month-shortcuts-center {
  margin-top: 20px;
}
.pt-fire-sale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.pt-fire-sale-block {
  padding: 22px;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid #f0dfcf;
  box-shadow: 0 24px 64px rgba(85,49,16,.1);
}
.pt-fire-sale-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.pt-fire-sale-head span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff1e3;
  border: 1px solid #efd4ba;
  color: #a25412;
  font-size: 12px;
  font-weight: 900;
}
.pt-fire-sale-head h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  color: #1d2336;
}
.pt-fire-sale-head a {
  color: #a25412;
  font-weight: 850;
}
.pt-fire-sale-list .ltg-tour-grid {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}
.pt-fire-sale-list .ltg-result-summary {
  display: none;
}
.pt-fire-sale-list .ltg-tour-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 160px;
}
.pt-fire-sale-list .ltg-tour-image {
  height: 100% !important;
  min-height: 160px !important;
  border-radius: 18px 0 0 18px !important;
}
.pt-fire-sale-list .ltg-tour-card-body {
  padding: 14px 16px !important;
}
.pt-fire-sale-list .ltg-commercial-meta-grid,
.pt-fire-sale-list .ltg-card-periods {
  display: none !important;
}
.pt-fire-sale-list .ltg-tour-card h3 {
  font-size: 15px !important;
  margin-top: 8px !important;
}
.lct-footer-destination-mini {
  margin: 0 0 28px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.lct-footer-destination-mini .lct-discovery-hub {
  color: #fff;
}
.lct-discovery-hub-compact .lct-discovery-head h2 {
  font-size: 20px !important;
}
.lct-discovery-hub-compact .lct-discovery-head .lct-eyebrow {
  margin-bottom: 4px;
}
.lct-discovery-hub-compact .lct-discovery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.lct-discovery-hub-compact .lct-discovery-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  box-shadow: none;
}
.lct-discovery-hub-compact .lct-discovery-card h3 {
  font-size: 14px;
}
.lct-discovery-hub-compact .lct-country-chip {
  min-height: 30px;
  padding: 0 9px;
  font-size: 12px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
}
@media (max-width: 1180px) {
  .pt-ai-hero-grid,
  .pt-ai-search-options,
  .pt-fire-sale-grid {
    grid-template-columns: 1fr;
  }
  .lct-discovery-hub-compact .lct-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .pt-ai-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }
  .pt-ai-search-card {
    padding: 16px;
    border-radius: 26px;
  }
  .pt-ai-prompt textarea {
    min-height: 140px;
    font-size: 16px;
    padding: 18px;
  }
  .pt-fire-sale-list .ltg-tour-card {
    grid-template-columns: 1fr;
  }
  .pt-fire-sale-list .ltg-tour-image {
    border-radius: 18px 18px 0 0 !important;
  }
  .lct-discovery-hub-compact .lct-discovery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Agoda Clean Homepage v1.9.0 --- */
:root {
  --lct-bg: #ffffff;
  --lct-surface: #ffffff;
  --lct-text: #111827;
  --lct-muted: #5f6470;
  --lct-line: #e9edf3;
  --lct-primary: #f58220;
  --lct-primary-dark: #df6d08;
  --lct-accent: #ff9f43;
  --lct-font: Arial, Helvetica, "Inter", "Segoe UI", sans-serif;
}
body { background: #fff !important; color: var(--lct-text); font-family: var(--lct-font); }
.lct-site-header-agoda {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid #edf0f5 !important;
  box-shadow: 0 4px 16px rgba(17,24,39,.04);
  backdrop-filter: blur(14px);
}
.lct-header-inner { min-height: 72px !important; gap: 22px; }
.lct-brand-badge { display: none !important; }
.lct-brand-mark { background: var(--lct-primary) !important; color: #fff; }
.lct-brand-name { color: #111827; font-weight: 850; }
.lct-menu-agoda { gap: 6px; }
.lct-menu-agoda > li > a {
  min-height: 42px;
  padding: 0 14px;
  color: #222b3a;
  font-weight: 750;
  font-size: 14px;
  border-radius: 999px;
}
.lct-menu-agoda > li:hover > a,
.lct-menu-agoda > li:focus-within > a {
  background: #fff4e9 !important;
  color: var(--lct-primary-dark) !important;
}
.lct-header-actions-agoda { gap: 10px; }
.lct-header-actions-agoda .lct-text-link { color: #374151; font-weight: 750; }
.lct-header-actions-agoda .lct-btn-soft {
  background: #fff4e9 !important;
  border-color: #ffd8b6 !important;
  color: var(--lct-primary-dark) !important;
  box-shadow: none !important;
}
.lct-agoda-mega {
  top: 100% !important;
  margin-top: 0 !important;
  border-radius: 20px !important;
  border: 1px solid #e9edf3 !important;
  box-shadow: 0 24px 70px rgba(17,24,39,.14) !important;
  z-index: 99999 !important;
}
.lct-mega-wide::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 20px; }
.lct-agoda-mega::before { content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px; }
.lct-agoda-mega-feature { background: linear-gradient(135deg, #111827, #374151) !important; }
.lct-mini-link { background: #fff !important; color: var(--lct-primary-dark) !important; }
.lct-desktop-quickbar { display: none !important; }

.pt-agoda-hero { padding: 70px 0 42px; background: #fff; }
.pt-agoda-hero-title { text-align: center; max-width: 860px; margin: 0 auto 28px; }
.pt-agoda-hero-title h1 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -.055em;
  color: #101828;
}
.pt-agoda-hero-title p:not(.lct-eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: #667085;
  font-size: 17px;
}
.pt-agoda-search-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #edf0f5;
  box-shadow: 0 24px 70px rgba(17,24,39,.10);
}
.pt-agoda-search-form {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(180px,.75fr) minmax(170px,.7fr) auto;
  gap: 10px;
  align-items: end;
}
.pt-agoda-search-form label { display: grid; gap: 6px; }
.pt-agoda-search-form span {
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}
.pt-agoda-search-form input,
.pt-agoda-search-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #fff;
  color: #101828;
  padding: 0 15px;
  outline: none;
}
.pt-agoda-search-main input { font-size: 16px; }
.pt-agoda-search-form input:focus,
.pt-agoda-search-form select:focus { border-color: var(--lct-primary); box-shadow: 0 0 0 4px rgba(245,130,32,.12); }
.pt-agoda-search-form .lct-btn { min-height: 54px; padding: 0 28px; border-radius: 16px; box-shadow: none !important; }
.pt-agoda-example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 12px;
  padding: 0 4px 2px;
}
.pt-agoda-example-row strong { color: #344054; font-size: 13px; }
.pt-agoda-example-row button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #eaecf0;
  background: #f9fafb;
  color: #475467;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.pt-agoda-example-row button:hover { background: #fff4e9; border-color: #ffd8b6; color: var(--lct-primary-dark); }
.pt-agoda-month-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  margin: 18px auto 0;
}
.pt-agoda-month-row span { font-size: 13px; color: #667085; font-weight: 800; }
.pt-agoda-month-row a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #eaecf0;
  border-radius: 999px;
  color: #344054;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
}
.pt-agoda-month-row a:hover { border-color: #ffd8b6; color: var(--lct-primary-dark); background: #fff7ef; }
.pt-agoda-section { padding: 58px 0; background: #fff; }
.pt-agoda-section-soft { background: #fafafa; border-top: 1px solid #f0f2f5; border-bottom: 1px solid #f0f2f5; }
.pt-agoda-section-head,
.pt-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.pt-agoda-section-head h2,
.pt-section-head h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; color: #101828; letter-spacing: -.035em; }
.pt-agoda-section-head p,
.pt-section-head p { color: #667085; }
.pt-fire-sale-grid-horizontal { grid-template-columns: 1fr !important; gap: 28px !important; }
.pt-fire-sale-block { background: #fff !important; border: 1px solid #edf0f5 !important; box-shadow: 0 16px 44px rgba(17,24,39,.06) !important; }
.pt-fire-sale-head span { background: #fff4e9 !important; border-color: #ffd8b6 !important; color: var(--lct-primary-dark) !important; }
.pt-fire-sale-head h3 { color: #101828 !important; }
.pt-fire-sale-list .ltg-tour-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 16px !important; }
.pt-fire-sale-list .ltg-tour-card { display: flex !important; flex-direction: column !important; min-height: 100% !important; border: 1px solid #edf0f5 !important; box-shadow: 0 10px 28px rgba(17,24,39,.06) !important; border-radius: 18px !important; }
.pt-fire-sale-list .ltg-tour-image { min-height: 180px !important; height: 180px !important; border-radius: 18px 18px 0 0 !important; background-size: contain !important; }
.pt-fire-sale-list .ltg-tour-card-body { padding: 14px !important; }
.pt-fire-sale-list .ltg-commercial-meta-grid,
.pt-fire-sale-list .ltg-card-periods { display: none !important; }
.pt-fire-sale-list .ltg-tour-card h3 { font-size: 15px !important; line-height: 1.35 !important; }
.pt-fire-sale-list .ltg-button { background: var(--lct-primary) !important; border-radius: 12px !important; min-height: 42px !important; }
.pt-agoda-ai-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #edf0f5;
  box-shadow: 0 18px 50px rgba(17,24,39,.07);
}
.pt-agoda-ai-cta h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); color: #101828; letter-spacing: -.035em; }
.pt-agoda-ai-cta p:not(.lct-eyebrow) { color: #667085; max-width: 760px; }
.pt-member-page,
.pt-fire-landing-hero,
.pt-ai-planner-hero { padding: 72px 0; background: #fff; text-align: center; }
.pt-member-card { max-width: 820px; padding: 42px; border-radius: 24px; background: #fff; border: 1px solid #edf0f5; box-shadow: 0 18px 50px rgba(17,24,39,.08); }
.pt-member-card h1,
.pt-fire-landing-hero h1,
.pt-ai-planner-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 64px); color: #101828; letter-spacing: -.045em; }
.pt-member-card p,
.pt-fire-landing-hero p,
.pt-ai-planner-hero p { color: #667085; max-width: 720px; margin-left: auto; margin-right: auto; }
.pt-member-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.pt-member-options a { display: grid; gap: 8px; text-align: left; padding: 22px; border-radius: 18px; border: 1px solid #edf0f5; background: #fff; box-shadow: 0 10px 28px rgba(17,24,39,.05); }
.pt-member-options a span { color: var(--lct-primary-dark); font-weight: 900; }
.pt-member-options a strong { color: #101828; font-size: 20px; }
.pt-member-options a small { color: #667085; }
.pt-member-login { margin-top: 20px; }
.pt-member-login a { color: var(--lct-primary-dark); font-weight: 800; }
@media (max-width: 1080px) {
  .pt-agoda-search-form,
  .pt-agoda-ai-cta { grid-template-columns: 1fr; }
  .pt-fire-sale-list .ltg-tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 760px) {
  .lct-header-actions-agoda .lct-text-link { display: none; }
  .pt-agoda-hero { padding-top: 44px; }
  .pt-agoda-search-card { border-radius: 18px; padding: 12px; }
  .pt-fire-sale-list .ltg-tour-grid,
  .pt-member-options { grid-template-columns: 1fr !important; }
  .pt-agoda-section-head,
  .pt-section-head { display: grid; }
}


/* --- Patchatravel Fix: Menu + AI Search + Fire Sale Cards v1.9.1 --- */

/* Make the tour-country mega menu usable and complete */
.lct-site-header,
.lct-header-inner,
.lct-primary-nav,
.lct-menu,
.lct-menu > li {
  overflow: visible !important;
}
.lct-menu-fixed-mega .lct-mega-wide {
  position: static !important;
}
.lct-menu-fixed-mega .lct-mega-wide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}
.lct-menu-fixed-mega .lct-country-mega {
  position: absolute !important;
  top: calc(100% - 1px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1180px, calc(100vw - 32px)) !important;
  display: none !important;
  grid-template-columns: 1.02fr 1.04fr 1fr 1fr 1fr !important;
  gap: 14px !important;
  padding: 18px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.98) !important;
  border: 1px solid #edf0f5 !important;
  box-shadow: 0 30px 80px rgba(17,24,39,.16) !important;
  z-index: 99999 !important;
  max-height: min(76vh, 680px);
  overflow-y: auto !important;
}
.lct-menu-fixed-mega .lct-country-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.lct-menu-fixed-mega .lct-mega-wide:hover > .lct-country-mega,
.lct-menu-fixed-mega .lct-mega-wide:focus-within > .lct-country-mega {
  display: grid !important;
}
.lct-menu-fixed-mega .lct-mega-col {
  padding: 14px !important;
  border-radius: 18px !important;
  background: #fff !important;
  border: 1px solid #f0f2f5 !important;
}
.lct-menu-fixed-mega .lct-mega-popular {
  background: linear-gradient(180deg, #fff7ef 0%, #fff 100%) !important;
  border-color: #ffd9b7 !important;
}
.lct-menu-fixed-mega .lct-mega-col h3 {
  margin: 0 0 10px !important;
  font-size: 15px !important;
  color: #101828 !important;
}
.lct-mega-subhead {
  margin-top: 16px !important;
}
.lct-menu-fixed-mega .lct-mega-col a {
  display: block !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  color: #344054 !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
}
.lct-menu-fixed-mega .lct-mega-col a:hover {
  background: #fff4e9 !important;
  color: #c46612 !important;
}

/* Bring back the premium AI finder look */
.pt-ai-hero-return {
  padding: 58px 0 72px !important;
  background:
    radial-gradient(circle at 15% 10%, rgba(245,130,32,.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255,216,165,.36), transparent 28%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 78%) !important;
}
.pt-ai-title {
  text-align: center !important;
  max-width: 1080px !important;
  margin: 0 auto 26px !important;
}
.pt-ai-title h1 {
  font-size: clamp(54px, 8.4vw, 108px) !important;
  line-height: .92 !important;
  letter-spacing: -.065em !important;
  margin: 0 !important;
  color: #101828 !important;
}
.pt-ai-title p:not(.lct-eyebrow) {
  max-width: 760px !important;
  margin: 18px auto 0 !important;
  color: #475467 !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
}
.pt-ai-search-card-return {
  position: relative !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: 24px !important;
  border-radius: 34px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,250,246,.94)) !important;
  border: 1px solid #efdcc9 !important;
  box-shadow: 0 36px 90px rgba(85,49,16,.16) !important;
}
.pt-ai-search-card-return::before {
  content: "AI";
  position: absolute;
  right: 24px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 19px;
  background: linear-gradient(135deg, #101828, #f58220);
  color: #fff;
  font-weight: 950;
  letter-spacing: .1em;
  z-index: 2;
}
.pt-ai-search-form-return {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 240px 150px !important;
  gap: 12px !important;
  align-items: end !important;
}
.pt-ai-prompt-return {
  grid-column: 1 / 2 !important;
}
.pt-ai-search-form-return label {
  display: grid !important;
  gap: 8px !important;
}
.pt-ai-search-form-return label span {
  color: #7a4b1b !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}
.pt-ai-search-form-return textarea {
  width: 100% !important;
  min-height: 124px !important;
  padding: 20px 22px !important;
  border: 1px solid #ead4be !important;
  border-radius: 24px !important;
  resize: vertical !important;
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%) !important;
  color: #101828 !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}
.pt-ai-search-form-return select {
  min-height: 52px !important;
  border: 1px solid #ead4be !important;
  border-radius: 16px !important;
  background: #fff !important;
  padding: 0 14px !important;
}
.pt-ai-search-form-return button {
  min-height: 54px !important;
  border-radius: 16px !important;
}
.pt-agoda-example-row,
.pt-agoda-month-row {
  display: none !important;
}

/* Fire Sale display: make it consistent with other tour cards */
.pt-fire-sale-grid-horizontal {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 32px !important;
}
.pt-fire-sale-block {
  background: #fff !important;
  border: 1px solid #edf0f5 !important;
  border-radius: 28px !important;
  box-shadow: 0 16px 44px rgba(17,24,39,.06) !important;
  padding: 24px !important;
}
.pt-fire-sale-head {
  align-items: center !important;
  margin-bottom: 20px !important;
}
.pt-fire-sale-head h3 {
  font-size: clamp(24px, 3vw, 34px) !important;
  margin: 8px 0 0 !important;
}
.pt-fire-sale-list .ltg-result-summary {
  display: none !important;
}
.pt-fire-sale-list .ltg-tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.pt-fire-sale-list .ltg-tour-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  border-radius: 22px !important;
  border: 1px solid #edf0f5 !important;
  box-shadow: 0 10px 28px rgba(17,24,39,.06) !important;
  overflow: hidden !important;
}
.pt-fire-sale-list .ltg-tour-image {
  width: 100% !important;
  height: 230px !important;
  min-height: 230px !important;
  border-radius: 22px 22px 0 0 !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff !important;
}
.pt-fire-sale-list .ltg-tour-card-body {
  padding: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  flex: 1 1 auto !important;
}
.pt-fire-sale-list .ltg-commercial-meta-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}
.pt-fire-sale-list .ltg-card-periods {
  display: grid !important;
}
.pt-fire-sale-list .ltg-tour-card h3 {
  font-size: 18px !important;
  line-height: 1.35 !important;
  margin: 8px 0 0 !important;
}
.pt-fire-sale-list .ltg-button {
  margin-top: auto !important;
  background: #f58220 !important;
  color: #fff !important;
  border-radius: 14px !important;
  min-height: 46px !important;
}
@media (max-width: 1120px) {
  .lct-menu-fixed-mega .lct-country-mega {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
  .pt-ai-search-form-return {
    grid-template-columns: 1fr !important;
  }
  .pt-fire-sale-list .ltg-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .lct-menu-fixed-mega .lct-country-mega {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    box-shadow: none !important;
    max-height: none !important;
  }
  .pt-ai-title h1 {
    font-size: clamp(44px, 14vw, 68px) !important;
  }
  .pt-ai-search-card-return {
    padding: 16px !important;
    border-radius: 26px !important;
  }
  .pt-ai-search-card-return::before {
    width: 46px;
    height: 46px;
    right: 16px;
    top: 16px;
  }
  .pt-ai-search-form-return textarea {
    min-height: 138px !important;
    font-size: 16px !important;
  }
  .pt-fire-sale-list .ltg-tour-grid {
    grid-template-columns: 1fr !important;
  }
}


/* --- Patchatravel Final Homepage v2.0.0 --- */
body {
  background: #fff !important;
}
.lct-site-header-final {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid #eef0f4 !important;
  box-shadow: 0 8px 26px rgba(15,23,42,.04) !important;
  backdrop-filter: blur(14px);
}
.lct-site-header-final .lct-header-inner {
  min-height: 74px;
}
.lct-menu-final {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.lct-menu-final > li {
  position: relative;
}
.lct-menu-final > li > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #1d2939;
  font-weight: 750;
}
.lct-menu-final > li:hover > a,
.lct-menu-final > li:focus-within > a {
  color: #f56600;
  background: #fff4e9;
}
.lct-header-actions-final {
  gap: 14px;
}
.lct-phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #1d2939;
  font-weight: 800;
}
.lct-phone-link::before {
  content: "☎";
  margin-right: 8px;
  color: #f56600;
}
.lct-menu-final .lct-mega-wide {
  position: static !important;
}
.lct-menu-final .lct-mega-wide::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 18px;
}
.lct-menu-final .lct-country-mega {
  position: absolute !important;
  top: calc(100% - 1px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1180px, calc(100vw - 32px)) !important;
  display: none !important;
  grid-template-columns: 1.02fr 1.04fr 1fr 1fr 1fr !important;
  gap: 14px !important;
  padding: 18px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,.985) !important;
  border: 1px solid #edf0f5 !important;
  box-shadow: 0 30px 80px rgba(17,24,39,.16) !important;
  z-index: 99999 !important;
  max-height: min(76vh, 680px);
  overflow-y: auto !important;
}
.lct-menu-final .lct-country-mega::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -18px;
  height: 18px;
}
.lct-menu-final .lct-mega-wide:hover > .lct-country-mega,
.lct-menu-final .lct-mega-wide:focus-within > .lct-country-mega {
  display: grid !important;
}
.lct-menu-final .lct-mega-col {
  padding: 14px !important;
  border-radius: 18px !important;
  background: #fff !important;
  border: 1px solid #f0f2f5 !important;
}
.lct-menu-final .lct-mega-popular {
  background: linear-gradient(180deg, #fff7ef 0%, #fff 100%) !important;
  border-color: #ffd9b7 !important;
}
.lct-menu-final .lct-mega-col h3 {
  margin: 0 0 10px !important;
  font-size: 15px !important;
  color: #101828 !important;
}
.lct-menu-final .lct-mega-col a {
  display: block !important;
  padding: 8px 10px !important;
  border-radius: 12px !important;
  color: #344054 !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
}
.lct-menu-final .lct-mega-col a:hover {
  background: #fff4e9 !important;
  color: #c46612 !important;
}
.lct-mega-subhead { margin-top: 16px !important; }

.pt-final-hero {
  position: relative;
  min-height: 620px;
  padding: 50px 0 54px;
  background: #fff;
  overflow: hidden;
}
.pt-final-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.55) 70%, #fff 100%),
    var(--pt-hero-image);
  background-size: cover;
  background-position: center;
  opacity: .58;
  filter: saturate(.95);
}
.pt-final-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
}
.pt-final-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}
.pt-final-search-card {
  position: relative;
  width: min(760px, 100%);
  margin-top: 24px;
  padding: clamp(24px, 3.5vw, 42px);
  border-radius: 34px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(235,238,242,.9);
  box-shadow: 0 34px 92px rgba(15,23,42,.16);
  text-align: center;
}
.pt-final-ai-badge {
  position: absolute;
  right: 24px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff8b20, #ff4d00);
  color: #fff;
  font-weight: 950;
  font-size: 24px;
  box-shadow: 0 14px 32px rgba(245,101,0,.22);
}
.pt-final-kicker {
  margin: 0 0 12px;
  color: #1d2939;
  font-weight: 800;
}
.pt-final-search-card h1 {
  margin: 0 0 24px;
  color: #101828;
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.pt-final-search-card h1 span {
  color: #f56600;
}
.pt-final-ai-form {
  display: grid;
  gap: 14px;
  text-align: left;
}
.pt-final-ai-form label {
  display: grid;
  gap: 8px;
}
.pt-final-ai-form label span {
  color: #101828;
  font-weight: 850;
  font-size: 14px;
}
.pt-final-ai-form select,
.pt-final-ai-form textarea,
.pt-final-ai-form input {
  width: 100%;
  border: 1px solid #dfe3ea;
  background: #fff;
  color: #1d2939;
  border-radius: 16px;
  min-height: 52px;
  padding: 0 16px;
}
.pt-final-ai-form textarea {
  min-height: 92px;
  padding: 16px;
  resize: vertical;
  line-height: 1.55;
}
.pt-final-date-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pt-final-search-button {
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, #ff8b20, #ff4d00);
  box-shadow: 0 14px 30px rgba(245,101,0,.24);
  cursor: pointer;
}
.pt-final-fire-sale {
  padding: 56px 0 42px;
  background: #fff;
}
.pt-final-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.pt-final-section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.14;
  color: #101828;
  letter-spacing: -.035em;
}
.pt-final-outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #ffb37a;
  color: #f56600;
  font-weight: 850;
}
.pt-final-supplier-row {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 20px;
}
.pt-final-supplier-card {
  min-height: 250px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #edf0f5;
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
}
.pt-final-supplier-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}
.pt-final-supplier-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 126px;
  padding: 0 18px;
  border: 1px solid #ffb37a;
  color: #f56600;
  border-radius: 999px;
  font-weight: 850;
}
.pt-final-supplier-tours .ltg-result-summary {
  display: none !important;
}
.pt-final-supplier-tours .ltg-tour-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.pt-final-supplier-tours .ltg-tour-card {
  min-height: 100% !important;
  border: 1px solid #edf0f5 !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(17,24,39,.055) !important;
  overflow: hidden !important;
  background: #fff !important;
}
.pt-final-supplier-tours .ltg-tour-image {
  width: 100% !important;
  height: 155px !important;
  min-height: 155px !important;
  border-radius: 18px 18px 0 0 !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: #fff !important;
}
.pt-final-supplier-tours .ltg-tour-card-body {
  padding: 12px !important;
  gap: 8px !important;
}
.pt-final-supplier-tours .ltg-tour-card h3 {
  font-size: 14px !important;
  line-height: 1.35 !important;
  min-height: 38px;
  margin: 4px 0 0 !important;
}
.pt-final-supplier-tours .ltg-card-flags,
.pt-final-supplier-tours .ltg-tour-destination,
.pt-final-supplier-tours .ltg-card-periods {
  display: none !important;
}
.pt-final-supplier-tours .ltg-commercial-meta-grid {
  display: flex !important;
  gap: 8px !important;
  padding: 0 !important;
  margin: 4px 0 !important;
}
.pt-final-supplier-tours .ltg-commercial-meta-grid > div {
  min-height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.pt-final-supplier-tours .ltg-commercial-meta-grid > div:nth-child(3) {
  display: none !important;
}
.pt-final-supplier-tours .ltg-commercial-meta-grid span {
  display: none !important;
}
.pt-final-supplier-tours .ltg-commercial-meta-grid strong {
  font-size: 12px !important;
  color: #667085 !important;
}
.pt-final-supplier-tours .ltg-tour-bottom {
  align-items: end !important;
}
.pt-final-supplier-tours .ltg-price {
  color: #f56600 !important;
  font-size: 18px !important;
}
.pt-final-supplier-tours .ltg-button {
  margin-top: auto !important;
  min-height: 38px !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #f56600 !important;
  border: 1px solid #ffb37a !important;
  font-weight: 900 !important;
}
.pt-final-supplier-tours .ltg-button:hover {
  background: #f56600 !important;
  color: #fff !important;
}
.pt-final-ai-planner-strip {
  padding: 34px 0;
  background: #fff;
}
.pt-final-ai-planner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid #ffe0c6;
  background: linear-gradient(135deg, #fff3e8, #fffaf6);
}
.pt-final-ai-planner-inner h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.04em;
}
.pt-final-ai-planner-inner h2::after {
  content: " AI";
  color: #f56600;
}
.pt-final-travel-illustration {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 52px;
}
.pt-final-trust-row {
  padding: 12px 0 34px;
  background: #fff;
}
.pt-final-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #edf0f5;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.pt-final-trust-grid > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 4px;
  border-right: 1px solid #edf0f5;
}
.pt-final-trust-grid > div:last-child {
  border-right: 0;
}
.pt-final-trust-grid strong {
  color: #101828;
  font-size: 18px;
}
.pt-final-trust-grid span {
  color: #667085;
  font-size: 13px;
}
.pt-final-footer {
  padding-top: 38px !important;
}
.lct-footer-cta,
.lct-footer-destination-mini,
.pt-airline-strip,
.lct-airline-strip,
.lct-airline-logo-row,
.pt-agoda-airline-row {
  display: none !important;
}
.ltg-card-airline img,
.pt-final-supplier-tours .ltg-card-airline img {
  display: none !important;
}
@media (max-width: 1260px) {
  .pt-final-supplier-tours .ltg-tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 960px) {
  .lct-header-actions-final .lct-phone-link {
    display: none;
  }
  .pt-final-supplier-row {
    grid-template-columns: 1fr;
  }
  .pt-final-supplier-card {
    min-height: 180px;
  }
  .pt-final-supplier-card img {
    max-height: 110px;
  }
  .pt-final-ai-planner-inner {
    grid-template-columns: 1fr;
  }
  .pt-final-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lct-menu-final .lct-country-mega {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}
@media (max-width: 760px) {
  .pt-final-hero {
    min-height: 680px;
    padding-top: 34px;
  }
  .pt-final-search-card {
    padding: 22px;
    border-radius: 26px;
  }
  .pt-final-ai-badge {
    width: 48px;
    height: 48px;
    right: 16px;
    top: 16px;
    font-size: 18px;
  }
  .pt-final-search-card h1 {
    font-size: clamp(30px, 11vw, 44px);
    padding-right: 54px;
  }
  .pt-final-date-row,
  .pt-final-trust-grid {
    grid-template-columns: 1fr;
  }
  .pt-final-supplier-tours .ltg-tour-grid {
    grid-template-columns: 1fr !important;
  }
  .pt-final-supplier-tours .ltg-tour-image {
    height: 220px !important;
  }
  .lct-menu-final .lct-country-mega {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
    box-shadow: none !important;
    max-height: none !important;
  }
}


/* --- Patch v2.0.2: header member register button --- */
.lct-header-actions-final .lct-btn-primary[href*="register"],
.lct-header-actions-final .lct-btn-primary {
  white-space: nowrap;
}
.pt-member-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 18px;
}
.pt-member-options a {
  display: grid;
  gap: 8px;
  min-height: 170px;
  align-content: center;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid #edf0f5;
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pt-member-options a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(17,24,39,.1);
  border-color: #fdba74;
}
.pt-member-options a span {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff2e6;
  color: #f56600;
  font-weight: 900;
}
.pt-member-options a strong {
  color: #101828;
  font-size: 22px;
}
.pt-member-options a small {
  color: #667085;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .pt-member-options { grid-template-columns: 1fr; }
}

/* ===== Patchatravel 1:1 Mockup Homepage v2.1.0 ===== */
body.home,
body.page-template-front-page { background:#fff !important; }
.pt21-container { width:min(1180px, calc(100% - 56px)); margin:0 auto; }
.pt21-header { position:sticky; top:0; z-index:999; background:#fff; border-bottom:1px solid #eef0f4; box-shadow:0 4px 22px rgba(17,24,39,.035); }
.pt21-header-inner { min-height:72px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.pt21-logo .custom-logo { max-height:46px; width:auto; }
.pt21-logo .lct-brand-text { display:flex; align-items:center; gap:10px; }
.pt21-nav { flex:1 1 auto; display:flex; justify-content:center; }
.pt21-menu { list-style:none; display:flex; align-items:center; gap:18px; padding:0; margin:0; }
.pt21-menu > li { position:relative; }
.pt21-menu > li > a { display:flex; align-items:center; min-height:44px; padding:0 2px; color:#111827; font-size:15px; font-weight:800; border-bottom:2px solid transparent; }
.pt21-menu > li:hover > a,
.pt21-menu > li:focus-within > a { color:#f56600; border-bottom-color:#f56600; }
.pt21-header-actions { display:flex; align-items:center; gap:18px; white-space:nowrap; }
.pt21-phone { display:inline-flex; align-items:center; color:#111827; font-weight:900; font-size:15px; }
.pt21-phone:before { content:"☎"; color:#f56600; margin-right:8px; }
.pt21-signup { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 18px; border-radius:10px; color:#fff !important; background:#f56600; font-weight:900; box-shadow:0 10px 24px rgba(245,101,0,.20); }
.pt21-mega-parent { position:static !important; }
.pt21-mega-parent:after { content:""; position:absolute; left:0; right:0; top:100%; height:16px; }
.pt21-mega-menu { position:absolute !important; top:calc(100% + 0px) !important; left:50% !important; transform:translateX(-50%); width:min(1160px, calc(100vw - 48px)); display:none !important; grid-template-columns:repeat(5,1fr); gap:14px; padding:18px; background:#fff; border:1px solid #edf0f5; border-radius:22px; box-shadow:0 28px 80px rgba(17,24,39,.16); z-index:10000; max-height:72vh; overflow:auto; }
.pt21-mega-parent:hover > .pt21-mega-menu,
.pt21-mega-parent:focus-within > .pt21-mega-menu { display:grid !important; }
.pt21-mega-menu:before { content:""; position:absolute; left:0; right:0; top:-16px; height:16px; }
.pt21-mega-col { border:1px solid #f1f3f6; background:#fff; border-radius:16px; padding:14px; }
.pt21-mega-feature { background:linear-gradient(180deg,#fff7ef,#fff); border-color:#ffd6b4; }
.pt21-mega-col h3 { margin:0 0 10px; color:#101828; font-size:15px; }
.pt21-mega-col a { display:block; padding:8px 9px; border-radius:10px; color:#344054; font-size:13.5px; font-weight:750; }
.pt21-mega-col a:hover { background:#fff4e9; color:#f56600; }

.pt21-main { overflow:hidden; }
.pt21-hero { position:relative; min-height:590px; padding:34px 0 30px; background:#fff; overflow:hidden; }
.pt21-hero-bg { position:absolute; inset:0; background-image:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.43) 62%,rgba(255,255,255,.92) 87%,#fff), var(--pt21-hero-image); background-size:cover; background-position:center; opacity:.78; }
.pt21-hero-inner { position:relative; z-index:2; display:flex; justify-content:center; }
.pt21-search-card { position:relative; width:min(650px,100%); margin-top:18px; padding:32px 34px 30px; border-radius:32px; background:rgba(255,255,255,.96); border:1px solid rgba(234,236,240,.92); box-shadow:0 28px 74px rgba(16,24,40,.16); text-align:center; }
.pt21-ai-badge { position:absolute; right:22px; top:18px; width:58px; height:58px; border-radius:19px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,#ff9b24,#ff6208); font-size:24px; font-weight:950; box-shadow:0 14px 30px rgba(245,102,0,.25); }
.pt21-kicker { margin:0 0 12px; font-size:14px; font-weight:800; color:#344054; }
.pt21-search-card h1 { margin:0 0 22px; color:#101828; font-size:clamp(34px,4.4vw,52px); line-height:1.1; letter-spacing:-.045em; }
.pt21-search-card h1 span { color:#f56600; }
.pt21-search-form { text-align:left; display:grid; gap:14px; }
.pt21-search-form label { display:grid; gap:8px; }
.pt21-search-form label span { color:#101828; font-size:14px; font-weight:900; }
.pt21-search-form select,
.pt21-search-form input { width:100%; min-height:52px; padding:0 16px; border:1px solid #dfe3ea; border-radius:15px; background:#fff; color:#344054; }
.pt21-date-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.pt21-search-btn { min-height:56px; border:0; border-radius:15px; background:linear-gradient(135deg,#ff9120,#ff5a05); color:#fff; font-size:19px; font-weight:950; cursor:pointer; box-shadow:0 14px 28px rgba(245,102,0,.23); }

.pt21-suggestions { position:relative; z-index:3; padding:2px 0 24px; background:#fff; }
.pt21-suggestions p { margin:0 0 9px; color:#667085; font-size:14px; font-weight:700; }
.pt21-suggestions div { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.pt21-suggestions a { min-height:42px; display:inline-flex; align-items:center; padding:0 18px; border-radius:999px; background:#fff7f0; border:1px solid #f1dfd0; color:#667085; font-size:14px; font-weight:750; }

.pt21-fire-sale { padding:22px 0 18px; background:#fff; }
.pt21-section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:20px; }
.pt21-section-head h2 { margin:0 0 4px; font-size:clamp(28px,3.2vw,40px); line-height:1.1; color:#101828; letter-spacing:-.035em; }
.pt21-section-head p { margin:0; color:#667085; font-size:15px; }
.pt21-section-head > a { min-height:44px; display:inline-flex; align-items:center; padding:0 18px; border-radius:14px; border:1px solid #ffb37a; color:#f56600; font-weight:900; background:#fff; }
.pt21-supplier-row { display:grid; grid-template-columns:170px minmax(0,1fr); gap:18px; margin-bottom:18px; align-items:stretch; }
.pt21-supplier-card { min-height:255px; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:18px; padding:16px; border:1px solid #eaecf0; border-radius:20px; background:#fff; box-shadow:0 8px 24px rgba(16,24,40,.055); }
.pt21-supplier-card img { width:100%; max-height:118px; object-fit:contain; }
.pt21-supplier-card span { display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 18px; border-radius:999px; color:#f56600; border:1px solid #f7c8a6; font-weight:900; }
.pt21-tour-grid-wrap { min-width:0; }
.pt21-tour-grid { display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:14px; }
.pt21-tour-card { border:1px solid #eaecf0; border-radius:18px; background:#fff; overflow:hidden; box-shadow:0 8px 22px rgba(16,24,40,.05); min-width:0; }
.pt21-tour-thumb { display:block; position:relative; height:142px; background:#f5f5f5 center/cover no-repeat; }
.pt21-tour-thumb span { position:absolute; top:8px; left:8px; min-height:24px; display:inline-flex; align-items:center; padding:0 8px; border-radius:8px; background:#ff7a1a; color:#fff; font-size:12px; font-weight:900; }
.pt21-tour-body { padding:12px; display:grid; gap:8px; }
.pt21-tour-body h3 { min-height:38px; margin:0; font-size:14px; line-height:1.34; }
.pt21-tour-body h3 a { color:#101828; }
.pt21-tour-meta { display:flex; flex-wrap:wrap; gap:9px; color:#667085; font-size:12px; font-weight:750; }
.pt21-tour-price small { display:block; color:#667085; font-size:12px; }
.pt21-tour-price strong { display:block; color:#f56600; font-size:27px; font-weight:950; line-height:1; }
.pt21-tour-btn { min-height:38px; display:flex; align-items:center; justify-content:center; border:1px solid #ffb37a; border-radius:11px; color:#f56600; background:#fff; font-weight:900; }
.pt21-empty { min-height:180px; display:flex; align-items:center; justify-content:center; border:1px dashed #e5e7eb; border-radius:18px; color:#98a2b3; background:#fff; padding:16px; }

.pt21-ai-banner { padding:22px 0 28px; background:#fff; }
.pt21-ai-banner-inner { min-height:190px; display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:24px; align-items:center; padding:30px 34px; border-radius:24px; border:1px solid #f6dcc6; background:linear-gradient(135deg,#fff4e9,#fffaf6); overflow:hidden; }
.pt21-ai-banner p:first-child { margin:0 0 7px; color:#7c2d12; font-size:13px; font-weight:900; }
.pt21-ai-banner h2 { margin:0 0 11px; font-size:clamp(28px,3.7vw,44px); line-height:1.1; color:#101828; letter-spacing:-.035em; }
.pt21-ai-banner h2 span { color:#f56600; }
.pt21-ai-banner p:not(:first-child) { color:#667085; max-width:650px; }
.pt21-ai-banner a { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:0 18px; border-radius:11px; background:#f56600; color:#fff; font-weight:900; }
.pt21-ai-art { position:relative; min-height:150px; display:grid; place-items:center; font-size:82px; }
.pt21-ai-art em { position:absolute; bottom:10px; font-style:normal; font-size:30px; }

.pt21-airlines { padding:2px 0 18px; background:#fff; }
.pt21-airlines p { text-align:center; color:#101828; font-weight:800; margin:0 0 12px; }
.pt21-airline-strip { display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:74px; padding:0 24px; border:1px solid #eaecf0; border-radius:16px; background:#fff; box-shadow:0 8px 22px rgba(16,24,40,.035); overflow:hidden; }
.pt21-airline-strip span { color:#344054; font-size:16px; font-weight:900; white-space:nowrap; }

.pt21-stats { padding:0 0 22px; background:#fff; }
.pt21-stat-grid { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid #eaecf0; border-radius:16px; overflow:hidden; }
.pt21-stat-grid div { min-height:92px; display:grid; align-content:center; justify-items:center; text-align:center; gap:5px; border-right:1px solid #eaecf0; padding:10px; }
.pt21-stat-grid div:last-child { border-right:none; }
.pt21-stat-grid strong { color:#101828; font-size:18px; }
.pt21-stat-grid span { color:#667085; font-size:13px; }

.pt21-footer { padding:28px 0 0; background:#fff; border-top:1px solid #eef0f4; }
.pt21-footer-grid { display:grid; grid-template-columns:1.2fr 1fr 1fr 1fr 1fr; gap:28px; padding:0 0 26px; }
.pt21-footer-brand p { color:#667085; line-height:1.7; margin:14px 0; }
.pt21-socials { display:flex; gap:10px; flex-wrap:wrap; }
.pt21-socials a { width:34px; height:34px; border-radius:50%; display:grid; place-items:center; color:#101828; background:#f8fafc; border:1px solid #e5e7eb; font-size:14px; font-weight:900; }
.pt21-footer h3 { margin:0 0 12px; color:#101828; font-size:18px; }
.pt21-footer a, .pt21-footer span { display:block; margin:0 0 10px; color:#475467; font-size:14px; }
.pt21-line-btn { display:inline-flex !important; align-items:center; justify-content:center; min-height:42px; padding:0 18px; border-radius:11px; background:#f56600; color:#fff !important; font-weight:900; margin-top:10px; }
.pt21-footer-bottom { border-top:1px solid #eef0f4; padding:14px 0 18px; text-align:center; color:#667085; font-size:14px; }
.lct-footer-cta, .lct-footer-destination-mini { display:none !important; }

@media (max-width:1280px){ .pt21-tour-grid{grid-template-columns:repeat(4,minmax(0,1fr));} }
@media (max-width:1024px){ .pt21-tour-grid{grid-template-columns:repeat(3,minmax(0,1fr));} .pt21-footer-grid{grid-template-columns:1fr 1fr 1fr;} .pt21-ai-banner-inner{grid-template-columns:1fr;} .pt21-mega-menu{grid-template-columns:repeat(2,1fr);} }
@media (max-width:820px){ .pt21-container{width:min(100% - 30px,1180px);} .pt21-header-inner{gap:12px;} .pt21-phone{display:none;} .pt21-nav{justify-content:flex-end;} .pt21-supplier-row{grid-template-columns:1fr;} .pt21-supplier-card{min-height:155px;} .pt21-stat-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .pt21-hero{min-height:650px;} .pt21-search-card{padding:24px 20px;border-radius:24px;} .pt21-search-card h1{font-size:clamp(30px,10vw,42px);padding-right:44px;} .pt21-ai-badge{width:48px;height:48px;font-size:18px;right:16px;top:16px;} .pt21-date-row, .pt21-stat-grid{grid-template-columns:1fr;} .pt21-tour-grid{grid-template-columns:1fr;} .pt21-tour-thumb{height:220px;} .pt21-footer-grid{grid-template-columns:1fr;} .pt21-mega-menu{position:static!important;transform:none!important;width:100%!important;display:none!important;box-shadow:none!important;} .pt21-mega-parent.lct-submenu-open > .pt21-mega-menu{display:grid!important;} }

/* ===== Patchatravel Clean Agoda AI Homepage v2.2.0 ===== */
:root {
  --pt22-orange: #f56600;
  --pt22-orange-2: #ff8a20;
  --pt22-text: #101828;
  --pt22-muted: #667085;
  --pt22-line: #eaecf0;
  --pt22-soft: #fff7ef;
}
body, button, input, select, textarea {
  font-family: 'Sarabun', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
body.home { background: #fff !important; }
.pt21-hero, .pt21-airlines { display: none !important; }

.pt22-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  padding: 58px 0 34px;
  border-bottom: 1px solid #f4f1ee;
}
.pt22-hero-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
}
.pt22-search-card {
  width: min(900px, 100%);
  position: relative;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(16, 24, 40, .12);
  padding: clamp(24px, 4vw, 42px);
}
.pt22-ai-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pt22-orange-2), var(--pt22-orange));
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  box-shadow: 0 14px 30px rgba(245, 102, 0, .24);
}
.pt22-search-card h1 {
  margin: 0 0 24px;
  padding-right: 70px;
  text-align: center;
  color: var(--pt22-text);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 900;
}
.pt22-search-form { display: grid; gap: 15px; }
.pt22-search-form label { display: grid; gap: 7px; }
.pt22-search-form label span {
  color: var(--pt22-text);
  font-size: 14px;
  font-weight: 800;
}
.pt22-ai-query textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  border: 1px solid #dfe3ea;
  border-radius: 18px;
  background: #fff;
  padding: 17px 18px;
  color: var(--pt22-text);
  font-size: 17px;
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.pt22-filter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(160px, .56fr) minmax(160px, .56fr);
  gap: 14px;
  align-items: end;
}
.pt22-search-form select,
.pt22-search-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #dfe3ea;
  border-radius: 16px;
  background: #fff;
  padding: 0 16px;
  color: var(--pt22-text);
  font-size: 15px;
}
.pt22-search-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--pt22-orange-2), var(--pt22-orange));
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(245, 102, 0, .22);
}
.pt22-suggestion-wrap { width: min(900px, 100%); }
.pt22-suggestion-wrap p {
  margin: 0 0 10px;
  color: var(--pt22-muted);
  font-size: 14px;
  font-weight: 700;
}
.pt22-suggestion-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.pt22-suggestion-chips a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #6b7280;
  background: #fff;
  border: 1px solid #edf0f5;
  font-size: 14px;
  font-weight: 700;
}
.pt22-suggestion-chips a:hover {
  border-color: #ffd0ad;
  background: var(--pt22-soft);
  color: var(--pt22-orange);
}

.pt22-fire-sale { padding: 42px 0 26px; background: #fff; }
.pt22-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 20px;
}
.pt22-section-head h2 {
  margin: 0 0 4px;
  color: var(--pt22-text);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 900;
}
.pt22-section-head p { margin: 0; color: var(--pt22-muted); font-size: 15px; }
.pt22-section-head > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #ffc08f;
  color: var(--pt22-orange);
  background: #fff;
  font-weight: 850;
}
.pt22-supplier-row {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.pt22-supplier-card {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--pt22-line);
  box-shadow: 0 8px 24px rgba(16,24,40,.055);
}
.pt22-supplier-card img {
  width: 100%;
  max-height: 122px;
  object-fit: contain;
}
.pt22-supplier-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 120px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #ffc08f;
  color: var(--pt22-orange);
  font-weight: 850;
}
.pt22-tour-grid-wrap { min-width: 0; }
.pt22-tour-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.pt22-tour-card {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pt22-line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(16,24,40,.05);
  overflow: hidden;
}
.pt22-tour-thumb {
  position: relative;
  display: block;
  height: 142px;
  flex: 0 0 142px;
  background-color: #f7f7f7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pt22-tour-thumb span {
  position: absolute;
  top: 8px;
  left: 8px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 8px;
  color: #fff;
  background: var(--pt22-orange);
  font-size: 12px;
  font-weight: 900;
}
.pt22-tour-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px;
}
.pt22-tour-body h3 {
  min-height: 38px;
  max-height: 38px;
  overflow: hidden;
  margin: 0;
  color: var(--pt22-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
}
.pt22-tour-body h3 a { color: inherit; }
.pt22-tour-meta {
  min-height: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--pt22-muted);
  font-size: 12px;
  font-weight: 700;
}
.pt22-tour-price { margin-top: auto; }
.pt22-tour-price small {
  display: block;
  color: var(--pt22-muted);
  font-size: 12px;
}
.pt22-tour-price strong {
  display: block;
  color: var(--pt22-orange);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}
.pt22-tour-btn {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffc08f;
  border-radius: 11px;
  color: var(--pt22-orange);
  background: #fff;
  font-weight: 850;
}
.pt22-tour-btn:hover { color: #fff; background: var(--pt22-orange); }
.pt22-empty {
  min-height: 264px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 6px;
  border: 1px dashed #e5e7eb;
  border-radius: 18px;
  background: #fff;
  padding: 20px;
}
.pt22-empty strong { color: var(--pt22-text); font-size: 17px; }
.pt22-empty span { color: var(--pt22-muted); font-size: 14px; max-width: 480px; }

.pt22-ai-banner { padding: 26px 0 28px; background: #fff; }
.pt22-ai-banner-inner {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 30px 34px;
  border-radius: 24px;
  border: 1px solid #f7dcc4;
  background: linear-gradient(135deg, #fff4e9, #fffaf6);
}
.pt22-ai-banner-copy p:first-child {
  margin: 0 0 7px;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 900;
}
.pt22-ai-banner-copy h2 {
  margin: 0 0 11px;
  color: var(--pt22-text);
  font-size: clamp(28px, 3.7vw, 44px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 900;
}
.pt22-ai-banner-copy h2 span { color: var(--pt22-orange); }
.pt22-ai-banner-copy p:not(:first-child) {
  max-width: 650px;
  color: var(--pt22-muted);
}
.pt22-ai-banner-copy a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 11px;
  color: #fff;
  background: var(--pt22-orange);
  font-weight: 900;
}
.pt22-ai-banner-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(16,24,40,.12);
}
.pt21-airlines, .pt22-airlines, .pt21-airline-strip {
  display: none !important;
}
.pt21-stats { display: none !important; }
.pt22-stats { padding: 2px 0 30px; background: #fff; }
.pt22-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--pt22-line);
  border-radius: 16px;
  background: #fff;
}
.pt22-stat-grid > div {
  min-height: 92px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 5px;
  padding: 10px;
  border-right: 1px solid var(--pt22-line);
}
.pt22-stat-grid > div:last-child { border-right: 0; }
.pt22-stat-grid strong { color: var(--pt22-text); font-size: 18px; font-weight: 900; }
.pt22-stat-grid span { color: var(--pt22-muted); font-size: 13px; }

.pt21-footer {
  display: block !important;
  padding: 28px 0 0;
  background: #fff;
  border-top: 1px solid #eef0f4;
  font-family: 'Sarabun', ui-sans-serif, system-ui, sans-serif !important;
}
.pt21-footer-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 0 0 26px;
}
.pt21-footer-brand p {
  color: var(--pt22-muted);
  line-height: 1.7;
  margin: 14px 0;
}
.pt21-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.pt21-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pt22-text);
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 900;
}
.pt21-footer h3 {
  margin: 0 0 12px;
  color: var(--pt22-text);
  font-size: 18px;
  font-weight: 900;
}
.pt21-footer a, .pt21-footer span {
  display: block;
  margin: 0 0 10px;
  color: #475467;
  font-size: 14px;
}
.pt21-line-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 11px;
  background: var(--pt22-orange);
  color: #fff !important;
  font-weight: 900;
  margin-top: 10px;
}
.pt21-footer-bottom {
  display: block !important;
  border-top: 1px solid #eef0f4;
  padding: 14px 0 18px;
  text-align: center;
  color: var(--pt22-muted);
  font-size: 14px;
}
.lct-footer-cta, .lct-footer-destination-mini { display: none !important; }

@media (max-width: 1280px) {
  .pt22-tour-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .pt22-filter-grid, .pt22-ai-banner-inner { grid-template-columns: 1fr; }
  .pt22-tour-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pt21-footer-grid { grid-template-columns: 1fr 1fr 1fr !important; }
}
@media (max-width: 820px) {
  .pt22-supplier-row { grid-template-columns: 1fr; }
  .pt22-supplier-card { min-height: 160px; }
  .pt22-supplier-card img { max-height: 90px; }
  .pt22-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .pt22-search-card { border-radius: 24px; }
}
@media (max-width: 640px) {
  .pt22-hero { padding: 34px 0 24px; }
  .pt22-search-card { padding: 22px 18px; }
  .pt22-ai-badge {
    width: 46px;
    height: 46px;
    right: 16px;
    top: 16px;
    font-size: 18px;
  }
  .pt22-search-card h1 {
    padding-right: 50px;
    text-align: left;
    font-size: clamp(28px, 10vw, 42px);
  }
  .pt22-tour-grid, .pt22-stat-grid, .pt21-footer-grid {
    grid-template-columns: 1fr !important;
  }
  .pt22-tour-thumb {
    height: 220px;
    flex-basis: 220px;
  }
  .pt22-ai-banner-image img {
    height: 220px;
  }
}


/* ===== Homepage Conversion Polish v2.3.0 ===== */

/* Hero tighter + sharper */
.pt22-hero {
  padding: 46px 0 28px !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(245,102,0,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fffaf7 100%) !important;
}
.pt22-search-card {
  width: min(960px, 100%) !important;
  padding: clamp(26px, 4vw, 46px) !important;
  border-radius: 30px !important;
  box-shadow: 0 30px 86px rgba(16, 24, 40, .14) !important;
}
.pt22-search-card h1 {
  font-size: clamp(32px, 4.4vw, 52px) !important;
  margin-bottom: 26px !important;
}
.pt22-ai-query textarea {
  min-height: 116px !important;
  font-size: 18px !important;
}
.pt22-search-btn {
  min-height: 62px !important;
  font-size: 21px !important;
}
.pt22-search-btn:disabled {
  opacity: .82;
  cursor: wait;
}
.pt23-search-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding-top: 2px;
}
.pt23-search-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff7ef;
  border: 1px solid #ffd8b8;
  color: #8a4c16;
  font-size: 13px;
  font-weight: 800;
}
.pt23-search-trust span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--pt22-orange);
  font-weight: 900;
}

/* Fire sale: bigger cards, 4 tours only */
.pt22-fire-sale {
  padding-top: 46px !important;
}
.pt22-supplier-row {
  grid-template-columns: 194px minmax(0, 1fr) !important;
  gap: 22px !important;
  margin-bottom: 24px !important;
}
.pt22-supplier-card {
  min-height: 326px !important;
  border-radius: 24px !important;
}
.pt22-supplier-card img {
  max-height: 138px !important;
}
.pt22-tour-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.pt22-tour-card {
  min-height: 326px !important;
  border-radius: 22px !important;
}
.pt22-tour-thumb {
  height: 170px !important;
  flex-basis: 170px !important;
}
.pt22-tour-body {
  padding: 15px !important;
  gap: 9px !important;
}
.pt22-tour-body h3 {
  min-height: 43px !important;
  max-height: 43px !important;
  font-size: 15px !important;
}
.pt22-tour-meta {
  min-height: 20px !important;
}
.pt22-tour-price strong {
  font-size: 30px !important;
}
.pt22-tour-btn {
  min-height: 42px !important;
  border-radius: 13px !important;
}
.pt22-empty {
  min-height: 326px !important;
}

/* AI result summary on /tours/ */
.pt23-tours-results {
  padding-top: 34px !important;
}
.pt23-ai-summary {
  margin-bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ef, #ffffff);
  border: 1px solid #ffd8b8;
  box-shadow: 0 12px 36px rgba(16,24,40,.06);
}
.pt23-ai-summary-head {
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
}
.pt23-ai-summary-head span {
  color: #8a4c16;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.pt23-ai-summary-head strong {
  color: var(--pt22-text);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.25;
}
.pt23-ai-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pt23-ai-summary-grid div {
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #f2e3d5;
}
.pt23-ai-summary-grid span {
  display: block;
  color: var(--pt22-muted);
  font-size: 12px;
  font-weight: 800;
}
.pt23-ai-summary-grid strong {
  color: var(--pt22-text);
  font-size: 15px;
}

/* Footer compact and cleaner */
.pt21-footer {
  padding-top: 22px !important;
}
.pt21-footer-grid {
  gap: 22px !important;
  padding-bottom: 18px !important;
}
.pt21-footer h3 {
  font-size: 16px !important;
  margin-bottom: 10px !important;
}
.pt21-footer a,
.pt21-footer span {
  margin-bottom: 8px !important;
  font-size: 13.5px !important;
}
.pt21-footer-brand p {
  margin: 10px 0 12px !important;
  font-size: 13.5px !important;
}
.pt21-footer-bottom {
  padding: 12px 0 14px !important;
}

/* Better mobile homepage */
@media (max-width: 1024px) {
  .pt22-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .pt23-ai-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .pt22-hero {
    padding: 30px 0 22px !important;
  }
  .pt22-search-card {
    width: 100% !important;
    padding: 22px 18px !important;
  }
  .pt22-search-card h1 {
    text-align: left !important;
    padding-right: 58px !important;
  }
  .pt22-filter-grid {
    grid-template-columns: 1fr !important;
  }
  .pt22-supplier-row {
    grid-template-columns: 1fr !important;
  }
  .pt22-supplier-card {
    min-height: 140px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  .pt22-supplier-card img {
    max-width: 160px !important;
    max-height: 86px !important;
  }
  .pt22-ai-banner-inner {
    padding: 22px !important;
  }
}
@media (max-width: 640px) {
  .pt22-tour-grid {
    grid-template-columns: 1fr !important;
  }
  .pt22-tour-card {
    min-height: auto !important;
  }
  .pt22-tour-thumb {
    height: 230px !important;
    flex-basis: 230px !important;
  }
  .pt23-ai-summary-grid,
  .pt22-stat-grid,
  .pt21-footer-grid {
    grid-template-columns: 1fr !important;
  }
  .pt23-search-trust {
    justify-content: flex-start;
  }
  .pt22-suggestion-chips a {
    width: 100%;
    justify-content: center;
  }
}
