/* ==========================================================================
   De Paseo Tours — Frontend styles (v1.1 redesign)
   Brand colors injected as CSS variables from settings:
   --dpt-primary, --dpt-secondary, --dpt-button, --dpt-check
   --dpt-header-h is set at runtime (height of any sticky theme header).
   ========================================================================== */

:root {
	--dpt-primary: #0f2e4d;
	--dpt-secondary: #19b6c9;
	--dpt-button: #f47b20;
	--dpt-check: #2e9e5b;
	--dpt-bg: #ffffff;
	--dpt-bg-soft: #f5f8fb;
	--dpt-bg-beige: #fbf7f1;
	--dpt-border: #e7ecf2;
	--dpt-text: #3a4658;
	--dpt-muted: #6b7891;
	--dpt-radius: 14px;
	--dpt-radius-sm: 10px;
	--dpt-shadow: 0 12px 34px rgba(15, 46, 77, .10);
	--dpt-shadow-sm: 0 4px 14px rgba(15, 46, 77, .06);
	--dpt-header-h: 0px;
	--dpt-adminbar: 0px;
	--dpt-wa: #25d366;
	--dpt-wa-dark: #128c7e;
}

/* Offset for the logged-in WordPress admin bar (invisible to real visitors). */
body.admin-bar { --dpt-adminbar: 32px; }
@media screen and (max-width: 782px) { body.admin-bar { --dpt-adminbar: 46px; } }
body.admin-bar .dpt-quote-modal { padding-top: calc(20px + var(--dpt-adminbar)); }

