:root {
  color-scheme: light;
  --ink: #11203b;
  --muted: #647086;
  --navy: #112642;
  --coral: #ff552f;
  --coral-deep: #e94725;
  --teal: #0b9189;
  --ivory: #fffaf3;
  --paper: #fff;
  --line: #e9e2d9;
  --soft-coral: #fff0e9;
  --soft-teal: #e9f7f4;
  --shadow: 0 12px 34px rgba(40, 30, 17, .08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; background: var(--ivory); color: var(--ink); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, input:focus-visible { outline: 3px solid rgba(11,145,137,.24); outline-offset: 2px; }
.hidden { display: none !important; }

.app-header { position: sticky; z-index: 30; top: 0; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px clamp(14px,3.2vw,42px); border-bottom: 1px solid rgba(225,215,203,.84); background: rgba(255,250,243,.94); backdrop-filter: blur(18px); }
.brand { min-width: 0; display: flex; align-items: center; gap: 9px; color: inherit; text-decoration: none; }
.brand-mark { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #ff9f4a; border-radius: 50%; background: linear-gradient(155deg,#ff8a24,#ff4a2f 58%,#aa1535); color: #fff; font-family: Georgia,serif; font-size: .93rem; font-style: italic; font-weight: 900; box-shadow: 0 7px 18px rgba(239,73,48,.2); }
.brand strong, .brand small { display: block; white-space: nowrap; }
.brand strong { font-size: .92rem; letter-spacing: -.025em; }
.brand small { margin-top: 1px; color: var(--coral); font-size: .61rem; font-weight: 850; }
.header-actions { display: flex; align-items: center; gap: 7px; }
.language-button, .signin-button, .icon-button { min-height: 42px; border-radius: 13px; cursor: pointer; font-weight: 850; }
.language-button { border: 0; padding: 7px 9px; background: transparent; color: var(--navy); font-size: .69rem; }
.signin-button { border: 1px solid var(--navy); padding: 7px 12px; background: var(--navy); color: #fff; font-size: .7rem; }
.icon-button { width: 42px; border: 1px solid var(--line); background: #fff; color: var(--navy); }

.web-layout { width: min(1360px,100%); display: grid; grid-template-columns: 190px minmax(0,620px) minmax(250px,310px); justify-content: center; gap: clamp(15px,2.4vw,30px); margin: 0 auto; padding: 22px clamp(14px,2.8vw,32px) 84px; }
.desktop-nav, .right-rail { position: sticky; top: 92px; height: fit-content; }
.desktop-nav { display: grid; gap: 5px; }
.rail-item { min-height: 48px; display: flex; align-items: center; gap: 12px; border: 0; border-radius: 15px; padding: 9px 13px; background: transparent; color: #566176; cursor: pointer; font-weight: 800; text-align: left; }
.rail-item span { width: 25px; color: #768095; text-align: center; }
.rail-item:hover, .rail-item.is-active { background: #fff; color: var(--navy); box-shadow: 0 8px 24px rgba(42,31,19,.06); }
.rail-item.is-active span { color: var(--teal); }
.install-note { display: grid; gap: 7px; margin-top: 18px; padding: 14px; border: 1px solid #eddac9; border-radius: 17px; background: #fff4e9; }
.install-note strong { font-size: .78rem; }
.install-note span { color: var(--muted); font-size: .66rem; line-height: 1.45; }
.install-note button { min-height: 38px; border: 0; border-radius: 11px; background: var(--coral); color: #fff; font-size: .65rem; font-weight: 850; }
.install-note button:disabled { opacity: .5; }

.main-feed { min-width: 0; }
.network-status { min-height: 40px; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 9px 12px; border: 1px solid #f0d1c4; border-radius: 13px; background: #fff3ec; color: #a7432b; font-size: .69rem; font-weight: 750; }
.network-status[data-tone="ready"] { border-color: #bee7dc; background: #effaf7; color: #126f67; }
.network-status[data-tone="error"] { border-color: #f1c4c4; background: #fff0f0; color: #a63030; }
.loading-dot { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px color-mix(in srgb,currentColor 13%,transparent); animation: pulse 1s infinite; }
.network-status[data-tone] .loading-dot { animation: none; }
@keyframes pulse { 50% { opacity: .3; } }
.route-view { display: none; }
.route-view.is-active { display: block; animation: enter .18s ease; }
@keyframes enter { from { opacity: 0; transform: translateY(4px); } }

.feed-tabs { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }
.feed-tabs button { min-height: 43px; border: 0; border-bottom: 2px solid transparent; background: transparent; color: #48546a; cursor: pointer; font-size: .72rem; font-weight: 800; }
.feed-tabs button.is-active { border-color: var(--coral); color: var(--coral); }
.welcome-row { display: flex; align-items: end; justify-content: space-between; padding: 16px 3px 12px; }
.welcome-row p, .page-title p, .trip-hero p, .profile-hero p, .trust-panel > p { margin: 0; color: var(--coral); font-size: .61rem; font-weight: 950; letter-spacing: .13em; }
.welcome-row h1, .page-title h1, .trip-hero h1, .profile-hero h1 { margin: 4px 0 0; font-size: clamp(1.45rem,4vw,2.45rem); line-height: 1.04; letter-spacing: -.047em; }
.destination-strip { display: flex; gap: 10px; overflow-x: auto; padding: 2px 2px 13px; scrollbar-width: none; }
.destination-strip::-webkit-scrollbar { display: none; }
.destination-chip { min-width: 68px; display: grid; justify-items: center; gap: 6px; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.destination-art { width: 58px; height: 58px; border: 2px solid #fff; border-radius: 50%; background: url('assets/spiti-monastery.jpg') center/cover; box-shadow: 0 0 0 2px var(--coral),0 5px 15px rgba(55,36,20,.12); }
.destination-chip:nth-child(even) .destination-art { background-image: url('assets/kashmir-lake.jpg'); box-shadow: 0 0 0 2px var(--teal),0 5px 15px rgba(55,36,20,.12); }
.destination-chip small { max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .6rem; font-weight: 750; }
.composer-card { min-width: 0; display: grid; grid-template-columns: 39px minmax(0,1fr) 34px; align-items: center; gap: 9px; margin-bottom: 13px; padding: 10px; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 7px 20px rgba(55,40,20,.045); }
.profile-bubble { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-size: .63rem; font-weight: 900; }
.composer-card button { min-width: 0; display: grid; gap: 2px; border: 0; background: transparent; color: #556075; cursor: pointer; text-align: left; }
.composer-card button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .73rem; }
.composer-card button small { color: #8c94a3; font-size: .58rem; }
.camera-mark { color: var(--navy); text-align: center; }
.feed-list { display: grid; gap: 13px; }
.feed-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.feed-head { display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 12px; }
.official-avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#ff7e32,#ef3c38); color: #fff; font-family: Georgia,serif; font-style: italic; font-weight: 900; }
.feed-head strong, .feed-head small { display: block; }
.feed-head strong { font-size: .72rem; }
.feed-head small { margin-top: 2px; color: var(--muted); font-size: .58rem; }
.official-badge { padding: 5px 7px; border-radius: 99px; background: var(--soft-teal); color: var(--teal); font-size: .52rem; font-weight: 950; white-space: nowrap; }
.feed-copy { padding: 0 12px 10px; }
.feed-copy h3 { margin: 0 0 4px; font-size: 1rem; letter-spacing: -.025em; }
.feed-copy p { display: -webkit-box; overflow: hidden; margin: 0; color: #4f5b6e; font-size: .69rem; line-height: 1.48; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.feed-art { position: relative; min-height: 300px; overflow: hidden; background: url('assets/spiti-monastery.jpg') center/cover; }
.feed-card:nth-child(even) .feed-art { background-image: url('assets/kashmir-lake.jpg'); }
.feed-art[data-image] { background-image: var(--feed-image); }
.destination-label { position: absolute; left: 12px; top: 12px; padding: 6px 9px; border-radius: 99px; background: rgba(255,255,255,.9); color: var(--navy); font-size: .57rem; font-weight: 900; backdrop-filter: blur(8px); }
.sponsored-label { position: absolute; right: 12px; top: 12px; padding: 6px 9px; border-radius: 99px; background: rgba(17,38,66,.88); color: #fff; font-size: .54rem; font-weight: 850; }
.feed-actions { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); }
.feed-actions button { min-height: 43px; border: 0; border-right: 1px solid var(--line); background: #fff; color: #415069; cursor: pointer; font-size: .62rem; font-weight: 750; }
.feed-actions button:last-child { border-right: 0; color: var(--coral); }
.feed-reason { display: block; padding: 9px 12px; border-top: 1px solid #f1ece6; color: #7c8594; font-size: .56rem; }
.no-feed { padding: 30px 22px; border: 1px dashed #e7cdbb; border-radius: 19px; background: #fffaf5; text-align: center; }
.no-feed strong, .no-feed span { display: block; }
.no-feed span { margin-top: 6px; color: var(--muted); font-size: .7rem; line-height: 1.5; }

.page-title { padding: 17px 3px 14px; }
.page-title > span { display: block; margin-top: 7px; color: var(--muted); font-size: .72rem; }
.search-box { min-height: 48px; display: flex; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--ink); }
.filter-row { display: flex; gap: 7px; overflow-x: auto; padding: 10px 0 13px; }
.filter-row button { min-height: 35px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 99px; padding: 6px 11px; background: #fff; color: #465269; font-size: .62rem; }
.package-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.package-card { overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: 0 9px 28px rgba(55,38,20,.06); }
.package-art { min-height: 165px; background: url('assets/spiti-monastery.jpg') center/cover; }
.package-card:nth-child(even) .package-art { background-image: url('assets/kashmir-lake.jpg'); }
.package-copy { padding: 13px; }
.package-copy small { color: var(--coral); font-size: .56rem; font-weight: 900; letter-spacing: .08em; }
.package-copy h3 { margin: 5px 0 7px; font-size: .96rem; line-height: 1.18; letter-spacing: -.02em; }
.package-meta { display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted); font-size: .61rem; }
.package-copy button { width: 100%; min-height: 40px; margin-top: 11px; border: 0; border-radius: 11px; background: var(--coral); color: #fff; cursor: pointer; font-size: .66rem; font-weight: 850; }

.create-choice-grid { display: grid; gap: 8px; }
.create-choice-grid button { min-height: 72px; display: grid; grid-template-columns: 44px minmax(0,1fr) auto; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 16px; padding: 10px 13px; background: #fff; color: var(--ink); cursor: pointer; text-align: left; box-shadow: 0 7px 22px rgba(45,33,19,.04); }
.choice-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--soft-teal); color: var(--teal); font-size: 1.15rem; }
.create-choice-grid strong, .create-choice-grid small { display: block; }
.create-choice-grid strong { font-size: .78rem; }
.create-choice-grid small { margin-top: 3px; color: var(--muted); font-size: .61rem; }
.create-choice-grid b { color: #8c96a5; font-size: 1.2rem; }
.create-form-card { display: grid; gap: 10px; margin-top: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.create-form-card label, .auth-step label { display: grid; gap: 6px; color: #39475e; font-size: .66rem; font-weight: 800; }
.create-form-card input, .auth-step input { min-width: 0; min-height: 44px; border: 1px solid #ded8cf; border-radius: 12px; padding: 9px 11px; background: #fff; color: var(--ink); outline: 0; }
.create-form-card > small { color: var(--muted); text-align: center; font-size: .58rem; }
.primary-button { min-height: 44px; border: 0; border-radius: 12px; padding: 9px 14px; background: var(--coral); color: #fff; cursor: pointer; font-size: .7rem; font-weight: 850; }
.ai-trust-card { display: grid; grid-template-columns: 42px 1fr; gap: 11px; margin-top: 12px; padding: 14px; border: 1px solid #cce8e2; border-radius: 17px; background: #effaf7; }
.ai-trust-card > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--teal); color: #fff; font-size: .68rem; font-weight: 950; }
.ai-trust-card strong, .ai-trust-card p { display: block; margin: 0; }
.ai-trust-card strong { font-size: .73rem; }
.ai-trust-card p { margin-top: 4px; color: #3e716b; font-size: .63rem; line-height: 1.48; }

.trip-hero { min-height: 250px; display: flex; align-items: end; overflow: hidden; border-radius: 22px; background: linear-gradient(0deg,rgba(8,25,42,.72),transparent 72%),url('assets/spiti-monastery.jpg') center/cover; color: #fff; }
.trip-hero > div { padding: 20px; }
.trip-hero p { color: #fff1e6; }
.trip-hero span { display: block; max-width: 470px; margin-top: 7px; color: #eef4f7; font-size: .68rem; line-height: 1.5; }
.trip-progress { display: flex; align-items: center; padding: 18px 5px; }
.trip-progress > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border: 2px solid #cfd5de; border-radius: 50%; color: #778195; font-size: .63rem; font-weight: 900; }
.trip-progress > span.done { border-color: var(--teal); background: var(--teal); color: #fff; }
.trip-progress i { height: 2px; flex: 1; background: #d9dedf; }
.trip-progress span small { position: absolute; margin-top: 57px; color: #586479; font-size: .52rem; font-weight: 700; }
.trip-setup-card { display: grid; grid-template-columns: 45px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 13px; border: 1px solid #f2cda9; border-radius: 17px; background: #fff9f2; }
.trip-setup-card strong, .trip-setup-card small { display: block; }
.trip-setup-card strong { font-size: .73rem; }
.trip-setup-card small { margin-top: 3px; color: var(--muted); font-size: .59rem; }
.trip-setup-card button { min-height: 38px; border: 0; border-radius: 11px; padding: 7px 10px; background: var(--coral); color: #fff; font-size: .59rem; font-weight: 850; }
.trip-tools { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-top: 11px; }
.trip-tools button { min-height: 110px; display: grid; align-content: center; gap: 3px; border: 1px solid var(--line); border-radius: 16px; padding: 12px; background: #fff; color: var(--ink); text-align: left; }
.trip-tools button > span { color: var(--navy); font-size: 1.1rem; }
.trip-tools strong, .trip-tools small { display: block; }
.trip-tools strong { margin-top: 5px; font-size: .74rem; }
.trip-tools small { color: var(--muted); font-size: .59rem; }

.profile-hero { display: grid; grid-template-columns: 88px minmax(0,1fr); align-items: center; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 21px; background: #fff; }
.profile-photo { width: 88px; height: 88px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg,#fbc58d,#1a5965); color: #fff; font-weight: 950; }
.profile-hero h1 { font-size: 1.5rem; }
.profile-hero > div > span { display: block; margin-top: 6px; color: var(--muted); font-size: .65rem; line-height: 1.45; }
.passport-stamps { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 13px 0; }
.passport-stamps > span { min-height: 120px; display: grid; place-items: end center; align-content: end; border: 2px solid #d55b38; border-radius: 46% 46% 14px 14px; padding: 13px 5px; background: #fff9f1 url('assets/spiti-monastery.jpg') center top/100% 65% no-repeat; color: #b24229; font-family: Georgia,serif; font-size: .73rem; font-weight: 900; letter-spacing: .08em; text-align: center; }
.passport-stamps > span:nth-child(2) { border-color: #277477; background-image: url('assets/kashmir-lake.jpg'); color: #1d6265; }
.passport-stamps > span:nth-child(3) { border-color: #728a4c; color: #5c7339; }
.passport-stamps small { display: block; margin-top: 3px; font-family: inherit; font-size: .43rem; letter-spacing: 0; }
.profile-menu { display: grid; gap: 8px; }
.profile-menu button { min-height: 52px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 14px; padding: 9px 12px; background: #fff; color: var(--ink); text-align: left; }
.profile-menu b { color: #8d96a5; font-size: 1rem; }
.full-button { width: 100%; margin-top: 11px; }

.right-rail { display: grid; gap: 13px; }
.side-image-card, .trust-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.side-image-card img { width: 100%; height: 150px; display: block; object-fit: cover; }
.side-image-card div { padding: 15px; }
.side-image-card span { color: var(--teal); font-size: .53rem; font-weight: 900; letter-spacing: .08em; }
.side-image-card h2 { margin: 7px 0 5px; font-size: 1.05rem; line-height: 1.16; letter-spacing: -.03em; }
.side-image-card p { margin: 0; color: var(--muted); font-size: .67rem; line-height: 1.45; }
.side-image-card button { width: 100%; min-height: 40px; margin-top: 11px; border: 1px solid #bfded9; border-radius: 11px; background: #effaf7; color: var(--teal); font-size: .64rem; font-weight: 850; }
.trust-panel { padding: 18px; }
.trust-panel h2 { margin: 6px 0 13px; font-size: 1.05rem; }
.trust-panel ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.trust-panel li { display: grid; grid-template-columns: 22px 1fr; align-items: center; gap: 7px; color: #425067; font-size: .67rem; }
.trust-panel li span { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-teal); color: var(--teal); font-weight: 900; }

.bottom-nav { display: none; }
.sheet-backdrop { position: fixed; z-index: 60; inset: 0; background: rgba(11,22,38,.48); backdrop-filter: blur(3px); }
.login-sheet { position: fixed; z-index: 61; left: 50%; bottom: max(18px,env(safe-area-inset-bottom)); width: min(460px,calc(100% - 24px)); transform: translateX(-50%); padding: 25px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 28px 80px rgba(14,24,40,.28); }
.sheet-close { position: absolute; right: 13px; top: 13px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #f6f2ed; color: var(--ink); font-size: 1.2rem; }
.sheet-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; background: var(--soft-coral); color: var(--coral); font-size: 1.3rem; }
.login-sheet > p:first-of-type { margin: 14px 0 0; color: var(--coral); font-size: .61rem; font-weight: 950; letter-spacing: .12em; }
.login-sheet h2 { margin: 5px 0; font-size: 1.55rem; letter-spacing: -.04em; }
.login-reason { margin-bottom: 15px; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.auth-step { display: grid; gap: 10px; }
.phone-input { display: grid; grid-template-columns: 54px 1fr; align-items: center; border: 1px solid #ded8cf; border-radius: 12px; }
.phone-input b { text-align: center; font-size: .72rem; }
.phone-input input { border: 0; border-left: 1px solid #e4ded6; border-radius: 0 12px 12px 0; }
.whatsapp-button, .provider-button { width: 100%; min-height: 45px; border-radius: 12px; cursor: pointer; font-size: .7rem; font-weight: 850; }
.whatsapp-button { border: 0; background: var(--teal); color: #fff; }
.provider-button { margin-top: 7px; border: 1px solid var(--line); background: #fff; color: var(--navy); }
.text-button { min-height: 38px; border: 0; background: transparent; color: var(--teal); font-size: .66rem; font-weight: 800; }
.provider-divider { display: flex; align-items: center; gap: 8px; margin: 12px 0 4px; color: #8a94a3; font-size: .56rem; }
.provider-divider::before, .provider-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.login-status { min-height: 20px; margin: 10px 0 3px; color: var(--teal); font-size: .66rem; font-weight: 750; }
.login-status[data-tone="error"] { color: #b32d2d; }
.login-sheet > small { display: block; color: #8b93a1; font-size: .56rem; line-height: 1.45; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: calc(86px + env(safe-area-inset-bottom)); width: min(390px,calc(100% - 28px)); transform: translateX(-50%); padding: 11px 14px; border-radius: 13px; background: var(--navy); color: #fff; box-shadow: 0 14px 38px rgba(17,38,66,.24); font-size: .68rem; font-weight: 750; text-align: center; }

@media (max-width: 1040px) {
  .web-layout { grid-template-columns: 170px minmax(0,620px); }
  .right-rail { display: none; }
}
@media (max-width: 760px) {
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .app-header { min-height: 58px; padding: 7px 12px; }
  .brand-mark { width: 38px; height: 38px; font-size: .78rem; }
  .brand strong { font-size: .78rem; }
  .brand small { font-size: .52rem; }
  .language-button { min-height: 38px; padding-inline: 4px; font-size: .58rem; }
  .icon-button { width: 38px; min-height: 38px; }
  .signin-button { display: none; }
  .web-layout { display: block; width: 100%; padding: 8px 8px 16px; }
  .desktop-nav { display: none; }
  .network-status { min-height: 34px; margin-bottom: 7px; padding: 7px 9px; font-size: .59rem; }
  .bottom-nav { position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; min-height: calc(64px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(5,1fr); padding: 5px 6px env(safe-area-inset-bottom); border-top: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(18px); }
  .bottom-nav button { min-width: 0; min-height: 54px; display: grid; place-items: center; align-content: center; gap: 2px; border: 0; background: transparent; color: #526077; }
  .bottom-nav button > span { font-size: 1rem; }
  .bottom-nav small { font-size: .53rem; font-weight: 750; }
  .bottom-nav button.is-active { color: var(--teal); }
  .bottom-nav .create-nav > span { width: 44px; height: 44px; display: grid; place-items: center; margin-top: -19px; border-radius: 50%; background: var(--coral); color: #fff; font-size: 1.45rem; box-shadow: 0 7px 18px rgba(255,85,47,.28); }
  .bottom-nav .create-nav small { color: var(--coral); }
  .welcome-row { padding-top: 10px; }
  .welcome-row h1, .page-title h1 { font-size: 1.45rem; }
  .feed-art { min-height: min(78vw,310px); }
  .feed-copy h3 { font-size: .94rem; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { display: grid; grid-template-columns: minmax(125px,41%) minmax(0,1fr); }
  .package-art { min-height: 160px; }
  .package-copy h3 { font-size: .88rem; }
  .trip-setup-card { grid-template-columns: 42px minmax(0,1fr); }
  .trip-setup-card button { grid-column: 1 / -1; width: 100%; }
  .login-sheet { bottom: 0; width: 100%; border-radius: 25px 25px 0 0; padding: 23px 18px calc(18px + env(safe-area-inset-bottom)); }
}
@media (max-width: 390px) {
  .header-actions { gap: 2px; }
  .language-button { max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .destination-art { width: 54px; height: 54px; }
  .destination-chip { min-width: 63px; }
  .feed-actions button { font-size: .56rem; }
  .passport-stamps > span { min-height: 105px; font-size: .65rem; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Travel Tribe functional journeys */
button:disabled { cursor: not-allowed; opacity: .58; }
.notification-button { position: relative; }
.notification-badge { position: absolute; right: -3px; top: -3px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 4px; border: 2px solid #fff; border-radius: 99px; background: var(--coral); color: #fff; font-size: .48rem; font-weight: 900; }
.group-strip-wrap { margin: 14px 0; }
.section-line { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.section-line p { margin: 0; color: var(--teal); font-size: .55rem; font-weight: 900; letter-spacing: .1em; }
.section-line h2,.section-line h3 { margin: 3px 0 0; font-size: .94rem; }
.section-line > button,.small-outline-button { min-height: 34px; border: 1px solid var(--line); border-radius: 10px; padding: 6px 10px; background: #fff; color: var(--navy); font-size: .6rem; font-weight: 800; }
.group-strip { display: flex; gap: 9px; overflow-x: auto; padding: 2px 0 5px; scroll-snap-type: x proximity; }
.group-chip-card { min-width: 235px; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; gap: 9px; scroll-snap-align: start; padding: 10px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.group-chip-card > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--soft-teal); color: var(--teal); font-size: .66rem; font-weight: 900; }
.group-chip-card strong,.group-chip-card small { display: block; }
.group-chip-card strong { overflow: hidden; font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.group-chip-card small { margin-top: 3px; color: var(--muted); font-size: .53rem; }
.group-chip-card button,.follow-button { min-height: 31px; border: 1px solid #b8dcd5; border-radius: 9px; padding: 5px 8px; background: var(--soft-teal); color: var(--teal); font-size: .55rem; font-weight: 850; }
.feed-tabs { grid-template-columns: repeat(4,minmax(88px,1fr)); overflow-x: auto; }
.feed-tabs button { flex: 0 0 auto; }
.feed-head .follow-button { margin-left: auto; }
.feed-actions button.primary-inline { background: var(--soft-coral); color: var(--coral); }
.feed-video { position: relative; width: min(100%,480px,calc(82vh * .5625)); min-height: 0; aspect-ratio: 9 / 16; overflow: hidden; margin-inline: auto; background: #0b1726; }
.feed-video video,.feed-video iframe { width: 100%; height: 100%; display: block; border: 0; object-fit: contain; background: #0b1726; }
.feed-video .destination-label { position: absolute; z-index: 2; left: 12px; top: auto; right: auto; bottom: 52px; width: auto; max-width: calc(100% - 24px); height: auto; min-height: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.reel-card { background: #0d1c2d; color: #fff; }
.reel-card .feed-head,.reel-card .feed-copy,.reel-card .feed-reason { background: #fff; color: var(--ink); }
.package-copy > p { display: -webkit-box; overflow: hidden; margin: 0 0 8px; color: var(--muted); font-size: .62rem; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.create-choice-grid button.is-selected { border-color: var(--coral); background: #fff8f3; box-shadow: 0 0 0 2px rgba(255,85,47,.09); }
.composer-type { width: fit-content; border-radius: 99px; padding: 6px 10px; background: var(--soft-coral); color: var(--coral); font-size: .61rem; font-weight: 900; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.create-form-card textarea,.create-form-card select,.sheet-form textarea,.sheet-form select,.sheet-form input,.inline-composer textarea { width: 100%; min-width: 0; border: 1px solid #ded8cf; border-radius: 12px; padding: 10px 11px; background: #fff; color: var(--ink); font: inherit; font-size: .7rem; outline: 0; resize: vertical; }
.create-form-card select,.sheet-form select { min-height: 44px; }
.gallery-picker { display: grid; gap: 9px; padding: 12px; border: 1px dashed #e3b28c; border-radius: 16px; background: #fff9f3; }
.gallery-picker-button { width: 100%; min-height: 86px; display: grid; grid-template-columns: 48px minmax(0,1fr) 34px; align-items: center; gap: 11px; border: 0; border-radius: 13px; padding: 12px; background: #fff; color: var(--ink); box-shadow: 0 5px 18px rgba(57,38,20,.06); text-align: left; }
.gallery-picker-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(145deg,var(--soft-coral),#fff0d9); color: var(--coral); font-size: 1.3rem; }
.gallery-picker-button strong,.gallery-picker-button small { display: block; }
.gallery-picker-button strong { font-size: .76rem; }
.gallery-picker-button small { margin-top: 4px; color: var(--muted); font-size: .59rem; line-height: 1.4; }
.gallery-picker-button b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: #fff; font-size: 1rem; }
.gallery-picker-types { display: flex; flex-wrap: wrap; gap: 6px; }
.gallery-picker-types span { border-radius: 99px; padding: 5px 8px; background: #fff; color: #566177; font-size: .53rem; font-weight: 750; }
.gallery-picker > small { color: var(--muted); font-size: .55rem; font-weight: 500; }
.media-preview { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.gallery-preview-item { position: relative; min-width: 0; overflow: hidden; aspect-ratio: 1; margin: 0; border: 1px solid var(--line); border-radius: 14px; background: #0d1c2d; }
.gallery-preview-item.video { grid-column: 1 / -1; aspect-ratio: 9 / 12; max-height: 520px; }
.gallery-preview-item img,.gallery-preview-item video { width: 100%; height: 100%; display: block; object-fit: cover; }
.gallery-preview-item > span { position: absolute; left: 7px; bottom: 7px; border-radius: 99px; padding: 4px 7px; background: rgba(6,18,32,.75); color: #fff; font-size: .49rem; font-weight: 800; }
.gallery-preview-item > button:not(.edit-reel-button) { position: absolute; right: 7px; top: 7px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: rgba(6,18,32,.78); color: #fff; font-size: 1rem; }
.edit-reel-button { position: absolute; right: 8px; bottom: 8px; min-height: 34px; border: 0; border-radius: 10px; padding: 6px 10px; background: var(--coral); color: #fff; font-size: .58rem; font-weight: 850; }
.consent-row { grid-template-columns: 20px 1fr !important; align-items: start; padding: 10px; border-radius: 12px; background: #f6f8f8; font-weight: 600 !important; line-height: 1.45; }
.consent-row input { width: 17px; min-height: 17px; margin-top: 1px; }
.consent-row a { color: var(--teal); }
.form-status { min-height: 18px; margin: 0; color: var(--teal); font-size: .62rem; font-weight: 700; line-height: 1.4; }
.trip-list { display: grid; gap: 11px; margin-top: 14px; }
.trip-booking-card { display: grid; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 24px rgba(33,42,58,.05); }
.trip-booking-card > div:first-child > small { color: var(--coral); font-size: .54rem; font-weight: 900; letter-spacing: .1em; }
.trip-booking-card h3 { margin: 4px 0; font-size: .94rem; }
.trip-booking-card p { margin: 0; color: var(--muted); font-size: .62rem; text-transform: capitalize; }
.trip-booking-meta { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; }
.trip-booking-meta span,.detail-facts span { min-width: 0; display: grid; gap: 3px; padding: 9px; border-radius: 11px; background: #f7f8f8; }
.trip-booking-meta b,.trip-booking-meta small,.detail-facts b,.detail-facts small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trip-booking-meta b,.detail-facts b { font-size: .63rem; }
.trip-booking-meta small,.detail-facts small { color: var(--muted); font-size: .51rem; }
.profile-hero { grid-template-columns: 88px minmax(0,1fr) auto; }
.profile-metrics { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin: 12px 0; }
.profile-metrics > span { display: grid; place-items: center; gap: 3px; min-height: 66px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: #fff; text-align: center; }
.profile-metrics strong { font-size: 1rem; }
.profile-metrics small { color: var(--muted); font-size: .54rem; }
.secondary-button,.danger-button { min-height: 43px; border-radius: 12px; padding: 9px 13px; cursor: pointer; font-size: .68rem; font-weight: 850; }
.secondary-button { border: 1px solid var(--line); background: #fff; color: var(--navy); }
.danger-button { border: 1px solid #f0b8b8; background: #fff1f1; color: #b42323; }
.legal-footer { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; padding: 22px 16px 90px; color: var(--muted); font-size: .6rem; }
.legal-footer a { color: inherit; }

.action-sheet { position: fixed; z-index: 65; right: 18px; top: 18px; bottom: 18px; width: min(560px,calc(100% - 36px)); display: grid; grid-template-rows: auto minmax(0,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fffdf9; box-shadow: 0 30px 90px rgba(12,24,41,.3); }
.action-sheet > header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.action-sheet > header p { margin: 0; color: var(--coral); font-size: .54rem; font-weight: 900; letter-spacing: .11em; }
.action-sheet > header h2 { margin: 3px 0 0; font-size: 1.18rem; }
.action-sheet > header button { width: 38px; height: 38px; border: 0; border-radius: 50%; background: #f2f0ed; color: var(--navy); font-size: 1.2rem; }
.action-sheet-body { min-height: 0; overflow-y: auto; padding: 18px; }
.detail-stack,.sheet-form,.connection-stack,.safety-settings,.chat-panel { display: grid; gap: 12px; }
.detail-stack h3 { margin: 0; font-size: 1.25rem; }
.detail-stack > p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.detail-hero { min-height: 220px; display: flex; align-items: end; overflow: hidden; border-radius: 18px; padding: 14px; background: center/cover; }
.detail-hero span { border-radius: 99px; padding: 6px 10px; background: rgba(7,22,37,.76); color: #fff; font-size: .6rem; font-weight: 850; }
.detail-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 7px; }
.sheet-form label { display: grid; gap: 6px; color: #39475e; font-size: .64rem; font-weight: 800; }
.sheet-form input { min-height: 44px; }
.safety-callout,.danger-callout,.status-receipt { padding: 13px; border: 1px solid #c5e0dc; border-radius: 14px; background: var(--soft-teal); }
.danger-callout { border-color: #f0b8b8; background: #fff2f2; }
.safety-callout p,.danger-callout p { margin: 5px 0 0; color: var(--muted); font-size: .65rem; line-height: 1.5; }
.status-receipt { display: flex; align-items: center; justify-content: space-between; gap: 10px; text-transform: capitalize; }
.status-receipt span { color: var(--teal); font-size: .7rem; font-weight: 900; }
.status-receipt small { color: var(--muted); font-size: .53rem; }
.comment-list,.notification-list,.people-list,.request-list,.compact-feed-list,.message-list { display: grid; gap: 9px; }
.comment-list article,.people-list article,.request-list article,.notification-list > button,.people-list > button { display: grid; grid-template-columns: 38px minmax(0,1fr) auto; align-items: start; gap: 9px; padding: 10px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink); text-align: left; }
.comment-list article > span,.people-list article > span,.request-list article > span,.notification-list > button > span,.people-list > button > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-teal); color: var(--teal); font-size: .61rem; font-weight: 900; }
.comment-list strong,.comment-list p,.comment-list small,.people-list strong,.people-list small,.request-list strong,.request-list p,.request-list small,.notification-list strong,.notification-list p,.notification-list small { display: block; margin: 0; }
.comment-list strong,.people-list strong,.request-list strong,.notification-list strong { font-size: .68rem; }
.comment-list p,.request-list p,.notification-list p { margin-top: 4px; color: #47546a; font-size: .65rem; line-height: 1.45; }
.comment-list small,.people-list small,.request-list small,.notification-list small { margin-top: 4px; color: var(--muted); font-size: .52rem; }
.notification-list > button.is-read { opacity: .68; }
.inline-composer { position: sticky; bottom: -18px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; padding: 11px 0 18px; background: #fffdf9; }
.inline-composer .form-status { grid-column: 1 / -1; }
.request-actions { display: grid; gap: 5px; }
.request-actions button,.people-list button { min-height: 31px; border: 1px solid var(--line); border-radius: 9px; padding: 5px 8px; background: #fff; color: var(--teal); font-size: .55rem; font-weight: 800; }
.message-list { min-height: 200px; align-content: end; }
.message-list p { width: fit-content; max-width: 82%; margin: 0; border-radius: 14px; padding: 9px 11px; font-size: .68rem; line-height: 1.45; }
.message-list .mine { justify-self: end; background: var(--teal); color: #fff; border-bottom-right-radius: 4px; }
.message-list .theirs { background: #eef1f3; color: var(--ink); border-bottom-left-radius: 4px; }
.toggle-setting { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.toggle-setting strong,.toggle-setting small { display: block; }
.toggle-setting strong { font-size: .7rem; }
.toggle-setting small { margin-top: 3px; color: var(--muted); font-size: .56rem; }
.toggle-setting input { width: 38px; height: 22px; accent-color: var(--teal); }
.blocked-list { display: grid; gap: 7px; }
.blocked-list h3 { margin: 6px 0 0; font-size: .83rem; }
.blocked-list > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 11px; border-radius: 11px; background: #f5f6f7; font-size: .65rem; }
.blocked-list button { border: 0; background: transparent; color: var(--coral); font-size: .59rem; font-weight: 800; }
.trip-tool-row { width: 100%; display: grid; gap: 4px; border: 1px solid var(--line); border-radius: 13px; padding: 12px; background: #fff; color: var(--ink); text-align: left; }
.trip-tool-row span { font-size: .72rem; font-weight: 800; }
.trip-tool-row small { color: var(--muted); font-size: .58rem; }
.reel-editor { display: grid; grid-template-columns: minmax(220px,.85fr) minmax(260px,1.15fr); gap: 16px; align-items: start; }
.reel-editor-stage { position: sticky; top: 0; overflow: hidden; aspect-ratio: 9 / 16; border-radius: 18px; background: #071321; }
.reel-editor-stage video { width: 100%; height: 100%; display: block; object-fit: contain; }
.reel-editor-stage > span { position: absolute; left: 8%; right: 8%; top: 50%; transform: translateY(-50%); color: #fff; font-size: clamp(1rem,4vw,1.8rem); font-weight: 900; line-height: 1.08; text-align: center; text-shadow: 0 2px 8px #000,0 0 2px #000; overflow-wrap: anywhere; }
.reel-editor-stage > span[data-position="top"] { top: 18%; }
.reel-editor-stage > span[data-position="bottom"] { top: 82%; }
.reel-editor-tools { display: grid; gap: 11px; }
.tool-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tool-heading strong { font-size: .78rem; }
.tool-heading small { color: var(--teal); font-size: .58rem; font-weight: 800; }
.reel-editor-tools label { display: grid; gap: 6px; color: #39475e; font-size: .62rem; font-weight: 800; }
.reel-editor-tools input:not([type="range"]):not([type="checkbox"]),.reel-editor-tools select { width: 100%; min-height: 41px; border: 1px solid var(--line); border-radius: 11px; padding: 8px 10px; background: #fff; color: var(--ink); }
.reel-editor-tools input[type="range"] { width: 100%; accent-color: var(--coral); }
.tool-grid { display: grid; grid-template-columns: minmax(0,1fr) 90px; gap: 8px; }
.reel-filters { padding: 0; }
.reel-filters button.is-active { border-color: var(--coral); background: var(--soft-coral); color: var(--coral); }

.crm-image-gallery-picker { display: grid; gap: 9px; }
.crm-image-gallery-panel { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 9px; max-height: 360px; overflow-y: auto; border: 1px solid var(--line); border-radius: 15px; padding: 10px; background: #fff; }
.crm-image-gallery-message { grid-column: 1 / -1; margin: 0; padding: 12px; color: var(--muted); font-size: .7rem; line-height: 1.5; }
.crm-image-gallery-message.is-error { color: #a5342d; }
.crm-image-gallery-card { overflow: hidden; display: grid; gap: 0; border: 1px solid var(--line); border-radius: 13px; padding: 0; background: var(--surface); color: var(--ink); text-align: left; cursor: pointer; }
.crm-image-gallery-card:hover,.crm-image-gallery-card:focus-visible { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(0,128,117,.1); }
.crm-image-gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #e7ecef; }
.crm-image-gallery-card span { display: grid; gap: 2px; padding: 8px; }
.crm-image-gallery-card b { overflow: hidden; font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.crm-image-gallery-card small { overflow: hidden; color: var(--muted); font-size: .56rem; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width:760px) {
  .action-sheet { left: 0; right: 0; top: auto; bottom: 0; width: 100%; max-height: 92vh; border-radius: 24px 24px 0 0; }
  .action-sheet-body { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
  .group-chip-card { min-width: 215px; }
  .profile-hero { grid-template-columns: 66px minmax(0,1fr) auto; padding: 14px; }
  .profile-photo { width: 66px; height: 66px; }
  .profile-hero .small-outline-button { align-self: start; }
  .feed-video { width: min(100%,calc(82vh * .5625)); min-height: 0; height: auto; aspect-ratio: 9 / 16; }
  .feed-video video,.feed-video iframe { min-height: 0; height: 100%; }
  .legal-footer { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .reel-editor { grid-template-columns: 1fr; }
  .reel-editor-stage { position: relative; width: min(280px,100%); margin: 0 auto; }
}
@media (max-width:440px) {
  .form-grid,.detail-facts { grid-template-columns: 1fr; }
  .profile-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trip-booking-meta { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .inline-composer { grid-template-columns: 1fr; }
  .comment-list article,.people-list article,.request-list article,.notification-list > button,.people-list > button { grid-template-columns: 34px minmax(0,1fr); }
  .comment-list article > span,.people-list article > span,.request-list article > span,.notification-list > button > span,.people-list > button > span { width: 34px; height: 34px; }
  .request-actions,.people-list article > button { grid-column: 2; }
}
.legal-page { min-height: 100vh; padding: 28px 16px; background: var(--cream); }
.legal-page main { width: min(760px,100%); margin: 0 auto; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.legal-page .brand { width: fit-content; margin-bottom: 34px; text-decoration: none; }
.legal-page .eyebrow { color: var(--coral); font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.legal-page h1 { margin: 7px 0 12px; font-size: clamp(1.8rem,5vw,3.2rem); line-height: 1.02; letter-spacing: -.05em; }
.legal-page .lead { color: var(--muted); font-size: .86rem; line-height: 1.65; }
.legal-page section { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.legal-page h2 { margin: 0 0 8px; font-size: 1rem; }
.legal-page p,.legal-page li { color: #47546a; font-size: .76rem; line-height: 1.7; }
.legal-page nav { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.legal-page nav a { border-radius: 9px; padding: 8px 10px; background: var(--soft-teal); color: var(--teal); font-size: .65rem; font-weight: 800; text-decoration: none; }
@media (max-width:520px) { .legal-page { padding: 0; } .legal-page main { min-height: 100vh; border: 0; border-radius: 0; padding: 22px 16px 40px; } }
.package-itinerary{display:grid;gap:8px}.package-itinerary h4{margin:0}.package-itinerary article{display:flex;gap:12px;align-items:flex-start;padding:10px 12px;border:1px solid var(--line);border-radius:14px;background:var(--surface)}.package-itinerary article b{flex:0 0 52px;color:var(--coral)}.package-itinerary article span{line-height:1.45}
.action-sheet.package-detail-sheet { top: 0; right: 0; bottom: 0; width: min(760px,100%); border-radius: 28px 0 0 28px; }
.package-detail-sheet > header { position: sticky; top: 0; z-index: 4; }
.package-detail-sheet .action-sheet-body { padding: 0; }
.package-detail-sheet .detail-stack { gap: 18px; padding-bottom: env(safe-area-inset-bottom); }
.package-detail-hero { min-height: 390px; display: flex; align-items: end; padding: 22px; background: center/cover no-repeat; position: relative; }
.package-detail-hero::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(5,18,32,.78)); }
.package-detail-hero > div { position: relative; z-index: 1; display: grid; gap: 7px; color: #fff; }
.package-detail-hero span { width: max-content; border-radius: 99px; padding: 7px 10px; background: var(--coral); font-size: .58rem; font-weight: 950; letter-spacing: .09em; }
.package-detail-hero small { font-size: .72rem; font-weight: 800; }
.package-detail-intro,.package-detail-sheet .detail-facts,.package-detail-section,.package-gallery-strip { margin-inline: 20px; }
.package-detail-intro { display: grid; gap: 7px; }
.package-detail-intro p { margin: 0; color: var(--coral); font-size: .56rem; font-weight: 950; letter-spacing: .11em; }
.package-detail-intro h3 { margin: 0; font-size: clamp(1.55rem,5vw,2.35rem); line-height: 1.05; letter-spacing: -.045em; }
.package-detail-intro > span { color: var(--muted); font-size: .76rem; line-height: 1.6; }
.package-gallery-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(120px,32%); gap: 9px; overflow-x: auto; scrollbar-width: none; }
.package-gallery-strip::-webkit-scrollbar { display: none; }
.package-gallery-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 14px; }
.package-detail-sheet .detail-facts { grid-template-columns: repeat(3,minmax(0,1fr)); }
.package-section-heading { display: grid; gap: 3px; }
.package-section-heading small,.package-inclusion-grid > div > small { color: var(--coral); font-size: .54rem; font-weight: 950; letter-spacing: .1em; }
.package-section-heading h4,.package-inclusion-grid h4 { margin: 0; font-size: 1.05rem; }
.package-itinerary details { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.package-itinerary summary { display: grid; grid-template-columns: 62px minmax(0,1fr); align-items: center; gap: 8px; padding: 13px; cursor: pointer; list-style: none; }
.package-itinerary summary::-webkit-details-marker { display: none; }
.package-itinerary summary b { color: var(--coral); font-size: .67rem; }
.package-itinerary summary span { font-size: .72rem; font-weight: 850; }
.package-itinerary details p { margin: 0; border-top: 1px solid var(--line); padding: 12px 14px 14px 83px; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.package-inclusion-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.package-inclusion-grid > div { border: 1px solid var(--line); border-radius: 16px; padding: 14px; background: #fff; }
.package-inclusion-grid ul { display: grid; gap: 7px; margin: 11px 0 0; padding-left: 17px; color: var(--muted); font-size: .66rem; line-height: 1.45; }
.package-booking-section { display: grid; gap: 12px; padding-bottom: 12px; }
.departure-picker { display: grid; gap: 8px; margin: 0; border: 0; padding: 0; }
.departure-picker legend { margin-bottom: 7px; color: #39475e; font-size: .64rem; font-weight: 850; }
.departure-picker > label { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 15px; padding: 12px; background: #fff; cursor: pointer; }
.departure-picker > label:has(input:checked) { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(0,128,117,.1); }
.departure-picker input { width: 18px; min-height: 18px; accent-color: var(--teal); }
.departure-picker label span,.departure-picker label strong { display: grid; gap: 2px; }
.departure-picker label strong { text-align: right; }
.departure-picker label small { color: var(--muted); font-size: .56rem; font-weight: 700; }
.sold-out-callout { display: grid; gap: 3px; border: 1px dashed #e0a28f; border-radius: 15px; padding: 14px; background: var(--soft-coral); }
.sold-out-callout span { color: var(--muted); font-size: .65rem; }
.package-sticky-action { position: sticky; bottom: 0; z-index: 3; display: grid; grid-template-columns: minmax(100px,.7fr) minmax(160px,1.3fr); align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 17px; padding: 10px; background: rgba(255,255,255,.96); box-shadow: 0 -10px 28px rgba(13,26,44,.1); backdrop-filter: blur(12px); }
.package-sticky-action > div { display: grid; padding-left: 5px; }
.package-sticky-action small { color: var(--muted); font-size: .55rem; }
.package-sticky-action b { font-size: .82rem; }
.package-sticky-action button { margin: 0; min-height: 48px; }
.payment-receipt { display: grid; gap: 4px; border: 1px solid #efc5b8; border-radius: 16px; padding: 14px; background: var(--soft-coral); }
.payment-receipt.is-paid { border-color: #a9ddd6; background: #eefaf8; }
.payment-receipt small { color: var(--coral); font-size: .54rem; font-weight: 950; letter-spacing: .1em; }
.payment-receipt.is-paid small { color: var(--teal); }
.payment-receipt strong { font-size: .9rem; }
.payment-receipt span { color: var(--muted); font-size: .64rem; }
@media (max-width:620px) {
  .action-sheet.package-detail-sheet { left: 0; top: 0; max-height: 100dvh; border-radius: 0; }
  .package-detail-hero { min-height: 330px; }
  .package-detail-intro,.package-detail-sheet .detail-facts,.package-detail-section,.package-gallery-strip { margin-inline: 14px; }
  .package-inclusion-grid { grid-template-columns: 1fr; }
  .package-itinerary details p { padding-left: 14px; }
}
