/* What's On Bali — front-end (mobile-first) */
:root {
	--wob-primary: #0B50CF;
	--wob-primary-d: #083EA3;
	--wob-sky: #29AEE4;
	--wob-deep: #075591;
	--wob-grad: linear-gradient(135deg, #29AEE4 0%, #075591 100%);
	--wob-ink: #1B1E22;
	--wob-ink-2: #5F6570;
	--wob-ink-3: #9AA0A8;
	--wob-line: #E5E8EC;
	--wob-bg: #F5F7F9;
	--wob-card: #fff;
	--wob-ok: #13875A;
	--wob-warn: #C77700;
	--wob-err: #D0342C;
	--wob-yellow: #FFC83D;
	--wob-dark: #1A1D21;
	--wob-r: 14px;
	--wob-r-lg: 20px;
	--wob-shadow: 0 1px 2px rgba(16,24,40,.05), 0 6px 20px rgba(16,24,40,.06);
	--wob-shadow-lg: 0 12px 40px rgba(16,24,40,.14);
	--wob-gutter: 16px;
	--wob-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
@media (min-width: 768px) { :root { --wob-gutter: 28px; } }

/* ---------- Base (our layout only) ---------- */
body.wob-app { margin: 0; background: #fff; color: var(--wob-ink); font-family: var(--wob-font); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.wob-app *, .wob-app *::before, .wob-app *::after { box-sizing: border-box; }
.wob-site [class^="wob-"], .wob-site [class*=" wob-"] { box-sizing: border-box; }
.wob-app h1, .wob-app h2, .wob-app h3, .wob-app h4 { font-family: var(--wob-font); color: var(--wob-ink); line-height: 1.2; letter-spacing: -0.015em; margin: 0 0 .5em; font-weight: 800; }
.wob-app a { color: var(--wob-primary); text-decoration: none; }
.wob-app a:hover { text-decoration: underline; }
.wob-app a.wob-ecard, .wob-app a.wob-area, .wob-app a.wob-promo__card { color: var(--wob-ink); }
.wob-app a.wob-dbig, .wob-app a.wob-banner { color: #fff; }
.wob-app .wob-ecard__title { color: var(--wob-ink); }
.wob-app img { max-width: 100%; height: auto; }
.wob-app p { margin: 0 0 1em; }
.wob-app button, .wob-app input, .wob-app select, .wob-app textarea { font-family: inherit; font-size: inherit; }
.wob-skip { position: absolute; left: -9999px; }
.wob-skip:focus { left: 12px; top: 12px; z-index: 1000; background: #fff; padding: 8px 12px; border-radius: 8px; }
.wob-container { width: 100%; max-width: 1240px; margin: 0 auto; padding-left: var(--wob-gutter); padding-right: var(--wob-gutter); }
.wob-main { min-height: 50vh; }
.wob-i { flex-shrink: 0; vertical-align: middle; }
.wob-muted { color: var(--wob-ink-2); }
.wob-small { font-size: .85rem; }
.wob-center { text-align: center; margin-top: 28px; }
.wob-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.wob-mono, .wob-app code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .03em; }
@media (max-width: 599px) { .wob-hide-sm { display: none !important; } }

/* ---------- Buttons ---------- */
.wob-btn { display: inline-flex; align-items: center; justify-content: center; gap: .45em; padding: .75em 1.25em; border-radius: 10px; border: 1px solid var(--wob-line); background: #fff; color: var(--wob-ink); font-weight: 700; font-size: .95rem; line-height: 1.2; cursor: pointer; text-decoration: none !important; transition: background .15s, box-shadow .2s, transform .1s, border-color .15s; white-space: nowrap; }
.wob-btn:hover { border-color: #C9CFD6; box-shadow: var(--wob-shadow); }
.wob-btn:active { transform: translateY(1px); }
.wob-btn--primary { background: var(--wob-primary); border-color: var(--wob-primary); color: #fff !important; }
.wob-btn--primary:hover { background: var(--wob-primary-d); border-color: var(--wob-primary-d); }
.wob-btn--outline { background: transparent; border-color: #CBD2DA; }
.wob-btn--white { background: #fff; border-color: #fff; color: var(--wob-ink) !important; }
.wob-btn--sm { padding: .55em .95em; font-size: .85rem; border-radius: 9px; }
.wob-btn--lg { padding: 1em 1.4em; font-size: 1.02rem; }
.wob-btn--block { width: 100%; }
.wob-btn[disabled] { opacity: .45; pointer-events: none; }
.wob-iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 10px; border: 0; background: transparent; color: var(--wob-ink); cursor: pointer; }
.wob-iconbtn:hover { background: var(--wob-bg); }

/* ---------- Header ---------- */
.wob-header { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.96); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.admin-bar .wob-header { top: 46px; }
@media (min-width: 783px) { .admin-bar .wob-header { top: 32px; } }
.wob-header.is-scrolled { border-bottom-color: var(--wob-line); box-shadow: 0 2px 12px rgba(16,24,40,.05); }
.wob-header__in { display: flex; align-items: center; gap: 20px; height: 64px; }
@media (min-width: 1024px) { .wob-header__in { height: 72px; } }
.wob-logo { display: inline-flex; align-items: center; text-decoration: none !important; flex-shrink: 0; }
.wob-logo__txt { font-weight: 800; font-size: 1.35rem; letter-spacing: -0.03em; color: var(--wob-primary); }
.wob-app .wob-logo__img, .wob-logo__img { height: 40px; width: auto; max-width: none; display: block; }
@media (min-width: 1024px) { .wob-app .wob-header .wob-logo__img { height: 46px; } }
.wob-app .wob-footer .wob-logo__img { height: 52px; }
.wob-logo--light .wob-logo__txt { color: #fff; }
.wob-nav { display: none; }
.wob-header__act { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.wob-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--wob-grad); color: #fff !important; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; text-decoration: none !important; }
@media (min-width: 1024px) {
	.wob-burger { display: none; }
	.wob-nav { display: flex; align-items: center; gap: 4px; margin-left: 24px; }
	.wob-nav > a { padding: 8px 12px; border-radius: 8px; color: var(--wob-ink-2); font-weight: 600; font-size: .95rem; text-decoration: none !important; position: relative; }
	.wob-nav > a:hover { color: var(--wob-ink); background: var(--wob-bg); }
	.wob-nav > a.is-on { color: var(--wob-primary); }
	.wob-nav > a.is-on::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -14px; height: 2px; background: var(--wob-primary); border-radius: 2px; }
	.wob-nav__extra { display: none; }
}
@media (max-width: 1023px) {
	.wob-nav { position: fixed; inset: 64px 0 0 0; background: #fff; padding: 12px var(--wob-gutter) 32px; flex-direction: column; overflow-y: auto; z-index: 89; }
	.admin-bar .wob-nav { top: 110px; }
	.wob-nav-open .wob-nav { display: flex; }
	.wob-nav-open { overflow: hidden; }
	.wob-nav > a, .wob-nav__extra a { display: flex; align-items: center; gap: 10px; padding: 16px 4px; border-bottom: 1px solid var(--wob-line); color: var(--wob-ink); font-weight: 700; font-size: 1.1rem; text-decoration: none !important; }
	.wob-nav > a.is-on { color: var(--wob-primary); }
	.wob-nav__extra { margin-top: 18px; }
	.wob-nav__extra a { font-size: 1rem; font-weight: 600; color: var(--wob-ink-2); border-bottom: 0; padding: 10px 4px; }
}
.wob-searchbar { border-top: 1px solid var(--wob-line); background: #fff; padding: 12px 0; }
.wob-searchbar form { display: flex; align-items: center; gap: 10px; color: var(--wob-ink-3); }
.wob-searchbar input { flex: 1; min-width: 0; border: 0; outline: 0; font-size: 1.05rem; padding: 8px 0; color: var(--wob-ink); background: transparent; }

/* ---------- Page heads ---------- */
.wob-pagehead { background: var(--wob-bg); border-bottom: 1px solid var(--wob-line); padding: 28px 0 24px; }
.wob-pagehead h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin: 0; }
.wob-pagehead p { margin: 6px 0 0; color: var(--wob-ink-2); max-width: 680px; }
@media (min-width: 768px) { .wob-pagehead { padding: 44px 0 36px; } }
.wob-crumb { font-size: .85rem; margin-bottom: 6px; color: var(--wob-ink-3); }
.wob-crumb a { color: inherit; }
.wob-section { padding-top: 24px; padding-bottom: 48px; }
.wob-section--flush { padding-top: 0; }
@media (min-width: 768px) { .wob-section { padding-top: 36px; padding-bottom: 72px; } }
.wob-prose { max-width: 780px; }
.wob-prose h2 { margin-top: 1.4em; font-size: 1.35rem; }
.wob-block { margin-top: 36px; margin-bottom: 36px; }
@media (min-width: 768px) { .wob-block { margin-top: 56px; margin-bottom: 56px; } }
.wob-h { font-size: clamp(1.35rem, 2.6vw, 1.75rem); margin: 0; }
.wob-h--sm { font-size: 1.2rem; }
.wob-h-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 18px; }
.wob-h-row > a { font-weight: 700; font-size: .95rem; white-space: nowrap; }
.wob-h-sub { display: flex; align-items: center; gap: 6px; margin: 6px 0 0; color: var(--wob-ink-2); font-size: .92rem; }
.wob-h-sub .wob-i { color: var(--wob-ok); }
.wob-lead { font-size: 1.08rem; color: var(--wob-ink-2); max-width: 780px; margin: 28px 0 0; }
.wob-empty { text-align: center; color: var(--wob-ink-2); padding: 36px 20px; background: var(--wob-bg); border-radius: var(--wob-r); }
.wob-empty .wob-i { color: var(--wob-ink-3); }

/* ---------- Cards & grids ---------- */
.wob-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .wob-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 900px) { .wob-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .wob-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1180px) { .wob-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.wob-ecard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--wob-line); border-radius: var(--wob-r); overflow: hidden; text-decoration: none !important; color: var(--wob-ink); box-shadow: var(--wob-shadow); transition: transform .18s, box-shadow .2s; }
.wob-ecard:hover { transform: translateY(-3px); box-shadow: var(--wob-shadow-lg); }
.wob-ecard__img { position: relative; aspect-ratio: 4 / 3; background: var(--wob-grad) center / cover no-repeat; }
.wob-ecard--story .wob-ecard__img { aspect-ratio: 16 / 10; }
.wob-ecard__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.wob-ecard__kicker { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--wob-primary); }
.wob-ecard__kicker i { font-style: normal; color: var(--wob-ink-3); margin: 0 2px; }
.wob-ecard__kicker span { color: var(--wob-ink-2); font-weight: 700; }
.wob-ecard__title { font-size: 1.04rem; line-height: 1.3; font-weight: 800; }
.wob-ecard__line { display: flex; align-items: center; gap: 6px; font-size: .84rem; color: var(--wob-ink-2); }
.wob-ecard__ver { color: var(--wob-ok); }
.wob-ecard p { margin: 4px 0 8px; font-size: .9rem; color: var(--wob-ink-2); }
.wob-ecard__foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--wob-line); display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--wob-ink-2); }
.wob-ecard__foot b { font-size: 1.1rem; color: var(--wob-primary); font-weight: 800; }
.wob-ecard__foot b.is-free { color: var(--wob-ok); }
.wob-ecard__foot s { color: var(--wob-ink-3); }
.wob-ecard .wob-btn { margin-top: auto; }
.wob-more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--wob-primary); font-size: .9rem; }
.wob-datebadge { position: absolute; left: 12px; top: 12px; background: #fff; border-radius: 10px; padding: 5px 9px 4px; text-align: center; line-height: 1; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.wob-datebadge small { display: block; font-size: .62rem; font-weight: 800; color: var(--wob-primary); letter-spacing: .06em; }
.wob-datebadge b { display: block; font-size: 1.25rem; font-weight: 800; color: var(--wob-ink); margin-top: 2px; }
.wob-flag { position: absolute; right: 12px; top: 12px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 5px 9px; border-radius: 99px; color: #fff; }
.wob-flag--red { background: #E5392F; }
.wob-flag--blue { background: var(--wob-primary); }
.wob-flag--light { background: rgba(255,255,255,.94); color: var(--wob-ink); left: 12px; right: auto; }
.wob-flag--light + .wob-flag--blue { right: 12px; }
.wob-save { position: absolute; left: 12px; top: 12px; background: var(--wob-yellow); color: #3A2A00; font-size: .72rem; font-weight: 800; text-transform: uppercase; padding: 5px 10px; border-radius: 99px; z-index: 2; }

/* ---------- Filters, chips, pager ---------- */
.wob-filter { display: grid; grid-template-columns: 1fr; gap: 10px; background: #fff; padding: 10px; border: 1px solid var(--wob-line); border-radius: var(--wob-r); box-shadow: var(--wob-shadow); margin-bottom: 18px; }
@media (min-width: 700px) { .wob-filter { grid-template-columns: 2fr 1fr auto; align-items: center; } }
.wob-filter label { display: flex; align-items: center; gap: 8px; padding: 0 12px; color: var(--wob-ink-3); background: var(--wob-bg); border-radius: 10px; min-height: 46px; margin: 0; }
.wob-filter input, .wob-filter select { flex: 1; min-width: 0; border: 0; background: transparent; outline: 0; padding: 12px 0; color: var(--wob-ink); font-size: .95rem; }
.wob-filter .wob-btn { min-height: 46px; }
.wob-filter--dates { grid-template-columns: 1fr 1fr; }
.wob-filter--dates .wob-filter__q, .wob-filter--dates .wob-filter__sel, .wob-filter--dates .wob-btn { grid-column: 1 / -1; }
@media (min-width: 900px) { .wob-filter--dates { grid-template-columns: 2fr 1.2fr 1fr 1fr auto; } .wob-filter--dates .wob-filter__q, .wob-filter--dates .wob-filter__sel, .wob-filter--dates .wob-btn { grid-column: auto; } }
.wob-filter__date { position: relative; }
.wob-filter__date > span { position: absolute; top: 3px; left: 40px; font-size: .66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--wob-ink-3); }
.wob-filter__date input { padding: 18px 0 6px; font-family: inherit; }
.wob-hsearch__d input { font-family: inherit; }
.wob-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0 10px; margin-bottom: 8px; -webkit-overflow-scrolling: touch; }
.wob-chips::-webkit-scrollbar { display: none; }
.wob-chips a { flex-shrink: 0; padding: 8px 15px; border-radius: 99px; background: #fff; border: 1px solid var(--wob-line); color: var(--wob-ink-2); font-weight: 600; font-size: .88rem; text-decoration: none !important; }
.wob-chips a:hover { border-color: #C4CCD5; color: var(--wob-ink); }
.wob-chips a.is-on { background: var(--wob-primary); border-color: var(--wob-primary); color: #fff; }
.wob-chips__sep { flex-shrink: 0; width: 1px; background: var(--wob-line); margin: 4px 4px; }
.wob-results { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; color: var(--wob-ink-2); margin: 4px 0 14px; }
.wob-pager { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin: 32px 0 0; }
.wob-pager a { min-width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--wob-ink); border: 1px solid var(--wob-line); font-weight: 700; text-decoration: none !important; }
.wob-pager a.is-on { background: var(--wob-primary); border-color: var(--wob-primary); color: #fff; }

/* ---------- Home hero ---------- */
.wob-hero { position: relative; color: #fff; background: #0c2238 var(--hero, none) center / cover no-repeat; }
.wob-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,36,.55) 0%, rgba(8,20,36,.35) 45%, rgba(8,20,36,.85) 100%); }
@media (min-width: 900px) { .wob-hero::before { background: linear-gradient(90deg, rgba(8,20,36,.82) 0%, rgba(8,20,36,.45) 55%, rgba(8,20,36,.25) 100%); } }
.wob-hero__in { position: relative; display: grid; gap: 28px; padding-top: 44px; padding-bottom: 36px; }
@media (min-width: 900px) { .wob-hero__in { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: center; padding-top: 88px; padding-bottom: 88px; min-height: 520px; } }
.wob-hero h1 { color: #fff; font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.05; margin-bottom: 14px; letter-spacing: -0.03em; }
.wob-hero__copy > p { font-size: 1.05rem; opacity: .9; margin-bottom: 22px; max-width: 560px; }
.wob-hsearch { display: grid; grid-template-columns: 1fr; gap: 6px; background: #fff; border-radius: 16px; padding: 8px; box-shadow: var(--wob-shadow-lg); max-width: 640px; }
@media (min-width: 600px) { .wob-hsearch { grid-template-columns: 1.4fr 1fr 1fr auto; align-items: center; max-width: 760px; } .wob-hsearch__d { border-left: 1px solid var(--wob-line); } }
@media (max-width: 599px) { .wob-hsearch__a { border-bottom: 1px solid var(--wob-line); } }
.wob-hsearch label { display: flex; align-items: center; gap: 8px; color: var(--wob-ink-3); padding: 0 12px; min-height: 48px; margin: 0; }
@media (min-width: 600px) { .wob-hsearch__a { border-left: 1px solid var(--wob-line); } }
@media (max-width: 599px) { .wob-hsearch__q { border-bottom: 1px solid var(--wob-line); } }
.wob-hsearch input, .wob-hsearch select { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--wob-ink); font-size: .98rem; padding: 12px 0; }
.wob-hsearch .wob-btn { min-height: 48px; }
.wob-trending { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; font-size: .8rem; }
.wob-trending span { font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: .85; margin-right: 4px; }
.wob-trending a { color: #fff; border: 1px solid rgba(255,255,255,.45); padding: 5px 12px; border-radius: 99px; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }
.wob-trending a:hover { background: rgba(255,255,255,.2); text-decoration: none; }
.wob-promo { position: relative; }
.wob-promo__card { display: none; background: #fff; color: var(--wob-ink); border-radius: var(--wob-r-lg); overflow: hidden; box-shadow: var(--wob-shadow-lg); text-decoration: none !important; }
.wob-promo__card.is-on { display: block; animation: wobFade .5s ease; }
@keyframes wobFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.wob-promo__img { display: block; aspect-ratio: 16 / 9; background: var(--wob-grad) center / cover; position: relative; }
.wob-promo__tag { position: absolute; left: 14px; top: 14px; background: var(--wob-yellow); color: #3A2A00; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 4px 9px; border-radius: 6px; }
.wob-promo__body { display: block; padding: 16px 18px 18px; }
.wob-promo__body strong { display: block; font-size: 1.15rem; font-weight: 800; }
.wob-promo__body small { display: block; color: var(--wob-ink-2); margin: 4px 0 14px; font-size: .88rem; }
.wob-promo__foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--wob-line); padding-top: 12px; }
.wob-promo__foot b { color: var(--wob-primary); font-size: 1.3rem; font-weight: 800; }
.wob-promo__foot s { color: var(--wob-ink-3); margin-left: 6px; font-size: .85rem; }
.wob-dots { display: flex; gap: 6px; justify-content: center; margin-top: 12px; }
.wob-dots button { width: 22px; height: 4px; border: 0; border-radius: 2px; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; }
.wob-dots button.is-on { background: #fff; width: 32px; }
.wob-catbar { border-bottom: 1px solid var(--wob-line); background: #fff; }
.wob-catbar .wob-chips { padding: 12px 0; margin: 0; }
@media (min-width: 900px) { .wob-catbar .wob-chips { justify-content: center; } }

/* Hot deals band */
.wob-band { background: var(--wob-bg); padding: 40px 0; }
@media (min-width: 768px) { .wob-band { padding: 64px 0; } }
.wob-dgrid { display: grid; gap: 16px; }
@media (min-width: 760px) { .wob-dgrid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.wob-dgrid__more { margin-top: 20px; }
.wob-dbig { position: relative; display: flex; align-items: flex-end; min-height: 300px; border-radius: var(--wob-r-lg); overflow: hidden; background: #333 center / cover; color: #fff; text-decoration: none !important; box-shadow: var(--wob-shadow); }
@media (min-width: 760px) { .wob-dbig { min-height: 360px; } }
.wob-dbig::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.82) 100%); transition: background .2s; }
.wob-dbig:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.05) 15%, rgba(0,0,0,.88) 100%); }
.wob-dbig .wob-save { left: 16px; top: 16px; }
.wob-dbig__body { position: relative; padding: 20px; width: 100%; }
.wob-dbig__body strong { display: block; font-size: 1.25rem; font-weight: 800; line-height: 1.25; }
.wob-dbig__body p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 6px 0 14px; }
.wob-dbig__foot { display: flex; justify-content: space-between; align-items: center; }
.wob-dbig__foot b { font-size: 1.5rem; font-weight: 800; }
.wob-dbig__foot s { margin-left: 8px; opacity: .7; }

/* Areas */
.wob-areas { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .wob-areas { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .wob-areas--row { grid-template-columns: repeat(6, minmax(0, 1fr)); } .wob-areas--page { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; } }
.wob-area { text-align: center; color: var(--wob-ink); text-decoration: none !important; }
.wob-area__img { display: block; aspect-ratio: 1; border-radius: 16px; background: var(--wob-grad) center / cover; margin-bottom: 10px; transition: transform .2s, box-shadow .2s; }
.wob-area:hover .wob-area__img { transform: scale(1.03); box-shadow: var(--wob-shadow-lg); }
.wob-area strong { display: block; font-weight: 800; }
.wob-area small { display: block; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: var(--wob-ink-2); margin-top: 2px; }
.wob-areas--page .wob-area__img { aspect-ratio: 4 / 3; }

/* Banner */
.wob-banner { position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; min-height: 180px; padding: 22px; margin: 28px 0; border-radius: var(--wob-r-lg); overflow: hidden; background: var(--wob-grad) center / cover; color: #fff !important; text-decoration: none !important; }
.wob-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,20,40,.85), rgba(5,20,40,.25)); }
.wob-banner > * { position: relative; }
.wob-banner strong { display: block; font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; }
.wob-banner small { display: block; opacity: .85; margin-top: 4px; }
.wob-banner__tag { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; opacity: .8; }

/* ---------- Trust & footer ---------- */
.wob-trust { background: #EEF1F4; padding: 36px 0; margin-top: 24px; }
.wob-trust__in { display: grid; gap: 22px; text-align: center; }
@media (min-width: 760px) { .wob-trust__in { grid-template-columns: repeat(3, 1fr); } }
.wob-trust .wob-i { color: var(--wob-primary); margin-bottom: 8px; }
.wob-trust strong { display: block; text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.wob-trust span { display: block; color: var(--wob-ink-2); font-size: .88rem; margin-top: 2px; }
.wob-footer { background: var(--wob-dark); color: #AEB4BC; font-size: .92rem; }
.wob-footer__grid { display: grid; gap: 32px; padding-top: 48px; padding-bottom: 36px; grid-template-columns: 1fr 1fr; }
.wob-footer__brand, .wob-footer__news { grid-column: 1 / -1; }
@media (min-width: 960px) { .wob-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr; } .wob-footer__brand, .wob-footer__news { grid-column: auto; } }
.wob-footer h4 { color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.wob-footer ul { list-style: none; margin: 0; padding: 0; }
.wob-footer li { margin: 0 0 10px; }
.wob-footer a { color: #AEB4BC; }
.wob-footer a:hover { color: #fff; }
.wob-footer__brand p { margin: 14px 0 18px; max-width: 320px; line-height: 1.6; }
.wob-footer__social { display: flex; gap: 10px; }
.wob-footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #3A4048; display: inline-flex; align-items: center; justify-content: center; color: #fff; }
.wob-footer__social a:hover { background: #2A2F35; }
.wob-footer__news form { display: flex; gap: 8px; margin-top: 12px; }
.wob-footer__news input[type=email] { flex: 1; min-width: 0; background: #2A2F35; border: 1px solid #3A4048; color: #fff; border-radius: 9px; padding: 10px 12px; }
.wob-footer__ok { color: #7EE2B0; display: flex; align-items: center; gap: 6px; }
.wob-footer__bottom { border-top: 1px solid #2E3339; padding-top: 18px; padding-bottom: 28px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: .8rem; }
.wob-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- Detail pages ---------- */
.wob-hero-d { position: relative; min-height: 360px; display: flex; align-items: flex-end; color: #fff; background: #0c2238 var(--wob-grad) center / cover no-repeat; background-blend-mode: normal; }
.wob-hero-d::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(4,14,28,.85) 100%); }
@media (min-width: 900px) { .wob-hero-d { min-height: 540px; } }
.wob-hero-d--story { min-height: 320px; }
@media (min-width: 900px) { .wob-hero-d--story { min-height: 440px; } }
.wob-hero-d__in { position: relative; padding-top: 80px; padding-bottom: 32px; }
@media (min-width: 900px) { .wob-hero-d__in { padding-bottom: 52px; } }
.wob-hero-d h1 { color: #fff; font-size: clamp(1.9rem, 5.2vw, 3.6rem); line-height: 1.06; max-width: 900px; margin: 12px 0 14px; letter-spacing: -0.03em; }
.wob-hero-d__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .92rem; }
.wob-hero-d__meta span { display: inline-flex; align-items: center; gap: 7px; }
.wob-hero-d__meta a { color: #fff; }
.wob-pill { display: inline-block; background: var(--wob-primary); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 99px; }
.wob-hero-d--deal .wob-pill { background: var(--wob-yellow); color: #3A2A00; }
.wob-pill--ok { background: #E3F5EC; color: var(--wob-ok); border: 1px solid #BFE6D2; text-transform: none; letter-spacing: 0; font-size: .8rem; }
.wob-detail { display: grid; gap: 28px; padding-top: 28px; padding-bottom: 20px; }
@media (min-width: 1000px) { .wob-detail { grid-template-columns: minmax(0, 1fr) 380px; gap: 48px; padding-top: 44px; align-items: start; } .wob-detail__aside { position: sticky; top: 96px; } }
.wob-sec { margin-bottom: 36px; }
.wob-sec__t { color: var(--wob-primary) !important; font-size: 1.35rem; margin-bottom: 14px !important; }
.wob-rich { color: #3C424A; font-size: 1.02rem; line-height: 1.75; }
.wob-rich h2 { font-size: 1.3rem; margin: 1.4em 0 .5em; }
.wob-rich img { border-radius: 12px; }
.wob-ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
@media (min-width: 640px) { .wob-ticks { grid-template-columns: 1fr 1fr; } }
.wob-ticks li { display: flex; gap: 10px; align-items: flex-start; background: var(--wob-bg); border-radius: 12px; padding: 12px 14px; }
.wob-ticks .wob-i { color: var(--wob-primary); margin-top: 2px; }
.wob-steps-list { margin: 0; padding-left: 1.2em; color: #3C424A; }
.wob-steps-list li { margin-bottom: 8px; padding-left: 4px; }
.wob-policies { display: grid; gap: 12px; }
@media (min-width: 640px) { .wob-policies { grid-template-columns: 1fr 1fr; } }
.wob-policy-card { display: flex; gap: 12px; border: 1px solid var(--wob-line); border-radius: 12px; padding: 14px; background: #fff; }
.wob-policy-card .wob-i { color: var(--wob-primary); margin-top: 2px; }
.wob-policy-card strong { display: block; font-size: .92rem; }
.wob-policy-card p { margin: 2px 0 0; font-size: .88rem; color: var(--wob-ink-2); }
.wob-mapcard { position: relative; border-radius: var(--wob-r); overflow: hidden; border: 1px solid var(--wob-line); }
.wob-map { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(.25); }
@media (min-width: 768px) { .wob-map { height: 380px; } }
.wob-mapcard__label { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #fff; border-top: 1px solid var(--wob-line); }
.wob-mapcard__label > div { flex: 1; min-width: 0; }
.wob-mapcard__label strong { display: block; }
.wob-mapcard__label small { color: var(--wob-ink-2); }
.wob-mapcard__label .wob-i { color: var(--wob-primary); }
.wob-org { display: flex; align-items: center; gap: 14px; border: 1px solid var(--wob-line); border-radius: var(--wob-r); padding: 14px 16px; margin-bottom: 36px; flex-wrap: wrap; }
.wob-org img, .wob-org__av { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: var(--wob-grad); color: #fff; font-weight: 800; font-size: 1.3rem; display: inline-flex; align-items: center; justify-content: center; }
.wob-org > div { flex: 1; min-width: 160px; }
.wob-org small { display: block; color: var(--wob-ink-3); font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.wob-org strong { display: block; font-size: 1.05rem; }
.wob-verified { display: inline-flex; align-items: center; gap: 5px; color: var(--wob-ok); font-size: .82rem; font-weight: 600; }
.wob-facts2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 32px; }
@media (min-width: 760px) { .wob-facts2 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.wob-fact { background: var(--wob-bg); border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 2px; }
.wob-fact .wob-i { color: var(--wob-primary); margin-bottom: 4px; }
.wob-fact span { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--wob-ink-3); font-weight: 700; }
.wob-fact strong { font-size: .93rem; }
.wob-contact h3 { font-size: 1.2rem; }
.wob-contact__addr { display: flex; gap: 8px; align-items: flex-start; color: var(--wob-ink-2); }
.wob-contact__btns { display: grid; gap: 8px; margin: 14px 0; }
.wob-article { max-width: 780px; padding-top: 32px; padding-bottom: 10px; }
.wob-article__lead { font-size: 1.2rem; line-height: 1.6; color: var(--wob-ink); font-weight: 500; }

/* Buy box */
.wob-card { background: #fff; border: 1px solid var(--wob-line); border-radius: var(--wob-r-lg); padding: 20px; box-shadow: var(--wob-shadow); margin-bottom: 18px; }
@media (min-width: 768px) { .wob-card { padding: 24px; } }
.wob-card h2, .wob-card h3 { margin-top: 0; }
.wob-buy__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--wob-line); }
.wob-buy__head h3 { margin: 0; color: var(--wob-primary); font-size: 1.35rem; }
.wob-buy__head .wob-i { color: var(--wob-ink-2); }
.wob-tt { border: 1px solid var(--wob-line); border-radius: 14px; padding: 14px; margin-bottom: 12px; transition: border-color .15s, background .15s; }
.wob-tt.is-picked, .wob-tt.is-pop { border-color: #9DB9F0; background: #F5F8FF; }
.wob-tt.is-off { opacity: .6; }
.wob-tt__top { display: flex; justify-content: space-between; gap: 10px; }
.wob-tt__top strong { display: block; font-size: 1rem; }
.wob-tt__price { text-align: right; white-space: nowrap; }
.wob-tt__price b { color: var(--wob-primary); font-weight: 800; }
.wob-tt__price s { display: block; color: var(--wob-ink-3); font-size: .8rem; }
.wob-tt p { margin: 8px 0 0; font-size: .88rem; color: var(--wob-ink-2); }
.wob-tag { display: inline-block; font-style: normal; font-size: .72rem; font-weight: 700; margin-top: 3px; }
.wob-tag--warn { color: var(--wob-warn); }
.wob-tag--ok { color: var(--wob-ok); }
.wob-tag--off { color: var(--wob-err); }
.wob-stepper { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-top: 12px; }
.wob-stepper button { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid #C9D0D8; background: #fff; color: var(--wob-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
.wob-stepper button[data-step="1"] { background: var(--wob-primary); border-color: var(--wob-primary); color: #fff; }
.wob-stepper input { width: 42px; text-align: center; border: 0; font-weight: 800; font-size: 1.05rem; background: transparent; -moz-appearance: textfield; appearance: textfield; padding: 0; }
.wob-stepper input::-webkit-outer-spin-button, .wob-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.wob-buy__sum { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; margin-top: 6px; border-top: 1px solid var(--wob-line); }
.wob-buy__sum b { font-size: 1.15rem; }
.wob-buy__note { display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center; font-size: .78rem; color: var(--wob-ink-2); margin: 12px 0 0; }
.wob-mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px var(--wob-gutter) calc(12px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--wob-line); box-shadow: 0 -6px 24px rgba(16,24,40,.08); transition: transform .25s; }
.wob-mbar small { display: block; color: var(--wob-ink-2); font-size: .75rem; }
.wob-mbar strong { font-size: 1.15rem; color: var(--wob-primary); }
.wob-mbar.is-hidden { transform: translateY(110%); }
@media (min-width: 1000px) { .wob-mbar { display: none; } }
@media (max-width: 999px) { .single-wob_event .wob-footer, .single-wob_deal .wob-footer { padding-bottom: 80px; } }

/* ---------- Forms, alerts, badges ---------- */
.wob-form label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 14px; color: var(--wob-ink); }
.wob-form input:not([type=checkbox]):not([type=radio]), .wob-form textarea, .wob-form select, .wob-checkin select, .wob-checkin input, .wob-auth input[type=text], .wob-auth input[type=password] {
	display: block; width: 100%; margin-top: 6px; padding: .8em .95em; border: 1px solid #D5DAE0; border-radius: 10px; font: inherit; font-weight: 400; background: #fff; color: var(--wob-ink);
}
.wob-form input:focus, .wob-form textarea:focus, .wob-filter input:focus { outline: 2px solid rgba(11,80,207,.35); outline-offset: 1px; border-color: var(--wob-primary); }
.wob-form--2 { display: grid; gap: 0 18px; }
@media (min-width: 700px) { .wob-form--2 { grid-template-columns: 1fr 1fr; } .wob-form--2 .wob-form__actions { grid-column: 1 / -1; } }
.wob-form__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.wob-check { display: flex !important; gap: .6em; align-items: flex-start; font-weight: 500 !important; }
.wob-check input { margin-top: .3em; }
.wob-alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; font-weight: 500; }
.wob-alert--error { background: #FDECEB; color: #8A1F19; }
.wob-alert--ok { background: #E7F6EE; color: #0F5F3B; }
.wob-alert--info { background: #EAF2FF; color: #0B3A87; }
.wob-err { color: var(--wob-err); font-style: normal; font-size: .85rem; display: block; }
.wob-badge { display: inline-block; padding: .28em .7em; border-radius: 99px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; background: #EEF1F4; color: var(--wob-ink-2); white-space: nowrap; }
.wob-badge--pending_payment, .wob-badge--pending, .wob-badge--review, .wob-badge--submitted { background: #FFF4E0; color: #8A5300; }
.wob-badge--paid, .wob-badge--valid, .wob-badge--confirmed { background: #E4F5EC; color: #0F6B40; }
.wob-badge--used { background: #E8EEF6; color: #2E4B6B; }
.wob-badge--cancelled, .wob-badge--expired, .wob-badge--rejected, .wob-badge--invalid { background: #FDECEB; color: #9B241D; }
.wob-badge--refunded, .wob-badge--already_used { background: #F2E9FB; color: #5B2C87; }
.wob-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.wob-table th, .wob-table td { text-align: left; padding: 11px 8px; border-bottom: 1px solid var(--wob-line); }
.wob-table th { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--wob-ink-3); }
.wob-tablewrap { overflow-x: auto; padding: 8px 16px; }

/* Checkout & order */
.wob-checkout__grid { display: grid; gap: 20px; align-items: start; }
@media (min-width: 900px) { .wob-checkout__grid { grid-template-columns: 1.3fr 1fr; gap: 28px; } .wob-summary { position: sticky; top: 96px; } }
@media (max-width: 899px) { .wob-summary { order: -1; } }
.wob-sumline { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--wob-line); }
.wob-sumline img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; }
.wob-sumline > div { flex: 1; min-width: 0; }
.wob-sumline small { display: block; color: var(--wob-ink-2); }
.wob-sumtotal { display: flex; justify-content: space-between; padding-top: 14px; font-size: 1.15rem; }
.wob-orderpage { max-width: 860px; }
.wob-order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.wob-order-head h2 { margin: .1em 0; font-family: ui-monospace, Menlo, monospace; font-size: 1.3rem; }
.wob-bank { background: #F1F6FF; border-left: 4px solid var(--wob-primary); padding: 12px 16px; border-radius: 8px; font-family: ui-monospace, Menlo, monospace; margin: 10px 0; font-size: .92rem; }
.wob-steps { display: flex; list-style: none; padding: 0; margin: 20px 0; counter-reset: s; gap: 6px; }
.wob-steps li { flex: 1; text-align: center; font-size: .76rem; color: var(--wob-ink-3); position: relative; padding-top: 32px; counter-increment: s; }
.wob-steps li::before { content: counter(s); position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 26px; height: 26px; border-radius: 50%; background: #EEF1F4; color: var(--wob-ink-3); line-height: 26px; font-weight: 800; }
.wob-steps li.is-done { color: var(--wob-ink); }
.wob-steps li.is-done::before { background: var(--wob-primary); color: #fff; content: "✓"; }
.wob-steps li.is-current { color: var(--wob-primary); font-weight: 800; }
.wob-steps li.is-current::before { background: #fff; border: 2px solid var(--wob-primary); color: var(--wob-primary); line-height: 22px; }

/* ---------- Dashboard / My Tickets ---------- */
.wob-dash { display: grid; gap: 0; margin: 0 calc(-1 * var(--wob-gutter)); }
@media (min-width: 900px) { .wob-dash { grid-template-columns: 240px minmax(0, 1fr); margin: 0; min-height: 70vh; } }
.wob-dash__side { background: #fff; border-bottom: 1px solid var(--wob-line); padding: 10px var(--wob-gutter); display: flex; align-items: center; gap: 8px; overflow-x: auto; }
.wob-dash__label { display: none; }
.wob-dash__side nav { display: flex; gap: 6px; }
.wob-dash__side a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 10px; color: var(--wob-ink-2); font-weight: 700; font-size: .92rem; white-space: nowrap; text-decoration: none !important; }
.wob-dash__side a.is-on { background: var(--wob-primary); color: #fff; }
.wob-dash__out { color: var(--wob-err) !important; margin-left: auto; }
@media (min-width: 900px) {
	.wob-dash__side { flex-direction: column; align-items: stretch; border-bottom: 0; border-right: 1px solid var(--wob-line); padding: 32px 20px; overflow: visible; }
	.wob-dash__label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wob-ink-3); font-weight: 800; margin: 0 0 12px 6px; }
	.wob-dash__side nav { flex-direction: column; }
	.wob-dash__out { margin: auto 0 0; border-top: 1px solid var(--wob-line); padding-top: 18px !important; border-radius: 0 !important; }
}
.wob-dash__main { background: var(--wob-bg); padding: 24px var(--wob-gutter) 48px; min-width: 0; }
@media (min-width: 900px) { .wob-dash__main { padding: 40px 40px 64px; } }
.wob-dash__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.wob-dash__head h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0; }
.wob-dash__head p { margin: 4px 0 0; color: var(--wob-ink-2); }
.wob-dash__cols { display: grid; gap: 24px; margin-top: 32px; }
@media (min-width: 1100px) { .wob-dash__cols { grid-template-columns: 1.4fr 1fr; } }
.wob-tgrid { display: grid; gap: 16px; }
@media (min-width: 1100px) { .wob-tgrid { grid-template-columns: 1fr 1fr; } }
.wob-tcard { display: grid; grid-template-columns: 110px minmax(0, 1fr); background: #fff; border: 1px solid var(--wob-line); border-radius: var(--wob-r); overflow: hidden; box-shadow: var(--wob-shadow); }
@media (min-width: 520px) { .wob-tcard { grid-template-columns: 140px minmax(0, 1fr); } }
.wob-tcard__img { position: relative; background: var(--wob-grad) center / cover; min-height: 150px; }
.wob-tcard__st { position: absolute; left: 8px; top: 8px; background: var(--wob-primary); color: #fff; font-size: .68rem; font-weight: 800; padding: 3px 8px; border-radius: 6px; }
.wob-tcard--used .wob-tcard__st { background: #5B6B7D; }
.wob-tcard--cancelled .wob-tcard__st, .wob-tcard--refunded .wob-tcard__st { background: var(--wob-err); }
.wob-tcard--used, .wob-tcard--cancelled, .wob-tcard--refunded { opacity: .75; }
.wob-tcard__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.wob-tcard__kick { font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--wob-primary); }
.wob-tcard__body strong { font-size: 1.02rem; line-height: 1.3; }
.wob-tcard__line { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--wob-ink-2); }
.wob-tcard__foot { margin-top: auto; padding-top: 10px; border-top: 1px dashed var(--wob-line); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.wob-tcard__foot small { display: block; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--wob-ink-3); font-weight: 700; }
.wob-tcard__foot b { font-size: .92rem; }
.wob-qrbtn { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; border: 1px solid #C8D6F5; background: #EEF3FF; color: var(--wob-primary); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.wob-modal { border: 0; border-radius: var(--wob-r-lg); padding: 0; width: min(92vw, 520px); max-height: 90vh; box-shadow: var(--wob-shadow-lg); }
.wob-modal::backdrop { background: rgba(10,16,24,.6); }
.wob-modal__head, .wob-modal__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--wob-line); }
.wob-modal__foot { border-bottom: 0; border-top: 1px solid var(--wob-line); }
.wob-modal__foot small { color: var(--wob-ink-2); }
.wob-modal__head button { border: 0; background: transparent; cursor: pointer; color: var(--wob-ink); }
.wob-modal__body { padding: 18px; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); overflow-y: auto; max-height: 60vh; }
.wob-qrcell { text-align: center; }
.wob-qrcell svg { width: 100%; max-width: 240px; height: auto; }
.wob-qrcell code { display: block; font-weight: 800; font-size: 1.05rem; margin-top: 6px; }
.wob-qrcell small { color: var(--wob-ink-2); }
.wob-qr-void { aspect-ratio: 1; max-width: 240px; margin: 0 auto; display: flex; align-items: center; justify-content: center; background: #F3F4F6; color: var(--wob-ink-3); font-weight: 800; border-radius: 12px; text-transform: uppercase; }
.wob-paycard { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; background: #FFF8EC; border: 1px solid #F5DDB0; border-radius: var(--wob-r); padding: 16px; margin-bottom: 12px; }
.wob-paycard__ico { width: 48px; height: 48px; border-radius: 50%; background: #FCE9C6; color: #B36B00; display: inline-flex; align-items: center; justify-content: center; }
.wob-paycard__txt { flex: 1; min-width: 180px; }
.wob-paycard__txt strong { display: block; }
.wob-paycard__txt small { color: var(--wob-ink-2); }
.wob-paycard__act { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
@media (max-width: 519px) { .wob-paycard__act { width: 100%; align-items: stretch; } }
.wob-timer { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #F5DDB0; color: #B36B00; padding: 4px 10px; border-radius: 8px; font-weight: 800; font-variant-numeric: tabular-nums; }
.wob-warn-text { color: var(--wob-warn); font-size: .8rem; font-weight: 700; }
.wob-activity { padding: 18px; }
.wob-timeline { list-style: none; margin: 0 0 12px; padding: 0; }
.wob-timeline li { display: flex; gap: 12px; padding-bottom: 16px; position: relative; }
.wob-timeline li:not(:last-child)::before { content: ""; position: absolute; left: 17px; top: 36px; bottom: 0; width: 1px; background: var(--wob-line); }
.wob-timeline__dot { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: #EEF1F4; color: var(--wob-ink-2); }
.wob-timeline__dot--ok { background: #E3F5EC; color: var(--wob-ok); }
.wob-timeline__dot--blue { background: #EAF1FF; color: var(--wob-primary); }
.wob-timeline strong { display: block; font-size: .92rem; font-weight: 600; }
.wob-timeline small { color: var(--wob-ink-3); font-size: .8rem; }
.wob-link-sm { font-size: .85rem; font-weight: 700; }
.wob-past { margin: 32px 0 0; }
.wob-past summary { cursor: pointer; font-weight: 800; margin-bottom: 14px; }
.wob-auth { display: flex; justify-content: center; padding: 24px 0 64px; }
.wob-auth__card { width: 100%; max-width: 460px; }
.wob-auth__card h1 { font-size: 1.7rem; }
.wob-auth form p { margin-bottom: 12px; }
.wob-auth label { font-weight: 700; font-size: .88rem; }
.wob-auth .login-remember label { font-weight: 500; }
.wob-auth .button-primary, .wob-auth input[type=submit] { width: 100%; background: var(--wob-primary); color: #fff; border: 0; border-radius: 10px; padding: .9em; font-weight: 800; cursor: pointer; }

/* ---------- Check-in ---------- */
.wob-checkin { max-width: 560px; margin: 0 auto; }
.wob-checkin__bar { display: flex; justify-content: space-between; align-items: flex-end; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.wob-checkin__bar label { flex: 1; margin: 0; font-weight: 700; font-size: .88rem; }
.wob-checkin__scanner { background: #111; border-radius: var(--wob-r); overflow: hidden; margin-bottom: 12px; text-align: center; padding-bottom: 12px; }
.wob-checkin__scanner video { width: 100%; max-height: 360px; object-fit: cover; display: block; background: #000; min-height: 60px; }
.wob-checkin__scanner button { margin-top: 12px; }
.wob-checkin__manual { display: flex; gap: 8px; }
.wob-checkin__manual input { margin: 0 !important; text-transform: uppercase; }
.wob-checkin__manual input::placeholder { text-transform: none; }
.wob-ci-result { border-radius: var(--wob-r); padding: 22px; margin: 0 0 14px; color: #fff; display: flex; flex-direction: column; gap: 4px; text-align: center; }
.wob-ci-result strong { font-size: 1.8rem; }
.wob-ci-result--VALID { background: var(--wob-ok); }
.wob-ci-result--ALREADY_USED { background: var(--wob-warn); }
.wob-ci-result--INVALID, .wob-ci-result--CANCELLED, .wob-ci-result--REFUNDED { background: var(--wob-err); }
.wob-ci-log { list-style: none; padding: 0; font-size: .85rem; color: var(--wob-ink-2); }
.wob-ci-log li { padding: 6px 0; border-bottom: 1px solid var(--wob-line); }
.wob-ci-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; background: var(--wob-err); }
.wob-ci-dot--VALID { background: var(--wob-ok); }
.wob-ci-dot--ALREADY_USED { background: var(--wob-warn); }

/* Area hero */
.wob-hero-lite { position: relative; color: #fff; background: #0c2238 var(--wob-grad) center / cover; padding: 110px 0 36px; }
.wob-hero-lite::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(4,14,28,.8)); }
.wob-hero-lite .wob-container { position: relative; }
.wob-hero-lite h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.8rem); margin: 0; }
.wob-hero-lite .wob-crumb, .wob-hero-lite .wob-crumb a { color: rgba(255,255,255,.8); }
.wob-hero-lite__tag { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: .85rem; margin: 6px 0 0 !important; opacity: .9; }
@media (min-width: 900px) { .wob-hero-lite { padding: 200px 0 56px; } }

@media (prefers-reduced-motion: reduce) { .wob-app * { transition: none !important; animation: none !important; } }

/* ---------- Events calendar ---------- */
.wob-evlayout { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 1024px) { .wob-evlayout { grid-template-columns: 320px 1fr; gap: 28px; } .wob-evlayout__cal { position: sticky; top: 88px; } }
.wob-evlayout__main { min-width: 0; scroll-margin-top: 90px; }
@media (min-width: 1024px) { .wob-evlayout__main .wob-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .wob-evlayout__main .wob-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.wob-cal { display: grid; gap: 14px; min-width: 0; }
.wob-months { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 2px 4px; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
.wob-months::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .wob-months { display: grid; grid-template-columns: repeat(4, 1fr); overflow: visible; } }
.wob-months__m { flex: 0 0 auto; min-width: 70px; display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 8px 6px; border: 1px solid var(--wob-line); border-radius: 12px; background: #fff; color: var(--wob-ink) !important; text-decoration: none !important; scroll-snap-align: start; transition: border-color .15s, background .15s; }
.wob-months__m small { font-size: .62rem; color: var(--wob-ink-3); }
.wob-months__m b { font-size: .95rem; }
.wob-months__m span { font-size: .66rem; color: var(--wob-primary); font-weight: 600; }
.wob-months__m.is-empty span { color: var(--wob-ink-3); font-weight: 400; }
.wob-months__m:hover, .wob-months__m.is-view { border-color: var(--wob-primary); }
.wob-months__m.is-on { background: var(--wob-primary); border-color: var(--wob-primary); color: #fff !important; }
.wob-months__m.is-on small, .wob-months__m.is-on span { color: rgba(255,255,255,.85); }
.wob-cal__box { background: #fff; border: 1px solid var(--wob-line); border-radius: var(--wob-r); box-shadow: var(--wob-shadow); padding: 14px; }
.wob-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.wob-cal__head strong { font-size: 1rem; }
.wob-cal__nav { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--wob-line); color: var(--wob-ink) !important; text-decoration: none !important; font-size: 1.2rem; line-height: 1; }
.wob-cal__nav:hover { border-color: var(--wob-primary); color: var(--wob-primary) !important; }
.wob-cal__nav.is-off { opacity: .3; }
.wob-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.wob-cal__dow { text-align: center; font-size: .68rem; font-weight: 700; color: var(--wob-ink-3); padding: 4px 0; }
.wob-cal__d { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 10px; font-size: .88rem; color: var(--wob-ink-2); text-decoration: none !important; position: relative; min-height: 38px; }
.wob-cal__d b { font-weight: 500; }
.wob-cal__d i { font-style: normal; font-size: .6rem; line-height: 1; letter-spacing: 1px; color: var(--wob-primary); height: 8px; }
.wob-cal__d.is-past { color: #c3c9d4; }
.wob-cal__d.has-ev { background: #EEF4FF; color: var(--wob-ink) !important; }
.wob-cal__d.has-ev b { font-weight: 700; }
a.wob-cal__d.has-ev:hover { background: #dbe7ff; }
.wob-cal__d.is-today { box-shadow: inset 0 0 0 1.5px var(--wob-primary); }
.wob-cal__d.is-sel { background: var(--wob-primary) !important; color: #fff !important; }
.wob-cal__d.is-sel i { color: #fff; }
.wob-cal__foot { display: flex; justify-content: space-between; gap: 8px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--wob-line); font-size: .85rem; font-weight: 600; }
.wob-day { margin-bottom: 26px; }
.wob-day__h { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--wob-line); }
.wob-day__d { width: 46px; height: 50px; border-radius: 10px; background: var(--wob-primary); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; flex: none; }
.wob-day__d small { font-size: .6rem; font-weight: 700; letter-spacing: .06em; opacity: .85; }
.wob-day__d b { font-size: 1.25rem; }
.wob-day__h strong { display: block; font-size: 1.05rem; }
.wob-day__h small { color: var(--wob-ink-3); font-size: .82rem; }
.wob-results b { color: var(--wob-ink); }
.wob-hero-d__meta .wob-addcal { gap: 8px; flex-wrap: wrap; width: 100%; }
.wob-addcal a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); font-size: .8rem; font-weight: 600; text-decoration: none; backdrop-filter: blur(6px); }
.wob-addcal a:hover { background: rgba(255,255,255,.28); }
.wob-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.wob-tags span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #EEF4FF; color: var(--wob-ink); font-size: .85rem; }
.wob-tags svg { color: var(--wob-primary); }
.wob-getthere h3 { font-size: 1rem; margin: 6px 0 6px; }
.wob-rich h3 { font-size: 1.08rem; margin: 22px 0 8px; }
.wob-rich h3:first-child { margin-top: 0; }
.wob-ecard__note { font-size: .88rem !important; text-align: right; }
.wob-ecard__foot--note b { color: var(--wob-primary); font-size: .88rem; line-height: 1.35; }
.wob-buy__offer { font-size: 1.05rem; font-weight: 700; color: var(--wob-ink); margin: 4px 0 8px; }

/* ---------- Stay booking ---------- */
.wob-stay__dates { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 4px 0 14px; }
.wob-stay__dates label { display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--wob-line); border-radius: 10px; padding: 6px 10px; margin: 0; background: #fff; }
.wob-stay__dates span { font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--wob-ink-3); }
.wob-stay__dates input, .wob-stay__dates select { border: 0; outline: 0; padding: 2px 0; font: inherit; font-size: .92rem; color: var(--wob-ink); background: transparent; width: 100%; min-width: 0; }
.wob-stay__guests { grid-column: 1 / -1; }
.wob-tt__price small { display: block; font-size: .7rem; color: var(--wob-ink-3); font-weight: 500; text-align: right; }
.wob-stay + .wob-contact { margin-top: 16px; }
.wob-ecard__foot b small { font-size: .72rem; color: var(--wob-ink-3); font-weight: 500; }

/* ---------- Card CTA ---------- */
.wob-ecard__cta { margin-top: 12px; }
.wob-ecard:hover .wob-ecard__cta { filter: brightness(1.08); }

/* ---------- Gallery ---------- */
.wob-sec__t small { font-size: .8rem; font-weight: 500; color: var(--wob-ink-3); margin-left: 6px; }
.wob-gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.wob-gal__i { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--wob-bg); }
.wob-gal__i img { width: 100%; height: 100% !important; object-fit: cover; display: block; transition: transform .3s; }
.wob-gal__i:hover img { transform: scale(1.04); }
.wob-gal__i:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.wob-gal__i.is-more { display: none; }
.wob-gal__more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(10,20,40,.55); color: #fff; font-size: 1.4rem; font-weight: 700; }
@media (min-width: 700px) {
	.wob-gal { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; height: 380px; }
	.wob-gal__i, .wob-gal__i:first-child { aspect-ratio: auto; }
	.wob-gal__i:first-child { grid-column: 1; grid-row: 1 / 3; }
}
.wob-lb { position: fixed; inset: 0; z-index: 10000; background: rgba(5,10,20,.92); display: flex; align-items: center; justify-content: center; }
.wob-lb[hidden] { display: none; }
.wob-lb figure { margin: 0; max-width: 92vw; max-height: 86vh; text-align: center; }
.wob-lb img { max-width: 92vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.wob-lb figcaption { color: #cfd6e4; font-size: .85rem; margin-top: 8px; }
.wob-lb button { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.wob-lb__x { top: 16px; right: 16px; }
.wob-lb__p { left: 12px; top: 50%; transform: translateY(-50%); }
.wob-lb__n { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- Hot deal pricing ---------- */
.wob-flag--hot { background: #fff; color: #D6361F; left: 12px; right: auto; }
.wob-disc { position: absolute; right: 12px; top: 12px; z-index: 2; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #FF5A3C, #D6181F); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 6px 16px rgba(214,24,31,.35); transform: rotate(-8deg); text-align: center; padding: 4px; }
.wob-disc small { font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .95; }
.wob-disc b { font-size: 1.12rem; font-weight: 900; letter-spacing: -.02em; }
.wob-disc--lg { position: static; width: 76px; height: 76px; flex: none; }
.wob-disc--lg b { font-size: 1.35rem; }
.wob-dprice { align-items: flex-end; }
.wob-dprice > div { display: flex; flex-direction: column; }
.wob-dprice s { font-size: .82rem; color: var(--wob-ink-3); }
.wob-dprice small { font-size: .75rem; color: var(--wob-ink-3); }
.wob-dprice b { font-size: 1.2rem !important; color: #D6181F !important; }
.wob-dsave { background: #FFE9E5; color: #C4161C; font-size: .72rem; font-weight: 800; padding: 5px 9px; border-radius: 99px; white-space: nowrap; }
.wob-dealbox { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #FFF4F1; border: 1px dashed #F5A08F; border-radius: 12px; padding: 12px 14px; margin: 4px 0 14px; }
.wob-dealbox > div { display: flex; flex-direction: column; }
.wob-dealbox s { color: var(--wob-ink-3); font-size: .9rem; }
.wob-dealbox b { color: #D6181F; font-size: 1.4rem; font-weight: 900; }
.wob-dealbox small { color: #C4161C; font-weight: 700; font-size: .8rem; }
.wob-dealbox .wob-dealbox__note { font-size: 1rem; line-height: 1.35; color: var(--wob-ink); font-weight: 700; }

.wob-book .wob-stay__dates { margin-top: 10px; }
.wob-howbook { margin: 14px 0 0; padding-left: 20px; font-size: .86rem; color: var(--wob-ink-2); display: grid; gap: 6px; }