.dpt-single,
.dpt-archive,
.dpt-listing,
.dpt-search {
	color: var(--dpt-text);
	font-size: 14px;
	line-height: 1.65;
}
.dpt-rich, .dpt-rich p { font-size: 14px; }
.dpt-single :where(h1,h2,h3){ letter-spacing: -.01em; }
.dpt-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
/* Consistent pill shape + reset any theme <button> overrides via specificity + !important. */
.dpt-single .dpt-btn, .dpt-archive .dpt-btn, .dpt-listing .dpt-btn, .dpt-search .dpt-btn,
.dpt-quote-modal .dpt-btn, .dpt-cta-final .dpt-btn, .dpt-mobilebar .dpt-btn, .dpt-subnav .dpt-btn,
button.dpt-btn, a.dpt-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: 999px !important; font-weight: 700; font-size: 15px;
	line-height: 1; text-decoration: none; border: 2px solid transparent; cursor: pointer;
	font-family: inherit; text-transform: none; letter-spacing: 0;
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease;
}
.dpt-btn:hover { transform: translateY(-2px); }
.dpt-btn:active { transform: translateY(0); }
.dpt-btn .dashicons { font-size: 18px; width: 18px; height: 18px; }
.dpt-btn-primary, button.dpt-btn-primary { background: linear-gradient(135deg, #ff9243, var(--dpt-button)) !important; color: #fff !important; box-shadow: 0 10px 22px rgba(244, 123, 32, .34); border-color: transparent !important; }
.dpt-btn-primary:hover { color: #fff !important; box-shadow: 0 14px 28px rgba(244, 123, 32, .42); filter: saturate(1.05); }
.dpt-btn-ghost { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.75); color: #fff; backdrop-filter: blur(3px); }
.dpt-btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.dpt-btn-whatsapp, button.dpt-btn-whatsapp { background: linear-gradient(135deg, var(--dpt-wa), var(--dpt-wa-dark)) !important; color: #fff !important; box-shadow: 0 10px 22px rgba(37, 211, 102, .34); border-color: transparent !important; }
.dpt-btn-whatsapp:hover { color: #fff !important; box-shadow: 0 14px 28px rgba(37, 211, 102, .42); }

/* Glow + shine sweep on the main "Reservar por WhatsApp" button. */
@keyframes dptWaGlow { 0%, 100% { box-shadow: 0 10px 22px rgba(37,211,102,.34); } 50% { box-shadow: 0 10px 32px rgba(37,211,102,.75), 0 0 0 4px rgba(37,211,102,.16); } }
@keyframes dptShine { 0% { left: -130%; } 45%, 100% { left: 140%; } }
.dpt-quote-actions .dpt-btn-whatsapp { position: relative; overflow: hidden; animation: dptWaGlow 2.2s ease-in-out infinite; }
.dpt-quote-actions .dpt-btn-whatsapp::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-20deg); animation: dptShine 3.2s ease-in-out infinite; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .dpt-quote-actions .dpt-btn-whatsapp { animation: none; } .dpt-quote-actions .dpt-btn-whatsapp::after { display: none; } }
.dpt-btn-download { background: #fff; border-color: var(--dpt-border); color: var(--dpt-primary); box-shadow: var(--dpt-shadow-sm); }
.dpt-btn-download:hover { border-color: var(--dpt-button); color: var(--dpt-button); }
.dpt-btn-sm { padding: 9px 16px; font-size: 13px; }

/* Ghost button on light contexts */
.dpt-search .dpt-btn-ghost, .dpt-main .dpt-btn-ghost, .dpt-card .dpt-btn-ghost {
	background: #fff; border-color: var(--dpt-border); color: var(--dpt-primary); backdrop-filter: none;
}
.dpt-search .dpt-btn-ghost:hover, .dpt-card .dpt-btn-ghost:hover { background: var(--dpt-bg-soft); color: var(--dpt-primary); }

/* ---------- Headings ---------- */
.dpt-h2 { color: var(--dpt-primary); font-size: 22px; font-weight: 800; margin: 0 0 16px; display: flex; align-items: center; gap: 9px; text-transform: none !important; letter-spacing: normal; }
.dpt-h2-sm { font-size: 18px; }
.dpt-day-badge, .dpt-day-title { text-transform: none !important; }
.dpt-emoji { display: none; } /* title icons removed per request */

/* ---------- Hero (contained, rounded, subtle shadow, separated from header) ---------- */
.dpt-hero {
	position: relative; overflow: hidden; background-size: cover; background-position: center;
	background-color: var(--dpt-primary); color: #fff; min-height: 400px;
	display: flex; align-items: flex-end; isolation: isolate;
	margin: var(--dpt-hero-gap, 40px) 16px 0; border-radius: 20px; box-shadow: 0 18px 44px rgba(15,46,77,.18);
}
.dpt-hero-overlay { position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(180deg, rgba(15,46,77,.22) 0%, rgba(15,46,77,.45) 42%, rgba(15,46,77,.88) 100%); }
.dpt-hero-inner { position: relative; z-index: 2; padding: 70px 34px 56px; width: 100%; max-width: 1180px; margin: 0 auto; }
/* Ken Burns zoom for image hero */
.dpt-hero--zoom::before { content: ""; position: absolute; inset: -3%; z-index: 0;
	background-image: inherit; background-size: cover; background-position: center;
	animation: dptZoom 18s ease-in-out infinite alternate; }
@keyframes dptZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
/* Carousel */
.dpt-hero-carousel { position: absolute; inset: 0; z-index: 0; }
.dpt-hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.dpt-hero-slide.is-active { opacity: 1; }
/* Video + embed backgrounds */
.dpt-hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.dpt-hero-embed { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.dpt-hero-embed iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.77vh; transform: translate(-50%, -50%); border: 0; }

.dpt-breadcrumb { font-size: 13px; margin-bottom: 14px; opacity: .95; }
.dpt-breadcrumb a { color: inherit; text-decoration: none; opacity: .9; }
.dpt-breadcrumb a:hover { text-decoration: underline; }
.dpt-breadcrumb span { margin: 0 6px; opacity: .6; }
.dpt-hero-title { color: #fff; font-size: 30px; line-height: 1.16; font-weight: 800; margin: 0 0 10px; max-width: 780px; text-shadow: 0 3px 16px rgba(0,0,0,.45); }
.dpt-hero-duration { font-size: 15px; font-weight: 600; margin: 0 0 12px; display: inline-flex; align-items: center; gap: 7px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.dpt-hero-duration .dashicons { font-size: 17px; width: 17px; height: 17px; }
.dpt-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }

/* ---------- Chips (smaller, less noise) ---------- */
.dpt-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 14px; }
.dpt-chip { display: inline-flex; align-items: center; padding: 4px 11px; border-radius: 999px; font-size: 11px; font-weight: 600;
	background: rgba(255,255,255,.18); color: #fff; text-decoration: none; backdrop-filter: blur(4px); }
.dpt-chip-dest { background: var(--dpt-secondary); }
.dpt-chip-type { background: rgba(255,255,255,.92); color: var(--dpt-primary); }
.dpt-chip-tag { background: var(--dpt-button); }
a.dpt-chip:hover { filter: brightness(1.06); }

/* ---------- Sub-nav (sticky anchor bar with scroll-spy) ---------- */
.dpt-subnav { position: sticky; top: calc(var(--dpt-header-h) + var(--dpt-adminbar)); z-index: 40; background: rgba(255,255,255,.92);
	backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--dpt-border); box-shadow: 0 4px 14px rgba(15,46,77,.05); }
.dpt-subnav-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dpt-subnav-links { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.dpt-subnav-links::-webkit-scrollbar { display: none; }
.dpt-subnav-link { position: relative; white-space: nowrap; padding: 15px 14px; font-size: 14px; font-weight: 600; color: var(--dpt-muted); text-decoration: none; }
.dpt-subnav-link:hover { color: var(--dpt-primary); }
.dpt-subnav-link.is-active { color: var(--dpt-primary); }
.dpt-subnav-link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; background: var(--dpt-button); }
.dpt-subnav-cta { flex: none; }

/* Anchor scroll offset so sticky bars don't cover section tops */
.dpt-single [id] { scroll-margin-top: calc(var(--dpt-header-h) + var(--dpt-adminbar) + 68px); }

/* Hide the Woodmart theme "sidebar opener" (left burger) on our full-width tour pages */
body.dpt-page .wd-sidebar-opener,
body.dpt-page .wd-close-side-widget { display: none !important; }

/* Remove the theme's content-area top padding on tour pages — the hero controls its own top gap */
body.dpt-page .wd-content-layout,
body.dpt-page .content-layout-wrap { padding-top: 0 !important; }

/* ---------- Quick info bar ---------- */
.dpt-quickbar { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; background: #fff;
	border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); box-shadow: var(--dpt-shadow);
	padding: 16px 10px; margin: -32px auto 26px; position: relative; z-index: 3; }
.dpt-quickbar-item { display: flex; gap: 9px; align-items: center; padding: 3px 10px; }
.dpt-quickbar-item + .dpt-quickbar-item { border-left: 1px solid var(--dpt-border); }
.dpt-quickbar-item .dashicons { color: var(--dpt-secondary); font-size: 22px; width: 22px; height: 22px; flex: none; }
.dpt-qi-label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--dpt-muted); font-weight: 700; }
.dpt-qi-value { display: block; font-size: 13.5px; font-weight: 600; color: var(--dpt-primary); }

/* ---------- Layout (sticky sidebar fix: aside stretches, only main is start-aligned) ---------- */
.dpt-layout { display: grid; grid-template-columns: 1fr 350px; gap: 34px; padding-bottom: 36px; align-items: stretch; }
.dpt-main { min-width: 0; align-self: start; }
.dpt-aside { position: relative; }
.dpt-section { margin-bottom: 28px; }
.dpt-rich p { margin: 0 0 12px; }
.dpt-lead { font-size: 17px; color: var(--dpt-primary); font-weight: 500; margin-bottom: 14px; }

/* ---------- Best of ---------- */
.dpt-bestof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dpt-bestof-card { background: var(--dpt-bg-soft); border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius-sm); padding: 18px 14px; text-align: center; transition: box-shadow .15s ease, transform .15s ease; }
.dpt-bestof-card:hover { box-shadow: var(--dpt-shadow-sm); transform: translateY(-3px); }
.dpt-bestof-icon { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 2px solid var(--dpt-secondary); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.dpt-bestof-icon .dashicons { color: var(--dpt-secondary); font-size: 24px; width: 24px; height: 24px; }
.dpt-emoji-icon { font-size: 22px; }
.dpt-bestof-title { color: var(--dpt-primary); font-size: 14.5px; font-weight: 700; margin: 0 0 5px; }
.dpt-bestof-desc { font-size: 12.5px; color: var(--dpt-muted); margin: 0; }

/* ---------- Card boxes / checklists (compact, modern) ---------- */
.dpt-incexc { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
.dpt-card-box { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); padding: 20px 22px; box-shadow: var(--dpt-shadow-sm); }
.dpt-checklist { list-style: none; margin: 0; padding: 0; }
.dpt-included .dpt-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
.dpt-checklist li { display: flex; gap: 9px; padding: 6px 0; align-items: flex-start; }
.dpt-check-icon { flex: none; width: 20px; height: 20px; border-radius: 50%; font-size: 13px; line-height: 20px; text-align: center; margin-top: 1px; }
.dpt-checklist-yes .dpt-check-icon { color: var(--dpt-check); background: rgba(46,158,91,.12); }
.dpt-checklist-no .dpt-check-icon { color: #d05a5a; background: rgba(208,90,90,.12); }
.dpt-check-icon.dashicons { display: inline-flex; align-items: center; justify-content: center; }
.dpt-check-text strong { font-weight: 600; color: var(--dpt-text); display: block; font-size: 13px; line-height: 1.45; }
.dpt-check-desc { font-size: 12px; color: var(--dpt-muted); }
@media (max-width: 620px) { .dpt-included .dpt-checklist { grid-template-columns: 1fr; } }

/* ---------- Itinerary ---------- */
.dpt-itinerary-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.dpt-itinerary-head .dpt-h2 { margin-bottom: 16px; }
.dpt-timeline { position: relative; }
.dpt-day { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius-sm); margin-bottom: 10px; overflow: hidden; box-shadow: var(--dpt-shadow-sm); }
.dpt-day-head { width: 100%; display: flex; align-items: center; gap: 13px; padding: 14px 16px; background: none; border: 0; cursor: pointer; text-align: left; }
.dpt-day-badge { flex: none; background: var(--dpt-primary); color: #fff; font-weight: 700; font-size: 12.5px; padding: 6px 12px; border-radius: 999px; }
.dpt-day.dpt-open .dpt-day-badge { background: var(--dpt-button); }
.dpt-day-title { flex: 1; font-weight: 600; color: var(--dpt-primary); }
.dpt-day-toggle { color: var(--dpt-muted); transition: transform .2s ease; }
.dpt-day.dpt-open .dpt-day-toggle { transform: rotate(180deg); }
.dpt-day-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 16px; }
.dpt-day.dpt-open .dpt-day-body { max-height: 1600px; padding: 0 16px 16px; }
.dpt-day-desc { margin: 4px 0 10px; }
.dpt-day-activities { list-style: none; margin: 0 0 10px; padding: 0; }
.dpt-day-activities li { display: flex; gap: 8px; padding: 4px 0; font-size: 13.5px; }
.dpt-day-activities .dashicons { color: var(--dpt-secondary); font-size: 16px; width: 16px; height: 16px; margin-top: 3px; flex: none; }
.dpt-day-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.dpt-day-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; background: var(--dpt-bg-soft); border: 1px solid var(--dpt-border); border-radius: 999px; padding: 5px 12px; color: var(--dpt-muted); }
.dpt-day-tag .dashicons { font-size: 14px; width: 14px; height: 14px; }

