/* ==========================================================
   Classic theme — Trip.com-style traveler storefront
   ========================================================== */
:root {
  --primary: #2681ff;
  --primary-dark: #1d6fe6;
  --primary-soft: #eaf4ff;
  --text: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f4f6f9;
  --hero-1: #1e3a8a;
  --hero-2: #2563eb;
  --hero-3: #3b82f6;
  --gold: #f59e0b;
  --green: #10b981;
  --red: #dc2626;
  --radius: 10px;
  --radius-lg: 16px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.55; font-size: 14px; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem 0; }
.section-mt { margin-top: 2rem; }

/* Top utility bar */
.top-bar { background: #fff; border-bottom: 1px solid var(--border); padding: .65rem 0; font-size: .82rem; }
.top-bar-row { display: flex; align-items: center; gap: 2rem; }
.brand { font-size: 1.4rem; font-weight: 800; color: var(--primary); letter-spacing: -.01em; flex-shrink: 0; }
.brand:hover { color: var(--primary-dark); }
.utility-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.util-item { color: var(--text); display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; }
.util-item:hover { color: var(--primary); }
.util-icon-only { padding: .25rem; }
.util-locale { cursor: default; }
.util-user { display: inline-flex; align-items: center; gap: .35rem; }
.util-user a { color: var(--text); }
.flag { background: var(--gold); color: #fff; font-size: .65rem; font-weight: 700; padding: 1px 5px; border-radius: 3px; letter-spacing: .04em; }

/* Hero */
.hero-section { position: relative; color: #fff; padding: 2.5rem 0 1rem; border: 20px solid #fff; border-radius: 24px; }
.hero-section--compact { padding: 1.5rem 0 5rem; }
.hero-bg { position: absolute; inset: 0; background-image: radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,.5), transparent 60%), radial-gradient(2px 2px at 28% 38%, rgba(255,255,255,.4), transparent 60%), radial-gradient(1px 1px at 47% 14%, rgba(255,255,255,.6), transparent 60%), radial-gradient(1.5px 1.5px at 70% 32%, rgba(255,255,255,.45), transparent 60%), radial-gradient(1px 1px at 85% 22%, rgba(255,255,255,.5), transparent 60%); pointer-events: none; }
.hero-mountains { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; height: 200px; pointer-events: none; }
.hero-inner { position: relative; text-align: center; }
.hero-title { font-size: 2.25rem; font-weight: 700; margin: 0 0 1rem; letter-spacing: -.01em; }
.hero-title--compact { font-size: 1.5rem; margin-bottom: 1rem; }
.hero-badges { display: inline-flex; gap: 1.25rem; margin-bottom: 1.5rem; flex-wrap: wrap; justify-content: center; }
.hero-badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; color: rgba(255,255,255,.95); }
/* Promo banners */
.promo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.promo-card { border-radius: var(--radius); padding: 1.5rem; color: #fff; position: relative; overflow: hidden; min-height: 130px; display: flex; flex-direction: column; justify-content: center; cursor: pointer; transition: transform .15s, box-shadow .15s; }
.promo-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.promo-card h3 { margin: 0 0 .25rem; font-size: 1.4rem; font-weight: 800; letter-spacing: .02em; }
.promo-card p { margin: 0; opacity: .92; font-size: .9rem; }
.promo-cta { display: inline-block; margin-top: .75rem; font-weight: 600; font-size: .85rem; }
.promo-rewards { background: linear-gradient(135deg, #1e40af, #2563eb); }
.promo-deal    { background: linear-gradient(135deg, #16a34a, #15803d); }
.promo-app     { background: linear-gradient(135deg, #0891b2, #1e40af); }
.promo-badge { position: absolute; top: .75rem; right: .75rem; background: var(--red); color: #fff; font-size: .65rem; font-weight: 700; padding: .2rem .55rem; border-radius: 4px; letter-spacing: .04em; }
.btn-white { background: #fff; color: var(--text); padding: .5rem 1rem; border: 0; border-radius: 6px; font-weight: 600; font-size: .85rem; cursor: pointer; margin-top: .85rem; align-self: flex-start; }

/* Section titles */
.section-title { font-size: 1.4rem; font-weight: 800; margin: 0 0 1rem; letter-spacing: -.01em; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 1rem; }
.section-head .section-title { margin: 0; }
.section-more { color: var(--muted); font-size: .85rem; font-weight: 600; }
.section-more:hover { color: var(--primary); }
.section-more span { font-size: 1.1em; }

/* Coupons */
.coupon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.coupon-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; position: relative; display: flex; flex-direction: column; gap: .25rem; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.coupon-card::before { content: ""; position: absolute; left: -5px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background: var(--bg-soft); border-radius: 50%; border: 1px solid var(--border); }
.coupon-discount { font-size: 1.6rem; font-weight: 800; color: var(--red); line-height: 1.1; }
.coupon-discount small { font-size: .8rem; font-weight: 600; }
.coupon-label { font-size: .82rem; color: var(--text); }
.btn-coupon { background: var(--primary); color: #fff; border: 0; border-radius: 6px; padding: .35rem 1.25rem; font-weight: 600; font-size: .8rem; cursor: pointer; align-self: flex-start; margin-top: .5rem; }
.btn-coupon:hover { background: var(--primary-dark); }

/* Destinations */
.dest-section { width: 100%; margin: 0; padding: 4rem clamp(1rem, 2.5vw, 2.5rem) 5.5rem; box-sizing: border-box; }
.dest-head { text-align: center; margin: 0 auto 2.5rem; }
.dest-eyebrow { display: inline-block; background: color-mix(in srgb, var(--primary) 12%, white); color: var(--primary); padding: .5rem 1.15rem; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 1rem; }
.dest-title { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 800; line-height: 1.15; margin: 0; letter-spacing: -.02em; color: #0f172a; }
.dest-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.dest-card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 3/4; min-height: 360px; padding: 1.5rem; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; transition: transform .25s, box-shadow .25s; text-decoration: none; box-shadow: 0 4px 18px rgba(15,23,42,.08); }
.dest-card:hover { transform: translateY(-4px); color: #fff; box-shadow: 0 14px 32px rgba(15,23,42,.16); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 45%, transparent 80%); z-index: 1; }
.dest-card > * { position: relative; z-index: 2; color: #fff; }
.dest-card--active { outline: 2px solid var(--primary); outline-offset: 0; }
.dest-meta { display: flex; flex-direction: column; gap: .15rem; }
.dest-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; }
.dest-trips { font-size: .9rem; font-weight: 500; opacity: .92; }
.dest-tag { font-size: .68rem; padding: .15rem .45rem; border-radius: 4px; background: rgba(0,0,0,.5); align-self: flex-start; margin-bottom: auto; font-weight: 600; }
.dest-tag--purple { background: rgba(124,58,237,.85); }
.dest-bg-1 { background: linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1508009603885-50cf7c579365?w=600&q=80&auto=format&fit=crop') center/cover; }
.dest-bg-2 { background: linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1558431382-27e303142255?w=600&q=80&auto=format&fit=crop') center/cover; }
.dest-bg-3 { background: linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=600&q=80&auto=format&fit=crop') center/cover; }
.dest-bg-4 { background: linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=600&q=80&auto=format&fit=crop') center/cover; }
.dest-bg-5 { background: linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?w=600&q=80&auto=format&fit=crop') center/cover; }

/* Sights */
.sight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.sight-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.sight-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.18); color: #fff; }
.sight-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 60%); z-index: 1; }
.sight-card > * { position: relative; z-index: 2; color: #fff; }
.sight-badge { position: absolute; top: .75rem; left: .75rem; background: rgba(255,255,255,.95); color: var(--primary); font-size: .68rem; font-weight: 700; padding: .25rem .55rem; border-radius: 4px; display: inline-flex; align-items: center; gap: .3rem; z-index: 3; }
.badge-mark { background: var(--primary); color: #fff; padding: 1px 4px; border-radius: 3px; font-size: .6rem; }
.sight-fav { position: absolute; top: .75rem; right: .75rem; background: rgba(0,0,0,.4); width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; z-index: 3; cursor: pointer; }
.sight-meta strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
.sight-meta small { font-size: .75rem; opacity: .9; }
.sight-bg-1 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1563492065599-3520f775eeed?w=600&q=80&auto=format&fit=crop') center/cover; }
.sight-bg-2 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1551038247-3d9af20df552?w=600&q=80&auto=format&fit=crop') center/cover; }
.sight-bg-3 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1551522435-a13afa10f103?w=600&q=80&auto=format&fit=crop') center/cover; }
.sight-bg-4 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=600&q=80&auto=format&fit=crop') center/cover; }

/* Trip moments */
.moment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.moment-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; text-decoration: none; transition: transform .15s; }
.moment-card:hover { transform: translateY(-3px); color: #fff; }
.moment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.65), transparent 50%); z-index: 1; }
.moment-card > * { position: relative; z-index: 2; color: #fff; }
.moment-fav { position: absolute; top: .6rem; right: .6rem; z-index: 3; background: rgba(0,0,0,.4); width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; }
.moment-meta strong { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; }
.moment-meta small { font-size: .72rem; display: inline-flex; align-items: center; gap: .35rem; opacity: .85; }
.avatar { display: inline-block; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg,#f59e0b,#dc2626); flex-shrink: 0; }
.moment-bg-1 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=600&q=80&auto=format&fit=crop') center/cover; }
.moment-bg-2 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?w=600&q=80&auto=format&fit=crop') center/cover; }
.moment-bg-3 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=600&q=80&auto=format&fit=crop') center/cover; }
.moment-bg-4 { background: linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1500835556837-99ac94a94552?w=600&q=80&auto=format&fit=crop') center/cover; }

/* Hotels */
.hotel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.hotel-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); transition: box-shadow .15s, transform .15s; display: flex; flex-direction: column; margin-bottom: 50px; }
.hotel-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(15,23,42,.12); color: #0f172a; }
.hotel-img { aspect-ratio: 4/3; position: relative; padding: 1rem; }
.hotel-bg-1 { background: url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=800&q=80&auto=format&fit=crop') center/cover; }
.hotel-bg-2 { background: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=800&q=80&auto=format&fit=crop') center/cover; }
.hotel-bg-3 { background: url('https://images.unsplash.com/photo-1455587734955-081b22074882?w=800&q=80&auto=format&fit=crop') center/cover; }
.hotel-bg-4 { background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=800&q=80&auto=format&fit=crop') center/cover; }
.hotel-discount { position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: #fff; font-size: .78rem; font-weight: 700; padding: .42rem .85rem; border-radius: 999px; box-shadow: 0 4px 10px color-mix(in srgb, var(--primary) 35%, transparent); letter-spacing: .01em; }
.hotel-meta { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .55rem; }
.hotel-rating { display: flex; align-items: center; gap: .55rem; }
.hotel-stars { display: inline-flex; align-items: center; gap: 2px; }
.hc-star { width: 16px; height: 16px; }
.hc-star.full { fill: #f59e0b; }
.hc-star.empty { fill: #e5e7eb; }
.hotel-rating small { color: #64748b; font-size: .82rem; font-weight: 500; }
.hotel-name { font-size: 1.12rem; font-weight: 700; line-height: 1.3; margin: 0; color: #0f172a; letter-spacing: -.005em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.85em; }
.hotel-info { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; color: #475569; font-size: .82rem; font-weight: 500; margin: .15rem 0 .25rem; }
.hotel-info-item { display: inline-flex; align-items: center; gap: .35rem; }
.hotel-info-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--primary); color: var(--primary); flex-shrink: 0; }
.hotel-info-icon svg { width: 12px; height: 12px; }
.hotel-info-divider { width: 1px; height: 12px; background: #cbd5e1; }
.hotel-foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: .85rem; margin-top: .35rem; border-top: 1px solid #f1f5f9; flex-wrap: wrap; }
.hotel-price { display: flex; flex-direction: column; gap: .1rem; line-height: 1.1; }
.hotel-price small { color: #64748b; font-size: .78rem; font-weight: 500; }
.hotel-price small s { color: #94a3b8; margin-left: .25rem; font-weight: 400; }
.hotel-price strong { font-size: 1.45rem; font-weight: 800; color: var(--primary); letter-spacing: -.01em; display: inline; }
.hotel-per { color: #64748b; font-size: .8rem; font-weight: 500; }
.hotel-cta { display: inline-flex; align-items: center; justify-content: center; padding: .65rem 1.25rem; border: 1.5px solid var(--primary); color: var(--primary); border-radius: 999px; font-size: .85rem; font-weight: 700; transition: background .15s, color .15s; white-space: nowrap; }
.hotel-card:hover .hotel-cta { background: var(--primary); color: #fff; }

/* App banner */
.app-banner { background: linear-gradient(135deg, #0891b2, #1e3a8a); color: #fff; border-radius: var(--radius-lg); padding: 2.5rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.app-banner::after { content: ""; position: absolute; right: -100px; top: -50px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); border-radius: 50%; pointer-events: none; }
.app-content { position: relative; z-index: 2; }
.app-content h2 { margin: 0 0 .5rem; font-size: 1.6rem; }
.app-features { display: flex; gap: 1.5rem; margin: 0 0 1rem; font-size: .85rem; color: rgba(255,255,255,.92); }
.app-stats { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.app-stats > div { display: flex; flex-direction: column; }
.app-stats strong { font-size: 1.25rem; font-weight: 800; }
.app-stats span { font-size: .72rem; opacity: .85; }
.app-stores { display: flex; gap: .75rem; flex-wrap: wrap; }
.app-store-btn { background: rgba(0,0,0,.55); color: #fff !important; border: 1px solid rgba(255,255,255,.2); padding: .5rem .85rem; border-radius: 8px; display: inline-flex; align-items: center; gap: .55rem; font-size: .82rem; font-weight: 600; text-decoration: none; }
.app-store-btn:hover { background: rgba(0,0,0,.75); color: #fff !important; }
.app-store-btn small { font-weight: 400; opacity: .8; font-size: .65rem; display: block; }
.app-qr { display: flex; justify-content: center; position: relative; z-index: 2; }
.qr-block { background: #fff; color: var(--text); padding: 1rem; border-radius: var(--radius); text-align: center; display: inline-flex; flex-direction: column; align-items: center; gap: .5rem; }
.qr-pattern { width: 120px; height: 120px; background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 0 0/14px 14px, #fff; border-radius: 4px; }
.qr-block small { font-size: .72rem; line-height: 1.4; color: var(--muted); }

/* Footer */
.site-footer { background: var(--bg-soft); margin-top: 3rem; border-top: 1px solid var(--border); }
.footer-main { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 2.5rem 1.5rem; }
.footer-col h4 { margin: 0 0 1rem; font-size: .85rem; font-weight: 700; color: var(--text); }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul a { color: var(--muted); font-size: .82rem; }
.footer-col ul a:hover { color: var(--primary); }
.footer-social { margin-top: 1rem; display: flex; gap: .5rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: .85rem; color: var(--muted); font-weight: 700; }
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-pay-row, .footer-partner-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.pay { background: #fff; border: 1px solid var(--border); padding: .25rem .55rem; border-radius: 4px; font-size: .65rem; font-weight: 800; color: var(--text); letter-spacing: .04em; }
.partner { background: #fff; border: 1px solid var(--border); padding: .35rem .65rem; border-radius: 4px; font-size: .75rem; color: var(--muted); font-weight: 600; }
.footer-awards { border-top: 1px solid var(--border); padding: 1.25rem 1.5rem; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.award { font-size: .8rem; color: var(--muted); display: inline-flex; align-items: center; gap: .35rem; }
.footer-bottom { background: #fff; border-top: 1px solid var(--border); padding: .85rem 0; }
.footer-bottom-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .72rem; color: var(--muted); }

/* Auxiliary pages */
.contact-page h1, .auth-page h1, .account-page h1, .search-page h1 { font-size: 1.6rem; margin: 0 0 .5rem; }
.lead { color: var(--muted); margin-bottom: 1.5rem; }
.contact-form, .auth-card form { display: grid; gap: 1rem; max-width: 480px; }
.contact-form label, .auth-card label { display: grid; gap: .35rem; font-size: .82rem; color: var(--muted); font-weight: 600; }
.contact-form input, .contact-form textarea, .auth-card input { padding: .65rem .85rem; border: 1px solid var(--border); border-radius: 6px; font: inherit; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus, .auth-card input:focus { outline: 2px solid var(--primary); border-color: var(--primary); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.contact-card { padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-soft); }
.contact-card h3 { margin: 0 0 .35rem; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.auth-card { max-width: 420px; margin: 1rem auto; padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.auth-alt { margin-top: 1.5rem; text-align: center; color: var(--muted); }
.account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1rem; }
.account-card { padding: 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); text-decoration: none; transition: border-color .15s, transform .15s, box-shadow .15s; }
.account-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(38,129,255,.1); text-decoration: none; }
.account-card h3 { margin: 0 0 .25rem; font-size: 1rem; }
.account-card p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Buttons */
.btn { display: inline-block; padding: .65rem 1.25rem; border-radius: 6px; font-weight: 600; border: 0; cursor: pointer; font-size: .9rem; font-family: inherit; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; text-decoration: none; }
.btn-block { width: 100%; }

/* Error page */
.error-page { text-align: center; padding: 5rem 1.5rem; }
.error-page h1 { font-size: 5rem; margin: 0; color: var(--primary); font-weight: 800; }

/* Flash */
.flash { padding: .85rem 1.25rem; border-radius: 6px; margin: 1rem auto; max-width: 1200px; font-size: .88rem; }
.flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.flash-info    { background: var(--primary-soft); color: #1e3a8a; border: 1px solid #bfdbfe; }

/* Responsive */
@media (max-width: 920px) {
  .promo-row, .coupon-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-row { grid-template-columns: repeat(2, 1fr); }
  .sight-grid, .moment-grid, .hotel-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .app-banner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .app-stats { gap: 1rem; }
  .hero-title { font-size: 1.75rem; }
}
@media (max-width: 560px) {
  .promo-row, .coupon-grid, .dest-row, .sight-grid, .moment-grid, .hotel-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .utility-nav { gap: .75rem; flex-wrap: wrap; justify-content: flex-start; margin-left: 0; }
  .util-item { font-size: .72rem; }
  .top-bar-row { flex-direction: column; align-items: flex-start; }
}

/* ── Mobile / tablet finalization ─────────────────────────────
   Kills horizontal overflow that was letting cards bleed past
   the viewport edge, tightens section padding, and shrinks the
   header so the logo + Sign In + Register fit without crashing
   into each other. */
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

@media (max-width: 768px) {
  .container { padding: 2.5rem 1rem 0 !important; }
  /* Section heads shouldn't bleed past the container */
  .sights-head, .hotels-head, .moments-head, .dests-head,
  .promos-head, .coupon-head { padding: 0 !important; }
  .sights-title, .hotels-title, .moments-title { word-break: break-word !important; }
  /* Header: shrink Sign In / Register so they don't crowd the logo. */
  .product-actions { gap: .35rem !important; }
  .product-actions .btn { font-size: .75rem !important; padding: .4rem .85rem !important; }
  .product-brand .brand-text { font-size: 1.05rem !important; }
  .product-bar-row { gap: .5rem !important; padding: 0 10px !important; }
  /* Sights section gets a hair of side padding so the heading + cards
     sit inside the viewport, not against the edge. */
  .sights-section { padding: 0 15px !important; }
  /* Book Your Tour cards: drop the desktop min-height so portrait
     phone screens don't show a tall empty band under each card. */
  .bktour-card { min-height: auto !important; }
  /* Hero gets tighter; the white border ring is too thick on small screens. */
  .hero-section { padding: 1.5rem 0 1rem !important; border-width: 10px !important; border-radius: 16px !important; }
  /* Bktour and similar branded sections breathe in tighter */
  .bktour-section { padding: 3rem 1rem 2.5rem !important; }
}
@media (max-width: 480px) {
  .container { padding: 2rem .75rem 0 !important; }
  .hero-title { font-size: 1.5rem !important; line-height: 1.2 !important; }
  .product-brand .brand-text { font-size: .95rem !important; }
  .product-actions .btn { font-size: .7rem !important; padding: .35rem .7rem !important; }
  /* Cards inside grids fill the row cleanly. */
  .sight-card, .hotel-card, .moment-card, .promo-card { width: 100% !important; min-width: 0 !important; }
}
/* HERO_BG_IMG_V3 */
.hero-bg-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;pointer-events:none;}
.hero-section .hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(5deg,transparent 0%,var(--primary) 100%);pointer-events:none;}

/* COUPON_V2 */
.coupon-grid--v2 { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 1rem; align-items: stretch; }
.coupon-promo {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(135deg, #f0f4ff 0%, #fef0f8 100%);
  border: 1px solid #e0e7ff; border-radius: 12px;
  padding: 1.1rem 1.25rem 1rem; text-decoration: none; color: var(--text);
  min-height: 168px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .15s ease, box-shadow .15s ease;
}
.coupon-promo:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(99,102,241,.3); }
.coupon-promo-text { font-size: .95rem; line-height: 1.35; color: var(--text); padding-right: 60px; }
.coupon-promo-text strong { font-weight: 700; }
.coupon-promo-art { position: absolute; right: 8px; top: 8px; width: 80px; height: 80px; }
.coupon-promo-art svg { width: 100%; height: 100%; }
.coupon-promo-cta {
  display: inline-block; align-self: flex-start;
  background: var(--primary); color: #fff;
  padding: .55rem 1.1rem; border-radius: 6px; font-weight: 600; font-size: .82rem;
  margin-top: .5rem;
}

.coupon-card--v2 {
  position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.1rem 1rem 2.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  min-height: 168px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: box-shadow .15s ease;
}
.coupon-card--v2:hover { box-shadow: 0 8px 20px -8px rgba(0,0,0,.1); }
.coupon-card--v2::before, .coupon-card--v2::after { content: ""; position: absolute; right: 84px; width: 14px; height: 14px; background: var(--bg-soft, #f4f6f9); border-radius: 50%; border: 1px solid var(--border); }
.coupon-card--v2::before { top: -8px; }
.coupon-card--v2::after { bottom: -8px; }
.coupon-card--v2 .coupon-cut {
  position: absolute; right: 91px; top: 12px; bottom: 12px; width: 0;
  border-left: 1.5px dashed #d1d5db;
}
.coupon-card--v2 .coupon-body { flex: 1; display: flex; flex-direction: column; gap: .25rem; }
.coupon-card--v2 .coupon-discount { font-size: 1.85rem; font-weight: 800; color: #ef4444; line-height: 1; }
.coupon-card--v2 .coupon-discount small { font-size: .85rem; font-weight: 600; color: #6b7280; margin-left: .25rem; }
.coupon-card--v2 .coupon-label { font-size: .85rem; color: var(--text); display: inline-flex; align-items: center; gap: .35rem; margin-top: .35rem; }
.coupon-info { display: inline-flex; align-items: center; justify-content: center; color: #9ca3af; font-size: .9rem; cursor: help; }
.coupon-card--v2 .btn-coupon {
  align-self: flex-start; margin-top: .65rem;
  background: var(--primary); color: #fff;
  padding: .45rem 1rem; border-radius: 6px; font-weight: 600; font-size: .8rem;
  border: 0; cursor: pointer;
}
.coupon-card--v2 .btn-coupon:hover { background: var(--primary-dark); }
.coupon-card--v2 .coupon-icon {
  width: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.coupon-card--v2 .coupon-icon svg { width: 36px; height: 36px; }
@media (max-width: 1080px) { .coupon-grid--v2 { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 720px)  { .coupon-grid--v2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .coupon-grid--v2 { grid-template-columns: 1fr; } }

/* DROPDOWN_FIX */
.hero-section{overflow:visible !important;}
.hero-section .hero-bg{overflow:hidden;border-radius:inherit;}
.abe-hero-search,.abe-search-widget,.abe-search-bar{position:relative;z-index:100;}
section.container.section-mt{position:relative;z-index:1;}
/* BKTOUR_V1 */
.bktour-section { background: #fdf8ee; padding: 5rem clamp(1rem, 2.5vw, 2.5rem) 4rem; box-sizing: border-box; }
.bktour-head { text-align: center; max-width: 1100px; margin: 0 auto 3rem; }
.bktour-eyebrow { display: inline-block; font-family: 'Sacramento', 'Brush Script MT', cursive; font-size: 1.7rem; color: var(--primary); margin-bottom: .25rem; line-height: 1; }
.bktour-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.4rem); color: #0f172a; margin: 0; letter-spacing: -.01em; line-height: 1.1; display: flex; align-items: center; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }
.bktour-orn { flex-shrink: 0; opacity: .85; }
.bktour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1280px; margin: 0 auto; }
.bktour-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; min-height: 460px; padding: 1.5rem; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; transition: transform .25s, box-shadow .25s; box-shadow: 0 6px 22px rgba(15,23,42,.1); }
.bktour-card:hover { transform: translateY(-4px); color: #fff; box-shadow: 0 14px 34px rgba(15,23,42,.18); }
.bktour-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.05) 75%, transparent 100%); z-index: 1; }
.bktour-card > * { position: relative; z-index: 2; color: #fff; }
.bktour-featured { position: absolute; top: 1rem; left: 1rem; z-index: 3; background: #fff; color: #0f172a; padding: .35rem .85rem; border-radius: 6px; font-size: .78rem; font-weight: 700; letter-spacing: .01em; }
.bktour-rating { display: inline-flex; align-items: center; gap: .35rem; font-size: .9rem; font-weight: 600; margin-bottom: .55rem; }
.bktour-rating strong { font-weight: 700; }
.bktour-rating small { font-weight: 500; opacity: .9; font-size: .82rem; }
.bktour-name { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1.55rem; font-weight: 700; line-height: 1.2; margin: 0 0 .9rem; letter-spacing: -.005em; }
.bktour-tagrow { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.1rem; flex-wrap: wrap; font-size: .85rem; }
.bktour-tag { display: inline-flex; align-items: center; gap: .4rem; opacity: .95; }
.bktour-divider { width: 1px; height: 14px; background: rgba(255,255,255,.45); }
.bktour-foot { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.bktour-price { display: inline-flex; align-items: baseline; gap: .35rem; }
.bktour-price small { font-size: .85rem; font-weight: 500; opacity: .85; }
.bktour-price strong { font-size: 1.45rem; font-weight: 800; letter-spacing: -.01em; }
.bktour-cta { display: inline-flex; align-items: center; gap: .55rem; background: var(--primary); color: #fff; padding: .8rem 1.5rem; border-radius: 999px; font-size: .92rem; font-weight: 700; box-shadow: 0 6px 14px color-mix(in srgb, var(--primary) 35%, transparent); transition: background .15s, transform .15s; }
.bktour-card:hover .bktour-cta { background: var(--primary-dark); transform: translateX(2px); }
.bktour-bg-1 { background: linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=900&q=80&auto=format&fit=crop') center/cover; }
.bktour-bg-2 { background: linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1500835556837-99ac94a94552?w=900&q=80&auto=format&fit=crop') center/cover; }
.bktour-bg-3 { background: linear-gradient(rgba(0,0,0,.15),rgba(0,0,0,.45)),url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?w=900&q=80&auto=format&fit=crop') center/cover; }
@media (max-width: 920px) {
  .bktour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bktour-grid { grid-template-columns: 1fr; }
  .bktour-section { padding: 3rem 1rem 2.5rem; }
  .bktour-orn { display: none; }
}
/* HERO_SEARCH_WRAP_PULL_V2 */
.hero-search-wrap { margin-bottom: -119px; }

/* UNIQUE_HEADS_V1 */
/* Top sights — modern teal accent */
.sights-section { padding-top: 0rem; margin-bottom: 7rem; padding: 0; }
.sights-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.sights-head-text { flex: 1 1 auto; min-width: 0; }
.sights-eyebrow { display: inline-flex; align-items: center; gap: .45rem; background: color-mix(in srgb, var(--primary) 10%, white); color: var(--primary); padding: .35rem .85rem; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .14em; margin-bottom: .85rem; border: 1px solid color-mix(in srgb, var(--primary) 25%, white); }
.sights-title { font-size: clamp(1.55rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.15; margin: 0; letter-spacing: -.015em; color: #0f172a; }
.sights-accent { position: relative; display: inline-block; color: var(--primary); }
.sights-accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 6px; background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 35%, transparent), color-mix(in srgb, var(--primary) 5%, transparent)); border-radius: 6px; z-index: -1; }
.sights-more { display: none; }
.sights-more:hover { background: #0e7490; color: #fff; }

/* Hotels — italic serif "luxury" feel */
.hotels-section { padding-top: 1rem; }
.hotels-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.hotels-head-text { flex: 1 1 auto; min-width: 0; }
.hotels-eyebrow { display: inline-flex; align-items: center; gap: .65rem; font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: .95rem; font-weight: 500; color: var(--primary); letter-spacing: .04em; margin-bottom: .75rem; }
.hotels-eyebrow-line { display: inline-block; width: 28px; height: 1px; background: var(--primary); opacity: .6; }
.hotels-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; line-height: 1.2; margin: 0; color: #0f172a; letter-spacing: -.005em; }
.hotels-title em { font-style: italic; color: var(--primary); font-weight: 700; }
.hotels-more { display: none; }
.hotels-more:hover { gap: .75rem; color: #92400e; }

@media (max-width: 700px) {
  .sights-head, .hotels-head { align-items: flex-start; }
  .sights-more, .hotels-more { font-size: .8rem; }
}
/* TAB_ICON_WHITE — disabled. Active tab is now white background with
   dark text in the engine.css override; forcing white stroke globally
   made the active-tab icon invisible on the white pill. */
.abe-search-tab svg {
  /* stroke: #ffffff !important; */
}
