/* TND Agent & Travel Package Manager — frontend */
.tnd-atm {
	--tnd-primary: var(--heading-color, var(--tnd-blue-deep, var(--e-global-color-primary, #113a74)));
	--tnd-secondary: var(--tnd-blue, var(--e-global-color-secondary, #39516d));
	--tnd-accent: var(--main-color-one, var(--tnd-gold, var(--e-global-color-accent, #ffc861)));
	--tnd-text: var(--paragraph-color, var(--tnd-copy, var(--e-global-color-text, #39516d)));
	--tnd-muted: #6e7d90;
	--tnd-surface: #fff;
	--tnd-soft: #f5f7fa;
	--tnd-border: #dfe5ec;
	--tnd-success: #16865b;
	--tnd-warning: #b56a00;
	--tnd-error: #b42318;
	--tnd-shadow: 0 18px 55px rgba(17, 58, 116, .11);
	--tnd-radius: 18px;
	color: var(--tnd-text);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.65;
}
.tnd-atm *, .tnd-atm *::before, .tnd-atm *::after { box-sizing: border-box; }
.tnd-atm a { color: var(--tnd-primary); text-decoration: none; }
.tnd-atm a:hover { color: var(--tnd-accent); }
.tnd-atm h1, .tnd-atm h2, .tnd-atm h3, .tnd-atm h4 { color: var(--tnd-primary); line-height: 1.18; margin-top: 0; }
.tnd-atm p { margin-top: 0; }
.tnd-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.tnd-eyebrow { color: var(--tnd-accent); display: block; font-size: .75rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 9px; text-transform: uppercase; }
.tnd-panel { background: var(--tnd-surface); border: 1px solid var(--tnd-border); border-radius: var(--tnd-radius); box-shadow: var(--tnd-shadow); padding: clamp(24px, 4vw, 42px); }
.tnd-centered { margin: 40px auto; max-width: 720px; text-align: center; }
.tnd-hp { height: 0 !important; left: -99999px !important; opacity: 0 !important; overflow: hidden !important; pointer-events: none !important; position: absolute !important; width: 0 !important; }

/* Buttons and notices */
.tnd-atm .tnd-btn {
	align-items: center; appearance: none; background: var(--tnd-primary); border: 1px solid var(--tnd-primary); border-radius: 999px; color: #fff; cursor: pointer; display: inline-flex; font: inherit; font-size: .92rem; font-weight: 750; gap: 8px; justify-content: center; line-height: 1.2; min-height: 48px; padding: 13px 23px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tnd-atm .tnd-btn:hover, .tnd-atm .tnd-btn:focus { background: color-mix(in srgb, var(--tnd-primary) 88%, #000); box-shadow: 0 10px 28px rgba(17, 58, 116, .2); color: #fff; transform: translateY(-1px); }
.tnd-atm .tnd-btn:focus-visible, .tnd-atm input:focus-visible, .tnd-atm select:focus-visible, .tnd-atm textarea:focus-visible, .tnd-atm summary:focus-visible { outline: 3px solid color-mix(in srgb, var(--tnd-accent) 45%, transparent); outline-offset: 2px; }
.tnd-atm .tnd-btn-small { font-size: .84rem; min-height: 38px; padding: 9px 16px; }
.tnd-atm .tnd-btn-block { display: flex; width: 100%; }
.tnd-atm .tnd-btn-ghost { background: transparent; color: var(--tnd-primary); }
.tnd-atm .tnd-btn-ghost:hover { background: var(--tnd-primary); color: #fff; }
.tnd-notice { border: 1px solid; border-radius: 12px; margin-bottom: 20px; padding: 13px 16px; }
.tnd-notice-success { background: #ecfdf5; border-color: #a7e8cc; color: #126a49; }
.tnd-notice-error { background: #fff1f0; border-color: #f3bbb6; color: var(--tnd-error); }
.tnd-notice-warning { background: #fff8e8; border-color: #f1d393; color: #8b5400; }
.tnd-notice-info { background: #eef6ff; border-color: #bad7f5; color: #174f86; }
.tnd-status { background: #eef2f7; border-radius: 99px; color: #516172; display: inline-flex; font-size: .72rem; font-weight: 800; letter-spacing: .04em; line-height: 1; padding: 8px 11px; text-transform: uppercase; }
.tnd-status-approved, .tnd-status-publish { background: #e7f8f1; color: var(--tnd-success); }
.tnd-status-pending, .tnd-status-pending_admin, .tnd-status-pending_email { background: #fff3d8; color: #8b5700; }
.tnd-status-rejected, .tnd-status-suspended { background: #ffeceb; color: var(--tnd-error); }
.tnd-status-new { background: #edf4ff; color: #175da6; }

/* Forms */
.tnd-form fieldset { border: 0; margin: 0 0 28px; padding: 0; }
.tnd-form legend, .tnd-form-section h4 { border-bottom: 1px solid var(--tnd-border); color: var(--tnd-primary); display: block; font-size: 1.08rem; font-weight: 800; margin-bottom: 18px; padding-bottom: 11px; width: 100%; }
.tnd-form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tnd-form-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tnd-field { display: flex; flex-direction: column; gap: 7px; margin: 0; min-width: 0; }
.tnd-field > span { color: var(--tnd-primary); font-size: .85rem; font-weight: 750; }
.tnd-field em { color: var(--tnd-error); font-style: normal; }
.tnd-field small, .tnd-help { color: var(--tnd-muted); display: block; font-size: .77rem; line-height: 1.4; }
.tnd-field-full { grid-column: 1 / -1; }
.tnd-atm input:not([type="checkbox"]):not([type="radio"]):not([type="file"]), .tnd-atm select, .tnd-atm textarea {
	appearance: none; background: #fff; border: 1px solid var(--tnd-border); border-radius: 11px; color: var(--tnd-text); font: inherit; font-size: .94rem; line-height: 1.4; margin: 0; min-height: 48px; padding: 12px 14px; width: 100%;
}
.tnd-atm textarea { min-height: 96px; resize: vertical; }
.tnd-atm input[readonly] { background: var(--tnd-soft); color: var(--tnd-muted); }
.tnd-atm input[type="file"] { border: 1px dashed var(--tnd-border); border-radius: 11px; font: inherit; font-size: .85rem; padding: 12px; width: 100%; }
.tnd-atm input[type="file"]::file-selector-button { background: var(--tnd-soft); border: 0; border-radius: 7px; color: var(--tnd-primary); cursor: pointer; font-weight: 700; margin-right: 10px; padding: 8px 12px; }
.tnd-check { align-items: flex-start; color: var(--tnd-text); cursor: pointer; display: flex; font-size: .85rem; gap: 9px; line-height: 1.45; }
.tnd-check input { accent-color: var(--tnd-primary); flex: 0 0 auto; height: 17px; margin: 2px 0 0; width: 17px; }
.tnd-choice-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tnd-choice { cursor: pointer; display: block; position: relative; }
.tnd-choice input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.tnd-choice span { border: 1px solid var(--tnd-border); border-radius: 12px; display: flex; flex-direction: column; padding: 15px 17px; transition: .2s ease; }
.tnd-choice small { color: var(--tnd-muted); }
.tnd-choice input:checked + span { background: color-mix(in srgb, var(--tnd-primary) 5%, #fff); border-color: var(--tnd-primary); box-shadow: inset 0 0 0 1px var(--tnd-primary); }
.tnd-form-row { align-items: center; display: flex; justify-content: space-between; margin: 16px 0 20px; }
.tnd-form-foot { color: var(--tnd-muted); font-size: .86rem; margin: 18px 0 0; text-align: center; }
.tnd-form-section { border-bottom: 1px solid var(--tnd-border); margin-bottom: 30px; padding-bottom: 30px; }
.tnd-submit-bar { align-items: center; background: var(--tnd-soft); border-radius: 14px; display: flex; gap: 20px; justify-content: space-between; padding: 17px 20px; }
.tnd-submit-bar p { color: var(--tnd-muted); font-size: .85rem; margin: 0; }

/* Login / registration */
.tnd-auth-shell { align-items: start; display: grid; gap: clamp(28px, 5vw, 70px); grid-template-columns: minmax(250px, .7fr) minmax(520px, 1.3fr); margin: 50px auto; max-width: 1180px; padding: 0 20px; }
.tnd-auth-intro { padding: clamp(20px, 5vw, 70px) 0; position: sticky; top: 30px; }
.tnd-auth-intro h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 18px; }
.tnd-auth-intro p { color: var(--tnd-muted); font-size: 1.05rem; }
.tnd-steps { display: grid; gap: 14px; list-style: none; margin: 28px 0 0; padding: 0; }
.tnd-steps li { align-items: center; display: flex; font-weight: 700; gap: 12px; }
.tnd-steps span { align-items: center; background: var(--tnd-primary); border-radius: 50%; color: #fff; display: inline-flex; font-size: .8rem; height: 30px; justify-content: center; width: 30px; }
.tnd-auth-panel { padding: clamp(24px, 4vw, 44px); }
.tnd-auth-panel fieldset:not(:first-of-type) { margin-top: 30px; }
.tnd-login-shell { grid-template-columns: minmax(280px, .8fr) minmax(380px, 1fr); max-width: 960px; }
.tnd-login-shell .tnd-auth-panel { align-self: center; }
.tnd-resend { border-top: 1px solid var(--tnd-border); margin-top: 26px; padding-top: 18px; }
.tnd-resend summary { color: var(--tnd-primary); cursor: pointer; font-size: .86rem; font-weight: 750; }
.tnd-inline-form { align-items: end; display: grid; gap: 12px; grid-template-columns: 1fr auto; margin-top: 15px; }
.tnd-approval-panel { margin: 60px auto; max-width: 720px; text-align: center; }
.tnd-profile-summary { background: var(--tnd-soft); border-radius: 14px; display: flex; flex-direction: column; margin: 24px auto; max-width: 440px; padding: 18px; }

/* Agent dashboard */
.tnd-dashboard { background: #f4f6f9; border: 1px solid var(--tnd-border); border-radius: 22px; margin: 40px auto; max-width: 1240px; overflow: hidden; }
.tnd-dashboard-head { align-items: center; background: linear-gradient(135deg, var(--tnd-primary), color-mix(in srgb, var(--tnd-primary) 72%, #000)); color: #fff; display: flex; justify-content: space-between; padding: clamp(24px, 4vw, 42px); }
.tnd-dashboard-head h2, .tnd-dashboard-head p { color: #fff; margin-bottom: 3px; }
.tnd-dashboard-head .tnd-eyebrow { color: color-mix(in srgb, var(--tnd-accent) 82%, #fff); }
.tnd-head-actions { align-items: center; display: flex; gap: 12px; }
.tnd-dashboard-head .tnd-btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.tnd-dashboard-nav { background: #fff; border-bottom: 1px solid var(--tnd-border); display: flex; gap: 4px; overflow-x: auto; padding: 0 clamp(15px, 4vw, 38px); }
.tnd-dashboard-nav a { border-bottom: 3px solid transparent; color: var(--tnd-muted); flex: 0 0 auto; font-size: .86rem; font-weight: 750; padding: 18px 15px 15px; }
.tnd-dashboard-nav a.is-active { border-color: var(--tnd-accent); color: var(--tnd-primary); }
.tnd-dashboard-content { min-height: 480px; padding: clamp(22px, 4vw, 40px); }
.tnd-stat-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 24px; }
.tnd-stat { background: #fff; border: 1px solid var(--tnd-border); border-radius: 15px; display: flex; flex-direction: column-reverse; padding: 20px; }
.tnd-stat span { color: var(--tnd-muted); font-size: .79rem; font-weight: 700; }
.tnd-stat strong { color: var(--tnd-primary); font-size: 2rem; line-height: 1.1; margin-bottom: 8px; }
.tnd-welcome-card { align-items: center; display: flex; justify-content: space-between; }
.tnd-welcome-card > div { max-width: 720px; }
.tnd-section-head { align-items: end; display: flex; justify-content: space-between; margin-bottom: 23px; }
.tnd-section-head h3 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-bottom: 0; }
.tnd-table-wrap { background: #fff; border: 1px solid var(--tnd-border); border-radius: 14px; overflow-x: auto; }
.tnd-table { border-collapse: collapse; min-width: 820px; width: 100%; }
.tnd-table th, .tnd-table td { border-bottom: 1px solid var(--tnd-border); padding: 14px 16px; text-align: left; vertical-align: middle; }
.tnd-table th { color: var(--tnd-muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.tnd-table tbody tr:last-child td { border-bottom: 0; }
.tnd-package-cell { align-items: center; display: flex; gap: 12px; }
.tnd-package-cell small { color: var(--tnd-muted); display: block; }
.tnd-table-thumb, .tnd-table-thumb img { border-radius: 9px; height: 52px; object-fit: cover; width: 66px; }
.tnd-row-actions { display: flex; font-size: .8rem; gap: 11px; }
.tnd-row-actions .tnd-danger { color: var(--tnd-error); }
.tnd-empty { background: #fff; border: 1px dashed #cbd4df; border-radius: 16px; padding: 45px 24px; text-align: center; }
.tnd-package-form { background: #fff; border: 1px solid var(--tnd-border); border-radius: 16px; padding: clamp(20px, 4vw, 36px); }
.tnd-current-image { display: block; margin-top: 8px; }
.tnd-current-image img { border-radius: 9px; height: 72px; object-fit: cover; width: 92px; }
.tnd-gallery-manager { display: grid; gap: 12px; grid-template-columns: repeat(6, 1fr); }
.tnd-gallery-manager label { background: var(--tnd-soft); border-radius: 10px; overflow: hidden; padding-bottom: 6px; text-align: center; }
.tnd-gallery-manager img { height: 90px; object-fit: cover; width: 100%; }
.tnd-gallery-manager span { display: block; font-size: .73rem; }
.tnd-enquiry-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tnd-enquiry-card { background: #fff; border: 1px solid var(--tnd-border); border-radius: 15px; padding: 20px; }
.tnd-enquiry-top { align-items: center; display: flex; justify-content: space-between; }
.tnd-enquiry-top time { color: var(--tnd-muted); font-size: .77rem; }
.tnd-enquiry-card h4 { margin: 15px 0 5px; }
.tnd-enquiry-card dl { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.tnd-enquiry-card dl div { display: flex; flex-direction: column; }
.tnd-enquiry-card dt { color: var(--tnd-muted); font-size: .7rem; text-transform: uppercase; }
.tnd-enquiry-card dd { margin: 0; }
.tnd-enquiry-message { background: var(--tnd-soft); border-radius: 9px; font-size: .84rem; margin: 12px 0 0; padding: 10px 12px; }

/* Package directory */
.tnd-package-directory { margin: 42px auto; width: min(1200px, calc(100% - 32px)); }
.tnd-search-panel { align-items: end; background: #fff; border: 1px solid var(--tnd-border); border-radius: var(--tnd-radius); box-shadow: var(--tnd-shadow); display: grid; gap: 12px; grid-template-columns: 1.35fr repeat(3, 1fr) auto; margin-bottom: 42px; padding: 18px; }
.tnd-search-field { min-width: 0; }
.tnd-search-field label { color: var(--tnd-primary); display: block; font-size: .72rem; font-weight: 800; margin: 0 0 5px 3px; text-transform: uppercase; }
.tnd-search-panel .tnd-btn { min-width: 100px; }
.tnd-directory-head { align-items: end; display: flex; justify-content: space-between; margin-bottom: 24px; }
.tnd-directory-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.tnd-directory-head > p { color: var(--tnd-muted); margin: 0; }
.tnd-package-grid { display: grid; gap: 24px; grid-template-columns: repeat(var(--tnd-columns, 3), minmax(0, 1fr)); }
.tnd-package-card { background: #fff; border: 1px solid var(--tnd-border); border-radius: 17px; box-shadow: 0 10px 35px rgba(17,58,116,.07); display: flex; flex-direction: column; min-width: 0; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.tnd-package-card:hover { box-shadow: 0 18px 45px rgba(17,58,116,.14); transform: translateY(-4px); }
.tnd-package-image { aspect-ratio: 1.55; background: var(--tnd-soft); display: block; overflow: hidden; position: relative; }
.tnd-package-image img { height: 100%; object-fit: cover; transition: transform .45s ease; width: 100%; }
.tnd-package-card:hover .tnd-package-image img { transform: scale(1.04); }
.tnd-image-placeholder { background: linear-gradient(135deg, color-mix(in srgb, var(--tnd-primary) 88%, #fff), color-mix(in srgb, var(--tnd-accent) 65%, var(--tnd-primary))); display: block; height: 100%; min-height: 220px; width: 100%; }
.tnd-card-badge { background: var(--tnd-accent); border-radius: 99px; color: #fff; display: inline-block; font-size: .7rem; font-weight: 800; left: 15px; letter-spacing: .04em; padding: 7px 11px; position: absolute; text-transform: uppercase; top: 15px; }
.tnd-package-card-body { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.tnd-card-location { color: var(--tnd-accent); font-size: .75rem; font-weight: 800; letter-spacing: .04em; overflow: hidden; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.tnd-card-location span { font-size: .55rem; margin-right: 7px; }
.tnd-package-card h3 { font-size: 1.35rem; margin: 8px 0 9px; }
.tnd-package-card h3 a { color: inherit; }
.tnd-package-card-body > p { color: var(--tnd-muted); display: -webkit-box; font-size: .86rem; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 14px; overflow: hidden; }
.tnd-card-meta { border-top: 1px solid var(--tnd-border); color: var(--tnd-muted); font-size: .78rem; margin-top: auto; padding-top: 12px; }
.tnd-card-footer { align-items: end; display: flex; justify-content: space-between; margin-top: 14px; }
.tnd-price { align-items: baseline; display: flex; flex-wrap: wrap; gap: 5px; }
.tnd-price del { color: var(--tnd-muted); font-size: .72rem; width: 100%; }
.tnd-price strong { color: var(--tnd-primary); font-size: 1.25rem; }
.tnd-price small { color: var(--tnd-muted); font-size: .67rem; }
.tnd-card-actions { align-items: center; display: flex; gap: 7px; }
.tnd-icon-btn { align-items: center; border: 1px solid var(--tnd-border); border-radius: 50%; display: inline-flex; height: 38px; justify-content: center; width: 38px; }
.tnd-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 34px; }
.tnd-pagination a { align-items: center; border: 1px solid var(--tnd-border); border-radius: 50%; display: inline-flex; height: 42px; justify-content: center; width: 42px; }
.tnd-pagination a.is-current { background: var(--tnd-primary); border-color: var(--tnd-primary); color: #fff; }

/* Single package */
.tnd-package-page { background: #fff; }
.tnd-package-hero { color: #fff; min-height: min(600px, 65vh); overflow: hidden; position: relative; }
.tnd-package-hero-media, .tnd-package-hero-media img, .tnd-hero-overlay { height: 100%; inset: 0; position: absolute; width: 100%; }
.tnd-package-hero-media img { object-fit: cover; }
.tnd-hero-overlay { background: linear-gradient(90deg, rgba(7, 30, 60, .9), rgba(7, 30, 60, .32)); }
.tnd-package-hero-content { align-items: end; display: flex; min-height: min(600px, 65vh); padding: 100px 0 72px; position: relative; z-index: 1; }
.tnd-package-hero-content .tnd-container { margin-inline: auto; }
.tnd-package-hero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 5.2rem); margin: 8px 0 16px; max-width: 900px; }
.tnd-package-hero p { color: rgba(255,255,255,.88); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 720px; }
.tnd-hero-kicker { font-size: .8rem; font-weight: 800; letter-spacing: .14em; margin-top: 25px; text-transform: uppercase; }
.tnd-package-hero .tnd-card-badge { left: auto; position: static; top: auto; }
.tnd-breadcrumb { align-items: center; display: flex; font-size: .8rem; gap: 9px; }
.tnd-breadcrumb a { color: rgba(255,255,255,.84); }
.tnd-package-layout { align-items: start; display: grid; gap: clamp(30px, 5vw, 70px); grid-template-columns: minmax(0, 1fr) 360px; padding-bottom: 80px; padding-top: 46px; }
.tnd-trip-facts { background: var(--tnd-primary); border-radius: 18px; color: #fff; display: grid; gap: 1px; grid-template-columns: repeat(4, 1fr); margin-top: -85px; overflow: hidden; position: relative; z-index: 2; }
.tnd-trip-facts div { background: rgba(255,255,255,.05); display: flex; flex-direction: column; padding: 22px 18px; }
.tnd-trip-facts span { color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.tnd-trip-facts strong { font-size: .9rem; }
.tnd-content-section { border-bottom: 1px solid var(--tnd-border); padding: 38px 0; }
.tnd-content-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.tnd-prose { color: var(--tnd-text); }
.tnd-prose > *:last-child { margin-bottom: 0; }
.tnd-package-gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.tnd-package-gallery a { border-radius: 13px; display: block; overflow: hidden; }
.tnd-package-gallery img { aspect-ratio: 1.5; height: 100%; object-fit: cover; width: 100%; }
.tnd-package-gallery a:first-child:nth-last-child(3), .tnd-package-gallery a:first-child:nth-last-child(5) { grid-row: span 2; }
.tnd-inclusion-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.tnd-inclusion { background: var(--tnd-soft); border-radius: 14px; padding: 20px; }
.tnd-inclusion h3 { font-size: 1.15rem; }
.tnd-inclusion ul { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }
.tnd-inclusion li { display: flex; gap: 9px; }
.tnd-included li span { color: var(--tnd-success); font-weight: 900; }
.tnd-excluded li span { color: var(--tnd-error); font-weight: 900; }
.tnd-itinerary { border-left: 3px solid var(--tnd-accent); padding-left: 22px; }
.tnd-date-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.tnd-date-chips span { background: var(--tnd-soft); border: 1px solid var(--tnd-border); border-radius: 99px; font-size: .82rem; padding: 8px 13px; }
.tnd-terms { border: 1px solid var(--tnd-border); border-radius: 14px; margin-top: 34px; padding: 16px 19px; }
.tnd-terms summary { color: var(--tnd-primary); cursor: pointer; font-weight: 800; }
.tnd-terms .tnd-prose { border-top: 1px solid var(--tnd-border); margin-top: 14px; padding-top: 14px; }
.tnd-booking-sidebar { display: grid; gap: 20px; position: sticky; top: 25px; }
.tnd-booking-card { background: #fff; border: 1px solid var(--tnd-border); border-radius: 18px; box-shadow: var(--tnd-shadow); padding: 24px; }
.tnd-booking-price { align-items: baseline; border-bottom: 1px solid var(--tnd-border); display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; padding-bottom: 17px; }
.tnd-booking-price > span { color: var(--tnd-muted); font-size: .75rem; width: 100%; }
.tnd-booking-price del { color: var(--tnd-muted); font-size: .8rem; }
.tnd-booking-price strong { color: var(--tnd-primary); font-size: 2rem; line-height: 1; }
.tnd-booking-price small { color: var(--tnd-muted); }
.tnd-call-btn { margin-bottom: 9px; }
.tnd-atm .tnd-whatsapp-btn { background: #168f55; border-color: #168f55; }
.tnd-or { align-items: center; color: var(--tnd-muted); display: flex; font-size: .72rem; gap: 9px; margin: 17px 0; text-transform: uppercase; }
.tnd-or::before, .tnd-or::after { background: var(--tnd-border); content: ""; flex: 1; height: 1px; }
.tnd-booking-form { display: grid; gap: 13px; }
.tnd-booking-form .tnd-form-grid { gap: 10px; }
.tnd-privacy-note { color: var(--tnd-muted); font-size: .7rem; line-height: 1.4; margin: 0; text-align: center; }
.tnd-agent-card { background: var(--tnd-soft); border: 1px solid var(--tnd-border); border-radius: 16px; padding: 21px; }
.tnd-agent-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

@media (max-width: 1024px) {
	.tnd-auth-shell { grid-template-columns: 1fr; }
	.tnd-auth-intro { padding: 10px 0 0; position: static; }
	.tnd-steps { grid-template-columns: repeat(3, 1fr); }
	.tnd-search-panel { grid-template-columns: repeat(2, 1fr); }
	.tnd-search-panel .tnd-btn { width: 100%; }
	.tnd-package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tnd-package-layout { grid-template-columns: minmax(0, 1fr) 330px; }
	.tnd-trip-facts { grid-template-columns: repeat(2, 1fr); }
	.tnd-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tnd-gallery-manager { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
	.tnd-atm { font-size: 15px; }
	.tnd-container { width: min(100% - 28px, 1180px); }
	.tnd-panel { padding: 22px; }
	.tnd-form-grid, .tnd-form-grid-3, .tnd-choice-grid, .tnd-inline-form { grid-template-columns: 1fr; }
	.tnd-field-full { grid-column: auto; }
	.tnd-auth-shell { margin: 28px auto; padding: 0 14px; }
	.tnd-auth-intro h2 { font-size: 2.25rem; }
	.tnd-steps { grid-template-columns: 1fr; }
	.tnd-form-row, .tnd-submit-bar, .tnd-welcome-card, .tnd-dashboard-head, .tnd-section-head, .tnd-directory-head { align-items: stretch; flex-direction: column; }
	.tnd-dashboard-head, .tnd-dashboard-content { padding: 21px; }
	.tnd-head-actions { margin-top: 18px; }
	.tnd-dashboard-nav { padding-inline: 7px; }
	.tnd-stat-grid { grid-template-columns: repeat(2, 1fr); }
	.tnd-stat { padding: 15px; }
	.tnd-enquiry-grid { grid-template-columns: 1fr; }
	.tnd-enquiry-card dl { grid-template-columns: 1fr 1fr; }
	.tnd-gallery-manager { grid-template-columns: repeat(3, 1fr); }
	.tnd-search-panel { grid-template-columns: 1fr; }
	.tnd-directory-head > p { margin-top: 8px; }
	.tnd-package-grid { grid-template-columns: 1fr; }
	.tnd-package-hero, .tnd-package-hero-content { min-height: 520px; }
	.tnd-package-hero-content { padding-bottom: 50px; }
	.tnd-package-layout { display: block; padding-top: 0; }
	.tnd-trip-facts { margin: -30px 0 25px; }
	.tnd-booking-sidebar { margin-top: 35px; position: static; }
	.tnd-inclusion-grid { grid-template-columns: 1fr; }
	.tnd-package-gallery { grid-template-columns: 1fr; }
	.tnd-package-gallery a { grid-row: auto !important; }
}

@media (max-width: 420px) {
	.tnd-stat-grid, .tnd-trip-facts { grid-template-columns: 1fr; }
	.tnd-card-footer { align-items: stretch; flex-direction: column; gap: 13px; }
	.tnd-card-actions .tnd-btn { flex: 1; }
	.tnd-gallery-manager { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
	.tnd-atm *, .tnd-atm *::before, .tnd-atm *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