/* ---------- Gallery ---------- */
.dpt-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.dpt-gallery-item { display: block; border-radius: var(--dpt-radius-sm); overflow: hidden; aspect-ratio: 1 / 1; }
.dpt-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.dpt-gallery-item:hover img { transform: scale(1.06); }
.dpt-lightbox { position: fixed; inset: 0; background: rgba(8,18,30,.92); display: flex; align-items: center; justify-content: center; z-index: 99999; }
.dpt-lightbox[hidden] { display: none; }
.dpt-lightbox-img { max-width: 90vw; max-height: 86vh; border-radius: 8px; }
.dpt-lightbox button { position: absolute; background: rgba(255,255,255,.14); color: #fff; border: 0; width: 50px; height: 50px; border-radius: 50%; font-size: 28px; cursor: pointer; }
.dpt-lightbox-close { top: 20px; right: 20px; }
.dpt-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.dpt-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- Important info ---------- */
.dpt-important-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dpt-important-card { background: var(--dpt-bg-beige); border: 1px solid #f0e6d8; border-radius: var(--dpt-radius-sm); padding: 16px; }
.dpt-important-icon { color: var(--dpt-button); font-size: 20px; width: 20px; height: 20px; }
.dpt-important-title { color: var(--dpt-primary); font-size: 14.5px; font-weight: 700; margin: 8px 0 5px; }
.dpt-important-text { font-size: 12.5px; color: var(--dpt-muted); margin: 0; }

/* ---------- Quote card (sticky) ---------- */
.dpt-quote-card { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); box-shadow: var(--dpt-shadow); padding: 20px; }
.dpt-has-sticky .dpt-quote-card.is-sticky { position: sticky; top: calc(var(--dpt-header-h) + var(--dpt-adminbar) + 74px); }
.dpt-quote-price { border-bottom: 1px solid var(--dpt-border); padding-bottom: 12px; margin-bottom: 12px; }
.dpt-quote-price-label { font-size: 12.5px; color: var(--dpt-muted); }
.dpt-quote-price-value { display: block; font-size: 28px; font-weight: 800; color: var(--dpt-primary); line-height: 1.1; }
.dpt-quote-price-note { font-size: 11.5px; color: var(--dpt-muted); }
.dpt-quote-benefits { list-style: none; margin: 0 0 14px; padding: 0; }
.dpt-quote-benefits li { display: flex; gap: 8px; font-size: 12.5px; padding: 4px 0; }
.dpt-quote-benefits .dashicons { color: var(--dpt-secondary); font-size: 17px; width: 17px; height: 17px; flex: none; }
.dpt-quote-actions { display: grid; gap: 9px; margin-bottom: 14px; }
.dpt-quote-actions .dpt-btn { width: 100%; }
.dpt-quote-checks { list-style: none; margin: 0 0 12px; padding: 12px 0 0; border-top: 1px solid var(--dpt-border); }
.dpt-quote-checks li { display: flex; gap: 8px; font-size: 12.5px; padding: 4px 0; color: var(--dpt-text); }
.dpt-quote-checks .dashicons { color: var(--dpt-check); font-size: 17px; width: 17px; height: 17px; flex: none; }
.dpt-quote-trust { display: flex; gap: 8px; align-items: center; font-size: 11.5px; color: var(--dpt-muted); background: var(--dpt-bg-soft); border-radius: var(--dpt-radius-sm); padding: 11px; margin: 0; }
.dpt-quote-trust .dashicons { color: var(--dpt-primary); }

/* ---------- Related / cards grid ---------- */
.dpt-section-wide { padding: 40px 0; background: var(--dpt-bg-soft); }
.dpt-cards-grid { display: grid; gap: 20px; }
.dpt-cols-2 { grid-template-columns: repeat(2, 1fr); }
.dpt-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dpt-cols-4 { grid-template-columns: repeat(4, 1fr); }
.dpt-card { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); overflow: hidden; box-shadow: var(--dpt-shadow-sm); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.dpt-card:hover { transform: translateY(-4px); box-shadow: var(--dpt-shadow); }
.dpt-card-media { position: relative; display: block; aspect-ratio: 16 / 10; background: var(--dpt-bg-soft); overflow: hidden; }
.dpt-card-media img { width: 100%; height: 100%; object-fit: cover; }
.dpt-card-noimg { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--dpt-border); font-size: 48px; }
.dpt-card-badge { position: absolute; left: 12px; top: 12px; background: rgba(15,46,77,.85); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.dpt-card-featured { position: absolute; right: 12px; top: 12px; display: inline-flex; align-items: center; gap: 4px; background: var(--dpt-featured, #e8462d); background-image: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0)); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0,0,0,.28); text-transform: uppercase; letter-spacing: .04em; animation: dptFeaturedPulse 2.4s ease-in-out infinite; }
.dpt-card-featured .dashicons { font-size: 13px; width: 13px; height: 13px; }
@keyframes dptFeaturedPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .dpt-card-featured { animation: none; } }

/* Featured video (before the summary) */
.dpt-featvideo-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--dpt-radius); overflow: hidden; box-shadow: var(--dpt-shadow); background: #000; }
.dpt-featvideo-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Itinerary download link inside the quote card (subtle, doesn't compete with the CTAs) */
.dpt-quote-download { display: flex; align-items: center; gap: 10px; background: var(--dpt-bg-soft); border: 1px dashed #cfd9e4; border-radius: var(--dpt-radius-sm); padding: 11px 13px; margin-bottom: 14px; text-decoration: none; color: var(--dpt-primary); transition: background .15s ease, border-color .15s ease, transform .15s ease; }
.dpt-quote-download:hover { background: #eef6fb; border-color: var(--dpt-secondary); color: var(--dpt-primary); transform: translateY(-1px); }
.dpt-quote-download > .dashicons:first-child { color: #d9534f; font-size: 22px; width: 22px; height: 22px; flex: none; }
.dpt-quote-download > span:not(.dashicons) { flex: 1; font-size: 13px; font-weight: 700; display: flex; flex-direction: column; line-height: 1.25; }
.dpt-quote-download small { font-weight: 500; color: var(--dpt-muted); font-size: 11px; }
.dpt-quote-download > .dashicons:last-child { color: var(--dpt-muted); font-size: 17px; width: 17px; height: 17px; }

/* More breathing room between the sticky sub-nav and the content */
.dpt-layout { padding-top: 22px; }
.dpt-main > .dpt-section:first-child { margin-top: 2px; }

/* ---------- Tour card polish ---------- */
.dpt-btn-sm .dashicons { font-size: 15px; width: 15px; height: 15px; }
.dpt-card { border-radius: 16px; transition: transform .18s ease, box-shadow .18s ease; }
.dpt-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15,46,77,.16); }
.dpt-card-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,46,77,.28) 0%, rgba(15,46,77,0) 34%, rgba(15,46,77,0) 62%, rgba(15,46,77,.30) 100%); pointer-events: none; }
.dpt-card-media img { transition: transform .5s ease; }
.dpt-card:hover .dpt-card-media img { transform: scale(1.07); }
.dpt-card-badge { z-index: 2; backdrop-filter: blur(2px); }
.dpt-card-featured { z-index: 2; }
.dpt-card-body { gap: 8px; padding: 16px 18px 18px; }
.dpt-card-meta { justify-content: space-between; }
.dpt-card-title { font-size: 16px; }
.dpt-card-price { display: flex; align-items: baseline; gap: 6px; padding-top: 8px; border-top: 1px solid var(--dpt-border); margin-top: 6px; }
.dpt-card-price-value { font-size: 18px; }
.dpt-card-actions { margin-top: 4px; }
.dpt-card-actions .dpt-btn { padding: 10px 12px; }

/* Featured badge in the tour hero */
.dpt-hero-featured { display: inline-flex; align-items: center; gap: 6px; background: var(--dpt-featured, #e8462d); background-image: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,0)); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 8px 20px rgba(0,0,0,.28); margin-bottom: 12px; }
.dpt-hero-featured .dashicons { font-size: 15px; width: 15px; height: 15px; }
.dpt-card { position: relative; }
.dpt-card-body { padding: 15px 16px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.dpt-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--dpt-muted); }
.dpt-card-meta .dashicons { font-size: 15px; width: 15px; height: 15px; color: var(--dpt-secondary); }
.dpt-card-cat { background: var(--dpt-bg-soft); border-radius: 999px; padding: 2px 10px; font-weight: 600; }
.dpt-card-title { font-size: 16.5px; font-weight: 700; line-height: 1.3; margin: 0; }
.dpt-card-title a { color: var(--dpt-primary); text-decoration: none; }
.dpt-card-title a:hover { color: var(--dpt-button); }
.dpt-card-excerpt { font-size: 12.5px; color: var(--dpt-muted); margin: 0; }
.dpt-card-price { margin-top: auto; }
.dpt-card-price-value { font-size: 17px; font-weight: 800; color: var(--dpt-button); }
.dpt-card-price-note { display: block; font-size: 11px; color: var(--dpt-muted); }
.dpt-card-actions { display: flex; gap: 8px; }
.dpt-card-actions .dpt-btn { flex: 1; }

/* ---------- CTA final ---------- */
.dpt-cta-final { background: linear-gradient(120deg, var(--dpt-primary), #143a5e); color: #fff; padding: 38px 0; }
.dpt-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.dpt-cta-title { color: #fff; font-size: 24px; font-weight: 800; margin: 0; max-width: 560px; }
.dpt-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Listings / archive ---------- */
.dpt-archive-head { background: var(--dpt-bg-beige); padding: calc(var(--dpt-hero-gap, 40px) + 24px) 0 26px; }
.dpt-archive-title { color: var(--dpt-primary); font-size: 30px; font-weight: 800; margin: 8px 0 0; }
.dpt-archive-desc { color: var(--dpt-muted); margin: 8px 0 0; }
.dpt-listing, .dpt-archive .dpt-cards-grid { margin: 26px 0; }
.dpt-empty { text-align: center; color: var(--dpt-muted); padding: 40px 0; }

/* ---------- Search / filters ---------- */
.dpt-search-form { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); box-shadow: var(--dpt-shadow-sm); padding: 18px; margin: 22px 0; }
.dpt-search-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 12px; }
.dpt-filter { display: flex; flex-direction: column; gap: 5px; }
.dpt-filter span { font-size: 12px; font-weight: 700; color: var(--dpt-muted); text-transform: uppercase; letter-spacing: .03em; }
.dpt-filter input, .dpt-filter select { padding: 10px 12px; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius-sm); font-size: 14px; background: #fff; color: var(--dpt-text); }
.dpt-search-actions { display: flex; gap: 10px; margin-top: 14px; }

/* ---------- Categories grid ---------- */
.dpt-cat-grid { display: grid; gap: 18px; margin: 24px 0; }
.dpt-cat-card { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); padding: 20px; box-shadow: var(--dpt-shadow-sm); }
.dpt-cat-title { display: block; font-size: 18px; font-weight: 700; color: var(--dpt-primary); text-decoration: none; }
.dpt-cat-count { font-size: 12px; color: var(--dpt-muted); }
.dpt-cat-children { list-style: none; margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid var(--dpt-border); }
.dpt-cat-children li { padding: 3px 0; }
.dpt-cat-children a { color: var(--dpt-text); text-decoration: none; font-size: 14px; }
.dpt-cat-children a:hover { color: var(--dpt-button); }

/* ---------- Pagination ---------- */
.dpt-pagination { display: flex; justify-content: center; margin: 30px 0; }
.dpt-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; margin: 0 4px; border-radius: var(--dpt-radius-sm); border: 1px solid var(--dpt-border); color: var(--dpt-primary); text-decoration: none; font-weight: 600; }
.dpt-pagination .page-numbers.current { background: var(--dpt-button); color: #fff; border-color: var(--dpt-button); }
.dpt-pagination .page-numbers:hover:not(.current) { background: var(--dpt-bg-soft); }

/* ---------- Quote form / modal ---------- */
.dpt-quote-form-wrap.dpt-quote-modal { position: fixed; inset: 0; z-index: 2147483000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.dpt-quote-form-wrap[hidden] { display: none !important; }
.dpt-modal-backdrop { position: absolute; inset: 0; background: rgba(8,18,30,.62); backdrop-filter: blur(2px); }
.dpt-quote-modal .dpt-quote-form-inner { position: relative; background: #fff; border-radius: var(--dpt-radius); max-width: 560px; width: 100%; max-height: 92vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 24px 70px rgba(0,0,0,.35); animation: dptPop .22s ease; }
@keyframes dptPop { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.dpt-quote-form-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 20px 24px 14px; background: linear-gradient(120deg, var(--dpt-primary), #143a5e); color: #fff; }
.dpt-quote-form-title { color: #fff; font-size: 19px; font-weight: 800; margin: 0; }
.dpt-quote-form-sub { margin: 5px 0 0; font-size: 12.5px; opacity: .9; display: flex; align-items: center; gap: 6px; }
.dpt-quote-form-sub .dashicons { font-size: 15px; width: 15px; height: 15px; }
.dpt-modal-close { flex: none; background: rgba(255,255,255,.16); border: 0; color: #fff; width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; }
.dpt-modal-close:hover { background: rgba(255,255,255,.28); }
.dpt-quote-form { padding: 20px 24px 24px; overflow: auto; }
.dpt-quote-inline .dpt-quote-form-header { border-radius: var(--dpt-radius) var(--dpt-radius) 0 0; }
.dpt-quote-inline .dpt-quote-form-inner { border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); overflow: hidden; }
.dpt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dpt-form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.dpt-form-field.dpt-form-full { grid-column: 1 / -1; }
.dpt-form-field span { font-size: 12.5px; font-weight: 600; color: var(--dpt-text); }
.dpt-form-field input, .dpt-form-field textarea { padding: 11px 12px; border: 1.5px solid var(--dpt-border); border-radius: var(--dpt-radius-sm); font-size: 14px; font-family: inherit; transition: border-color .15s ease, box-shadow .15s ease; background: #fcfdfe; }
.dpt-form-field input:focus, .dpt-form-field textarea:focus { outline: none; border-color: var(--dpt-secondary); box-shadow: 0 0 0 3px rgba(25,182,201,.15); background: #fff; }
.dpt-form-check { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--dpt-muted); margin-bottom: 14px; }
.dpt-hp { position: absolute; left: -9999px; }
.dpt-quote-submit { width: 100%; }
.dpt-quote-feedback { font-size: 14px; margin: 12px 0 0; text-align: center; }
.dpt-quote-feedback.is-ok { color: var(--dpt-check); font-weight: 600; }
.dpt-quote-feedback.is-error { color: #d05a5a; }

/* ---------- Read more / less ---------- */
.dpt-collapse.is-clamped { overflow: hidden; position: relative; transition: max-height .35s ease; }
.dpt-collapse.is-clamped:not(.is-open)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 64px; background: linear-gradient(transparent, #fff); pointer-events: none; }
.dpt-readmore { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; background: none; border: 0; color: var(--dpt-button); font-weight: 700; font-size: 13px; cursor: pointer; padding: 4px 0; }
.dpt-readmore .dashicons { transition: transform .2s ease; font-size: 16px; width: 16px; height: 16px; }
.dpt-readmore[aria-expanded="true"] .dashicons { transform: rotate(180deg); }
.dpt-readmore .dpt-readmore-less { display: none; }
.dpt-readmore[aria-expanded="true"] .dpt-readmore-more { display: none; }
.dpt-readmore[aria-expanded="true"] .dpt-readmore-less { display: inline; }

/* ---------- Related carousel (no icon, no colored bg) ---------- */
.dpt-related-plain { padding: 6px 0 40px; }
.dpt-related-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.dpt-related-head .dpt-h2 { margin: 0; }
.dpt-carousel-nav { display: flex; gap: 8px; flex: none; }
.dpt-carousel-prev, .dpt-carousel-next { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--dpt-border); background: #fff; color: var(--dpt-primary); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--dpt-shadow-sm); transition: background .15s ease, color .15s ease, border-color .15s ease; }
.dpt-carousel-prev:hover, .dpt-carousel-next:hover { background: var(--dpt-button); color: #fff; border-color: var(--dpt-button); }
.dpt-carousel-prev:disabled, .dpt-carousel-next:disabled { opacity: .35; cursor: default; }
.dpt-carousel { overflow: hidden; }
.dpt-carousel-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; padding: 4px 2px 8px; }
.dpt-carousel-track::-webkit-scrollbar { display: none; }
.dpt-carousel-track > .dpt-card { flex: 0 0 300px; scroll-snap-align: start; }
@media (max-width: 680px) { .dpt-carousel-track > .dpt-card { flex-basis: 84%; } }

/* ---------- Payment methods image in quote card ---------- */
.dpt-quote-payment { margin-top: 12px; text-align: center; }
.dpt-quote-payment img { max-width: 100%; height: auto; opacity: .95; }

/* ---------- Social share ---------- */
.dpt-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 6px 0 8px; }
.dpt-share-label { font-size: 13px; font-weight: 700; color: var(--dpt-muted); margin-right: 2px; }
.dpt-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer; color: #fff; text-decoration: none; transition: transform .15s ease, filter .15s ease; }
.dpt-share-btn:hover { transform: translateY(-2px); filter: brightness(1.06); color: #fff; }
.dpt-share-btn .dashicons { font-size: 19px; width: 19px; height: 19px; }
.dpt-share-wa { background: #25d366; }
.dpt-share-fb { background: #1877f2; }
.dpt-share-tw { background: #0f1419; }
.dpt-share-tg { background: #2aabee; }
.dpt-share-copy { background: var(--dpt-primary); }
.dpt-share-copied { font-size: 12px; color: var(--dpt-check); font-weight: 700; }

/* ---------- Reviews ---------- */
.dpt-reviews-body { background: #fff; border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius); padding: 18px; box-shadow: var(--dpt-shadow-sm); }

/* ---------- Gallery video tile + lightbox video ---------- */
.dpt-gallery-video { position: relative; background-size: cover; background-position: center; background-color: var(--dpt-primary); }
.dpt-gallery-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(15,46,77,.35); transition: background .15s ease; }
.dpt-gallery-video:hover .dpt-gallery-play { background: rgba(15,46,77,.5); }
.dpt-gallery-play .dashicons { font-size: 30px; width: 58px; height: 58px; line-height: 58px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--dpt-button); }
.dpt-lightbox-video { width: min(90vw, 960px); aspect-ratio: 16 / 9; }
.dpt-lightbox-video[hidden] { display: none; }
.dpt-lightbox-video iframe { width: 100%; height: 100%; border: 0; border-radius: 8px; }

/* ---------- Card facts / tags + shine ---------- */
.dpt-card-tag { display: inline-flex; align-items: center; gap: 4px; }
.dpt-card-cat .dashicons { font-size: 13px; width: 13px; height: 13px; color: var(--dpt-button); }
.dpt-card-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.dpt-card-fact { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--dpt-muted); }
.dpt-card-fact .dashicons { font-size: 14px; width: 14px; height: 14px; color: var(--dpt-secondary); }
.dpt-card-media::after { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); transition: left 0s; pointer-events: none; }
.dpt-card:hover .dpt-card-media::after { left: 130%; transition: left .75s ease; }

/* ---------- Form validation + Flatpickr theming ---------- */
.dpt-form-field input.dpt-invalid, .dpt-form-field textarea.dpt-invalid { border-color: #d05a5a; box-shadow: 0 0 0 3px rgba(208,90,90,.14); }
/* Flatpickr calendar must sit above the (very high z-index) quote modal. */
.flatpickr-calendar { z-index: 2147483011 !important; }

/* International phone (intl-tel-input) */
.dpt-form-field .iti { width: 100%; }
.dpt-form-field .iti input.dpt-iti-phone { width: 100%; }
.iti--container { z-index: 2147483015 !important; } /* country dropdown above the modal */
.iti__country-list { max-height: 220px; }

/* Itinerary: force left alignment (some themes center content) */
.dpt-itinerary, .dpt-timeline, .dpt-day, .dpt-day-head, .dpt-day-title, .dpt-day-body, .dpt-day-desc,
.dpt-day-activities, .dpt-day-activities li, .dpt-day-meta { text-align: left !important; }
.dpt-day-head { justify-content: flex-start; }

/* Icons inside buttons/links never intercept the click */
.dpt-btn .dashicons, .dpt-share-btn .dashicons, .dpt-mobilebar-actions .dashicons, .dpt-subnav-link .dashicons { pointer-events: none; }

/* Breadcrumb: more breathing room */
.dpt-breadcrumb { margin-bottom: 24px; }

/* Trust badge (redesigned) + check icons */
.dpt-quote-checks li { align-items: center; gap: 9px; }
.dpt-check-badge { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(46,158,91,.12); display: inline-flex; align-items: center; justify-content: center; }
.dpt-check-badge .dashicons { color: var(--dpt-check); font-size: 14px; width: 14px; height: 14px; }
.dpt-quote-trust { display: flex; align-items: center; gap: 11px; background: linear-gradient(135deg, rgba(25,182,201,.12), rgba(15,46,77,.05)); border: 1px solid var(--dpt-border); border-radius: var(--dpt-radius-sm); padding: 12px 14px; margin: 0; }
.dpt-quote-trust-icon { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--dpt-primary); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(15,46,77,.25); }
.dpt-quote-trust-icon .dashicons { color: #fff; font-size: 20px; width: 20px; height: 20px; }
.dpt-quote-trust-text { font-size: 12px; color: var(--dpt-muted); line-height: 1.35; }
.dpt-quote-trust-text strong { display: block; color: var(--dpt-primary); font-size: 13.5px; margin-bottom: 1px; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--dpt-button); border-color: var(--dpt-button); }
.flatpickr-day.today { border-color: var(--dpt-secondary); }
.flatpickr-months .flatpickr-month, .flatpickr-weekdays, span.flatpickr-weekday { background: var(--dpt-primary); color: #fff; fill: #fff; }
.flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year { color: #fff; }
.flatpickr-months .flatpickr-prev-month svg, .flatpickr-months .flatpickr-next-month svg { fill: #fff; }

/* ---------- Mobile bottom action bar ---------- */
.dpt-mobilebar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 9000;
	background: #fff; border-top: 1px solid var(--dpt-border); box-shadow: 0 -6px 20px rgba(15,46,77,.12);
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); align-items: center; justify-content: space-between; gap: 12px; }
.dpt-mobilebar-label { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--dpt-muted); font-weight: 700; }
.dpt-mobilebar-value { display: block; font-size: 17px; font-weight: 800; color: var(--dpt-primary); line-height: 1.1; }
.dpt-mobilebar-actions { display: flex; gap: 8px; align-items: center; }
.dpt-mobilebar-actions .dpt-btn-whatsapp { width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.dpt-mobilebar-actions .dpt-btn-whatsapp .dashicons { font-size: 22px; width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.dpt-layout { grid-template-columns: 1fr; }
	/* Quote card flows inline (full width, not sticky) instead of a hidden sidebar. */
	.dpt-aside { order: 2; }
	.dpt-has-sticky .dpt-quote-card.is-sticky { position: static; }
	.dpt-quote-card { max-width: 560px; margin: 0 auto; }
	.dpt-quickbar { grid-template-columns: repeat(3, 1fr); }
	.dpt-quickbar-item:nth-child(3n+1) { border-left: 0; }
	.dpt-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.dpt-search-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
	/* ---- Hero: full-bleed + compact ---- */
	.dpt-hero { min-height: 288px; width: 100vw; margin: var(--dpt-hero-gap-mobile, 0px) calc(50% - 50vw) 0; border-radius: 0; box-shadow: none; }
	/* Higher specificity so it isn't overridden by the mobile .dpt-container rule (hero-inner also has that class) */
	.dpt-hero .dpt-hero-inner { padding: 24px 18px 22px; }
	.dpt-hero-title { font-size: 21px; line-height: 1.18; margin-bottom: 10px; }
	.dpt-hero-duration { font-size: 14px; margin-bottom: 10px; }
	.dpt-breadcrumb { display: none; }
	.dpt-chips { gap: 5px; margin-bottom: 12px; }
	.dpt-chip { padding: 3px 10px; font-size: 10.5px; }
	.dpt-chip-cat { display: none; }              /* categoría ya se ve en la tarjeta "Tipo de tour" → evita chip largo/redundante */
	.dpt-hero-actions { gap: 8px; }
	.dpt-hero-actions .dpt-btn { flex: 1; padding: 12px 12px; font-size: 14px; }

	/* ---- Container / info card (below the hero, no overlap) ---- */
	.dpt-container { padding: 0 16px; }
	.dpt-quickbar { grid-template-columns: 1fr 1fr; margin: 14px 0 24px; padding: 16px 12px; gap: 10px; align-items: start; }
	.dpt-quickbar-item { border-left: 0 !important; padding: 4px 6px; }

	/* ---- Rhythm ---- */
	.dpt-layout { padding-top: 14px; }
	.dpt-section { margin-bottom: 26px; }
	.dpt-h2 { font-size: 20px; }
	.dpt-summary .dpt-lead { margin-bottom: 12px; }
	.dpt-card-box { padding: 18px 16px; }
	.dpt-quote-card { padding: 20px 18px; }
	.dpt-day-head { padding: 14px 14px; }
	.dpt-related-plain { padding-top: 4px; }
	.dpt-featvideo-frame { border-radius: 12px; }

	/* ---- Grids to single column ---- */
	.dpt-bestof-grid, .dpt-important-grid { grid-template-columns: 1fr; gap: 12px; }
	.dpt-incexc { grid-template-columns: 1fr; }
	.dpt-gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.dpt-cols-2, .dpt-cols-3, .dpt-cols-4, .dpt-cat-grid { grid-template-columns: 1fr; }
	.dpt-search-row, .dpt-form-grid { grid-template-columns: 1fr; }
	.dpt-cta-inner { flex-direction: column; align-items: flex-start; }

	/* ---- Itinerary: stack title + button, separate helper text ---- */
	.dpt-itinerary-head { flex-direction: column; align-items: flex-start; gap: 8px; }
	.dpt-itinerary-head .dpt-h2 { margin-bottom: 2px; }
	.dpt-itinerary-pdfonly { margin-top: 14px; }

	/* ---- Archive / taxonomy ---- */
	.dpt-archive-head { padding-top: calc(var(--dpt-hero-gap-mobile, 0px) + 24px); }

	/* ---- Fixed bottom action bar ---- */
	.dpt-mobilebar { display: flex; }
	.dpt-single { padding-bottom: 78px; }
	.dpt-subnav-cta { display: none; }
}
