/* ============================================================
   CorfuDiscovery  -  shared styles for interior pages
   (archive, single listing, contact). Loads AFTER styles.css.
   ============================================================ */

/* active nav item */
.menu > li.active > a { color: var(--coral); background: var(--coral-soft); }

/* ---------- breadcrumb ---------- */
.crumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); font-weight: 500; flex-wrap: wrap; }
.crumb a { color: var(--muted); transition: .15s; }
.crumb a:hover { color: var(--coral); }
.crumb svg { width: 14px; height: 14px; opacity: .5; }
.crumb .here { color: var(--ink); font-weight: 600; }

/* ---------- page hero (compact) ---------- */
.page-hero { position: relative; color: #fff; isolation: isolate; }
.page-hero .cph { position: absolute; inset: 0; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,30,43,.72), rgba(10,30,43,.55) 50%, rgba(10,30,43,.82)); }
.page-hero .inner { padding-top: 30px; padding-bottom: 40px; }
.page-hero .crumb, .page-hero .crumb a { color: rgba(255,255,255,.78); }
.page-hero .crumb .here { color: #fff; }
.page-hero .crumb svg { opacity: .6; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 5vw, 56px); line-height: 1.04; letter-spacing: -.02em; margin-top: 18px; max-width: 18ch; text-wrap: balance; }
.page-hero .lead { margin-top: 14px; font-size: 18px; color: rgba(255,255,255,.9); max-width: 56ch; }
.page-hero .meta-row { margin-top: 22px; display: flex; gap: 22px; flex-wrap: wrap; font-size: 14.5px; font-weight: 600; }
.page-hero .meta-row span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero .meta-row svg { width: 17px; height: 17px; color: #FFD9CF; }

/* ============================================================
   ARCHIVE  -  search + filters + results
   ============================================================ */
.archive-search { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 10px; margin-top: 28px; max-width: min(1040px, 100%); }
.archive-search .search-fields { grid-template-columns: 1.5fr 1fr auto; }
@media (max-width:760px){ .archive-search .search-fields { grid-template-columns: 1fr; } }

.layout { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: start; }
@media (max-width: 980px){ .layout { grid-template-columns: 1fr; } }

/* filter sidebar */
.filters { position: sticky; top: calc(var(--header-h) + 18px); background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow-y: auto; max-height: calc(100vh - var(--header-h) - 36px); }
.filters .fhead { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.filters .fhead h3 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.filters .fhead svg { width: 18px; height: 18px; color: var(--coral); }
.filters .fhead .clear { font-size: 13px; font-weight: 600; color: var(--coral); }
.fgroup { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.fgroup:last-child { border-bottom: none; }
.fgroup > h4 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.check { display: flex; align-items: center; gap: 11px; padding: 7px 0; cursor: pointer; font-size: 14.5px; font-weight: 500; }
.check input { appearance: none; width: 19px; height: 19px; border: 1.7px solid var(--line-strong); border-radius: 6px; flex-shrink: 0; transition: .15s; position: relative; cursor: pointer; }
.check input:checked { background: var(--coral); border-color: var(--coral); }
.check input:checked::after { content: ""; position: absolute; left: 6px; top: 2.5px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.check .cnt { margin-left: auto; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.check:hover { color: var(--coral); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-sel { padding: 8px 14px; border-radius: var(--pill); border: 1.5px solid var(--line-strong); font-size: 13.5px; font-weight: 600; cursor: pointer; transition: .15s; }
.chip-sel:hover { border-color: var(--coral); color: var(--coral); }
.chip-sel.on { background: var(--coral-soft); border-color: var(--coral); color: var(--coral-deep); }
.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs .pin { flex: 1; display: flex; align-items: center; gap: 6px; background: var(--sand); border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; font-weight: 600; }
.price-inputs .pin span { color: var(--muted); }
.price-inputs .pin input { width: 100%; border: none; background: none; outline: none; font-weight: 600; }
.price-inputs .dash { color: var(--muted); }
.stars-pick { display: flex; flex-direction: column; gap: 4px; }
.filters-foot { padding: 16px 20px; position: sticky; bottom: 0; background: #fff; border-top: 1px solid var(--line); z-index: 2; }
.filters-foot .btn { width: 100%; }

/* mobile filter toggle */
.filter-toggle { display: none; }
@media (max-width: 980px){
  .filter-toggle { display: inline-flex; }
  .filters { position: fixed; top: 0; right: 0; height: 100%; width: min(380px,92vw); z-index: 10000000000; border-radius: 0; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: var(--shadow-lg); }
  .filters.open { transform: none; }
  .filters .fhead { position: sticky; top: 0; background: #fff; z-index: 2; }
}

/* results toolbar */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.toolbar .res-count { font-size: 15px; color: var(--body); }
.toolbar .res-count b { color: var(--ink); font-weight: 700; }
.toolbar .tools { display: flex; align-items: center; gap: 10px; }
.sortbox { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--pill); padding: 9px 16px; font-weight: 600; font-size: 14px; }
.sortbox svg { width: 16px; height: 16px; color: var(--coral); }
.sortbox select { border: none; background: none; outline: none; font-weight: 600; cursor: pointer; }
.viewtoggle { display: flex; background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--pill); padding: 3px; }
.viewtoggle button { width: 40px; height: 36px; border-radius: var(--pill); display: grid; place-items: center; color: var(--muted); }
.viewtoggle button.on { background: var(--coral); color: #fff; }
.viewtoggle svg { width: 17px; height: 17px; }
@media (max-width: 720px){
  .page-hero .inner { padding-top: 24px; padding-bottom: 32px; }
  .page-hero .crumb { overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .page-hero .crumb::-webkit-scrollbar { display: none; }
  .page-hero h1 { max-width: 100%; }
  .toolbar { align-items: stretch; gap: 12px; }
  .toolbar .res-count { width: 100%; }
  .toolbar .tools { width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; gap: 8px; }
  .toolbar .tools .btn,
  .cdf-sort,
  .cdf-sort-btn { width: 100%; min-width: 0; }
  .cdf-sort-btn { justify-content: center; padding-inline: 10px; }
  .cdf-sort-btn .lbl { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .cdf-sort-menu { left: 0; right: auto; min-width: min(260px, 88vw); }
  .viewtoggle { justify-self: end; }
}
@media (max-width: 460px){
  .toolbar .tools { grid-template-columns: 1fr 1fr; }
  .viewtoggle { grid-column: 1 / -1; justify-self: stretch; }
  .viewtoggle button { width: 50%; }
  .pager { gap: 6px; flex-wrap: wrap; }
  .pager a, .pager span { min-width: 40px; height: 40px; border-radius: 10px; }
}

.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (min-width: 1900px){ .results { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1320px){ .results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .results { grid-template-columns: 1fr; } }

/* list view variant */
.results .desc, .results .amen { display: none; } /* hidden in grid view */
.results.list { grid-template-columns: 1fr; }

/* ---- map view ---- */
/* in map view the filters become a horizontal bar so the map gets full width */
.layout.map-mode { grid-template-columns: 1fr; }
@media (min-width: 981px){
  .layout.map-mode .filters {
    position: sticky; top: calc(var(--header-h) + 10px); z-index: 25;
    display: flex; flex-wrap: nowrap; align-items: center; gap: 10px;
    padding: 12px 16px; height: auto; overflow: visible;
  }
  .layout.map-mode .filters .fhead { border: none; padding: 0; margin-right: 4px; }
  .layout.map-mode .filters .fhead h3 { font-size: 15px; }
  .layout.map-mode .filters .filters-foot { display: none; }
  .layout.map-mode .filters .fgroup { position: relative; border: none; padding: 0; }
  .layout.map-mode .filters .fgroup > h4 {
    margin: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 16px; border: 1.5px solid var(--line-strong); border-radius: var(--pill);
    font-size: 13.5px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--ink); white-space: nowrap; transition: .15s;
  }
  .layout.map-mode .filters .fgroup > h4::after {
    content: ""; width: 8px; height: 8px; margin-left: 1px;
    border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
    transform: rotate(45deg) translateY(-2px); transition: transform .2s, border-color .2s;
  }
  .layout.map-mode .filters .fgroup:hover > h4 { border-color: var(--coral); color: var(--coral); }
  .layout.map-mode .filters .fgroup.open > h4 { border-color: var(--coral); color: var(--coral-deep); background: var(--coral-soft); }
  .layout.map-mode .filters .fgroup.open > h4::after { transform: rotate(225deg) translateY(2px); border-color: var(--coral); }
  .layout.map-mode .filters .fbody {
    position: absolute; top: calc(100% + 8px); left: 0; z-index: 30; min-width: 248px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
    padding: 14px 16px; display: none;
  }
  .layout.map-mode .filters .fgroup:last-of-type .fbody { left: auto; right: 0; }
  .layout.map-mode .filters .fgroup.open .fbody { display: block; }
}
.map-panel { display: none; }
.results-area.is-map { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 22px; align-items: start; }
.results-area.is-map .results { grid-template-columns: 1fr 1fr; gap: 18px; max-height: calc(100vh - 170px); overflow-y: auto; padding-right: 6px; scrollbar-width: thin; }
.results-area.is-map .results .lcard { flex-direction: column; }
.results-area.is-map .results .lcard .media { aspect-ratio: 16/11; width: auto; }
.results-area.is-map .results .lcard h3 { font-size: 16.5px; }
.results-area.is-map .results .desc, .results-area.is-map .results .amen { display: none; }
.map-panel.is-shown { display: block; position: sticky; top: calc(var(--header-h) + 18px); height: calc(100vh - 150px); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.map-zoom { position: absolute; top: 16px; right: 16px; z-index: 5; display: flex; flex-direction: column; gap: 1px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.map-zoom button { width: 40px; height: 40px; background: #fff; color: var(--ink); display: grid; place-items: center; }
.map-zoom button:hover { background: var(--sand-2); color: var(--coral); }
.map-zoom svg { width: 18px; height: 18px; }
.mpin {
  position: absolute; transform: translate(-50%, -50%); z-index: 3;
  background: #fff; color: var(--ink); font-weight: 700; font-size: 13.5px;
  padding: 7px 13px; border-radius: var(--pill); box-shadow: var(--shadow);
  border: 1.5px solid transparent; transition: .16s; white-space: nowrap;
}
.mpin::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 10px; height: 10px; background: inherit; transform: translateX(-50%) rotate(45deg); box-shadow: var(--shadow); }
.mpin:hover, .mpin.active { background: var(--coral); color: #fff; border-color: #fff; transform: translate(-50%, -50%) scale(1.08); z-index: 4; }
@media (max-width: 1180px){ .results-area.is-map .results { grid-template-columns: 1fr; } }
@media (max-width: 980px){
  .results-area.is-map { grid-template-columns: 1fr; }
  .map-panel.is-shown { position: relative; top: 0; height: 360px; order: -1; }
  .results-area.is-map .results { max-height: none; overflow: visible; }
}
.results.list .lcard { flex-direction: row; }
.results.list .lcard .media { aspect-ratio: auto; width: 300px; flex-shrink: 0; }
.results.list .lcard .body { padding: 22px 24px; }
.results.list .lcard h3 { font-size: 21px; }
.results.list .desc { font-size: 14.5px; color: var(--body); margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.results.list .amen { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.results.list .amen span { font-size: 12px; font-weight: 600; color: var(--body); background: var(--sand-2); padding: 5px 11px; border-radius: var(--pill); }
@media (max-width: 980px){
  .results.list .lcard { flex-direction: row; }
  .results.list .lcard .media { width: clamp(180px, 34vw, 260px); aspect-ratio: 4/3; }
  .results.list .lcard .body { padding: 18px 20px; }
  .results.list .desc { display: -webkit-box; }
  .results.list .amen { display: flex; }
}
@media (max-width: 640px){
  .results.list .lcard { flex-direction: row; min-height: 154px; }
  .results.list .lcard .media { width: 132px; aspect-ratio: auto; min-height: 154px; }
  .results.list .lcard .body { padding: 13px 14px; }
  .results.list .cat-line { font-size: 10.5px; line-height: 1.2; }
  .results.list .lcard h3 { font-size: 16px; margin-top: 5px; }
  .results.list .loc { font-size: 12.5px; margin-top: 5px; }
  .results.list .desc { font-size: 13px; line-height: 1.35; -webkit-line-clamp: 2; margin-top: 8px; }
  .results.list .amen { display: none; }
  .results.list .foot { padding-top: 10px; margin-top: 10px; }
}
@media (max-width: 420px){
  .results.list .lcard .media { width: 112px; min-height: 148px; }
  .results.list .lcard .loc { display: none; }
}

/* pagination */
.pager { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.pager a, .pager span { min-width: 46px; height: 46px; padding: 0 8px; border-radius: 12px; display: grid; place-items: center; font-weight: 600; border: 1.5px solid var(--line-strong); background: #fff; transition: .15s; }
.pager a:hover { border-color: var(--coral); color: var(--coral); }
.pager .cur { background: var(--coral); border-color: var(--coral); color: #fff; }
.pager .dots { border: none; background: none; }
.pager .nav svg { width: 18px; height: 18px; }

/* themed sort dropdown (replaces the native select) */
.cdf-sort { position: relative; }
.cdf-sort-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--line-strong); border-radius: var(--pill); padding: 9px 14px; font-weight: 600; font-size: 14px; color: var(--ink); cursor: pointer; transition: .15s; }
.cdf-sort-btn:hover { border-color: var(--coral); }
.cdf-sort-btn > svg:first-child { width: 16px; height: 16px; color: var(--coral); }
.cdf-sort-btn .caret { width: 14px; height: 14px; opacity: .55; transition: transform .2s; }
.cdf-sort.open .cdf-sort-btn .caret { transform: rotate(180deg); }
.cdf-sort-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 220px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s ease; z-index: 60; }
.cdf-sort.open .cdf-sort-menu { opacity: 1; visibility: visible; transform: none; }
.cdf-sort-menu a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--body); }
.cdf-sort-menu a:hover { background: var(--sand-2); color: var(--coral); }
.cdf-sort-menu a.on { background: var(--coral-soft); color: var(--coral-deep); font-weight: 700; }

/* sponsored article ads (Listing Articles plugin), reskinned to match */
.cdf-ads { margin-bottom: 34px; }
.cdf-ads-head { margin-bottom: 14px; }
.cdf-ads .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (min-width: 1900px){ .cdf-ads .articles-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px){ .cdf-ads .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px){ .cdf-ads .articles-grid { grid-template-columns: 1fr; } }
/* Responsive visible ad count (grid columns already match these breakpoints). */
@media (min-width: 1900px){ .cdf-ads .articles-grid .article-card:nth-child(n+5){ display: none; } }
@media (max-width: 1899px){ .cdf-ads .articles-grid .article-card:nth-child(n+4){ display: none; } }
@media (max-width: 1100px){ .cdf-ads .articles-grid .article-card:nth-child(n+3){ display: none; } }
@media (max-width: 680px){ .cdf-ads .articles-grid .article-card:nth-child(n+2){ display: none; } }
/* Admin cap (arch_ads_count) — never show more than the configured maximum. */
.cdf-ads-cap-1 .articles-grid .article-card:nth-child(n+2){ display: none; }
.cdf-ads-cap-2 .articles-grid .article-card:nth-child(n+3){ display: none; }
.cdf-ads-cap-3 .articles-grid .article-card:nth-child(n+4){ display: none; }
.cdf-ads-cap-4 .articles-grid .article-card:nth-child(n+5){ display: none; }
.cdf-ads-cap-5 .articles-grid .article-card:nth-child(n+6){ display: none; }
.cdf-ads .article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: .26s ease; }
.cdf-ads .article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cdf-ads .article-thumbnail { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.cdf-ads .article-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cdf-ads .article-card:hover .article-thumbnail img { transform: scale(1.05); }
.cdf-ads .listing-badge { position: absolute; top: 12px; left: 12px; background: var(--coral) !important; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--pill); }
.cdf-ads .article-body { padding: 18px 20px 4px; }
.cdf-ads .article-title { font-family: var(--serif); font-weight: 500; font-size: 20px; line-height: 1.2; letter-spacing: -.01em; }
.cdf-ads .article-title a { color: var(--ink); }
.cdf-ads .article-title a:hover { color: var(--coral); }
.cdf-ads .article-excerpt { font-size: 14.5px; color: var(--body); margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cdf-ads .article-meta { display: flex; gap: 16px; padding: 10px 20px 0; color: var(--muted); font-size: 13px; font-weight: 600; }
.cdf-ads .article-meta i, .cdf-ads .read-more i { display: none; }
.cdf-ads .article-footer { padding: 14px 20px 18px; margin-top: auto; }
.cdf-ads .read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--coral); font-weight: 700; font-size: 14.5px; }
.cdf-ads .read-more:hover { color: var(--coral-deep); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero {
  position: relative; color: #fff; isolation: isolate; overflow: hidden;
}
.about-hero-media { position: absolute; inset: 0; z-index: -2; }
.about-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.about-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,30,43,.58), rgba(10,30,43,.42) 42%, rgba(10,30,43,.88)),
    linear-gradient(90deg, rgba(10,30,43,.68), rgba(10,30,43,.14) 62%);
}
.about-hero-inner { min-height: clamp(520px, 68vh, 760px); display: flex; flex-direction: column; justify-content: center; padding-block: 56px; }
.about-hero .crumb,
.about-hero .crumb a { color: rgba(255,255,255,.78); }
.about-hero .crumb .here { color: #fff; }
.about-hero h1 {
  font-family: var(--serif); font-size: clamp(42px, 7vw, 86px); line-height: 1; font-weight: 500;
  max-width: 11ch; margin-top: 20px; text-wrap: balance; text-shadow: 0 2px 30px rgba(0,0,0,.24);
}
.about-hero p { max-width: 58ch; margin-top: 22px; font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.92); }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.about-split {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 84px); align-items: start;
}
.about-split h2,
.about-band h2,
.about-cta h2 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4.5vw, 54px); line-height: 1.05; letter-spacing: -.02em; margin-top: 14px;
}
.about-copy { display: grid; gap: 16px; color: var(--body); font-size: 18px; }

.about-values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.about-values article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.about-values .vi {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: var(--coral-soft); color: var(--coral-deep); margin-bottom: 18px;
}
.about-values .vi svg { width: 25px; height: 25px; }
.about-values h3 { font-size: 20px; font-weight: 800; }
.about-values p { margin-top: 10px; color: var(--body); font-size: 15.5px; }

.about-band-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow);
}
.about-band-inner > div { padding: clamp(26px, 4vw, 48px); }
.about-band-inner > div + div { border-left: 1px solid var(--line); background: var(--sand); }
.about-band p { margin-top: 15px; color: var(--body); font-size: 17px; }

.about-cta { position: relative; color: #fff; background: var(--navy); overflow: hidden; }
.about-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(229,80,58,.28), transparent 34%),
    linear-gradient(120deg, rgba(10,30,43,.94), rgba(15,42,59,.84));
}
.about-cta-inner {
  position: relative; padding-block: clamp(54px, 8vw, 96px);
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 32px; align-items: center;
}
.about-cta p { margin-top: 15px; color: rgba(255,255,255,.86); font-size: 17px; max-width: 58ch; }
.about-cta .about-actions { justify-content: flex-end; margin-top: 0; }

@media (max-width: 900px) {
  .about-split,
  .about-values,
  .about-band-inner,
  .about-cta-inner { grid-template-columns: 1fr; }
  .about-band-inner > div + div { border-left: none; border-top: 1px solid var(--line); }
  .about-cta .about-actions { justify-content: flex-start; margin-top: 4px; }
}
@media (max-width: 560px) {
  .about-hero-inner { min-height: 520px; padding-block: 42px; }
  .about-actions .btn { width: 100%; }
}

/* ============================================================
   SINGLE LISTING
   ============================================================ */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 460px; border-radius: var(--r-lg); overflow: hidden; }
.gallery .g { position: relative; overflow: hidden; cursor: pointer; }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery .g:hover img { transform: scale(1.05); }
.gallery .g-main { grid-row: 1 / span 2; }
.gallery .more { position: absolute; right: 14px; bottom: 14px; background: rgba(255,255,255,.95); color: var(--ink); padding: 10px 16px; border-radius: var(--pill); font-weight: 600; font-size: 13.5px; display: inline-flex; gap: 8px; align-items: center; box-shadow: var(--shadow); }
.gallery .more svg { width: 16px; height: 16px; }
@media (max-width: 760px){ .gallery { grid-template-columns: 1fr 1fr; height: 320px; } .gallery .g-main { grid-column: 1 / span 2; grid-row: auto; } .gallery .g:nth-child(4), .gallery .g:nth-child(5) { display: none; } }

.listing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 380px); gap: 48px; align-items: start; margin-top: 40px; }
.listing-grid > *,
.booking-col,
.l-section,
.cdf-listeo-embed { min-width: 0; max-width: 100%; }
@media (max-width: 980px){ .listing-grid { grid-template-columns: 1fr; gap: 32px; } }

.l-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.l-title-row h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -.02em; }
.l-sub { display: flex; align-items: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; color: var(--body); font-size: 15px; font-weight: 500; }
.l-sub .it { display: inline-flex; align-items: center; gap: 7px; }
.l-sub svg { width: 16px; height: 16px; color: var(--coral); }
.l-sub .rate { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--ink); }
.l-sub .rate svg { color: var(--gold); }
.l-actions { display: flex; gap: 10px; }
.icon-btn { width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line-strong); display: grid; place-items: center; background: #fff; transition: .18s; }
.icon-btn:hover { border-color: var(--coral); color: var(--coral); }
.icon-btn svg { width: 19px; height: 19px; }

.l-section { padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--line); }
.l-section h2 { font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: -.01em; margin-bottom: 18px; }
.l-section p { color: var(--body); font-size: 16px; }
.l-section p + p { margin-top: 14px; }

.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px){ .amen-grid { grid-template-columns: 1fr 1fr; } }
.amenity { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.amenity .ai { width: 42px; height: 42px; border-radius: 11px; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; flex-shrink: 0; }
.amenity .ai svg { width: 21px; height: 21px; }

.highlights { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width:640px){ .highlights { grid-template-columns: 1fr; } }
.highlight { display: flex; gap: 13px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--sand); }
.highlight .hi { width: 40px; height: 40px; border-radius: 10px; background: #fff; color: var(--coral); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.highlight svg { width: 20px; height: 20px; }
.highlight h4 { font-size: 15.5px; font-weight: 700; }
.highlight p { font-size: 13.5px; margin-top: 3px; }

/* booking widget */
.booking-col { position: sticky; top: calc(var(--header-h) + 18px); display: flex; flex-direction: column; gap: 14px; }
.booking { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.booking .bk-top { padding: 22px 24px 18px; border-bottom: 1px solid var(--line); }
.booking .price { display: flex; align-items: baseline; gap: 8px; }
.booking .price b { font-family: var(--serif); font-size: 34px; font-weight: 600; }
.booking .price small { color: var(--muted); font-weight: 500; font-size: 15px; }
.booking .price .was { text-decoration: line-through; color: var(--muted); font-size: 17px; font-weight: 500; }
.booking .rate-line { display: flex; align-items: center; gap: 7px; margin-top: 8px; font-size: 14px; font-weight: 600; }
.booking .rate-line svg { width: 15px; height: 15px; color: var(--gold); }
.booking .rate-line span { color: var(--muted); font-weight: 500; }
.booking .bk-form { padding: 18px 24px 24px; }
.date-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid var(--line-strong); border-radius: var(--r); overflow: hidden; margin-bottom: 12px; }
.date-grid .df { padding: 12px 14px; }
.date-grid .df:first-child { border-right: 1.5px solid var(--line-strong); }
.date-grid label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); display: block; }
.date-grid input { border: none; outline: none; font-weight: 600; font-size: 15px; width: 100%; margin-top: 3px; }
.guests { display: flex; align-items: center; justify-content: space-between; border: 1.5px solid var(--line-strong); border-radius: var(--r); padding: 11px 16px; margin-bottom: 16px; }
.guests label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.guests select { border: none; outline: none; font-weight: 600; font-size: 15px; }
.booking .btn { width: 100%; padding-block: 15px; font-size: 16px; }
.booking .bk-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }
.bk-rows { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.bk-rows .r { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--body); }
.bk-rows .r.tot { padding-top: 12px; border-top: 1px solid var(--line); font-weight: 700; color: var(--ink); font-size: 16px; }
.bk-help { display: flex; align-items: center; gap: 10px; padding: 14px 24px; background: var(--sand); border-top: 1px solid var(--line); font-size: 13.5px; color: var(--body); }
.bk-help svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }

/* verified badge */
.verified-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 11px 5px 8px; border-radius: var(--pill); background: #E7F4EC; color: #1f7a48; font-size: 12.5px; font-weight: 700; letter-spacing: .01em; vertical-align: middle; font-family: var(--sans); }
.verified-badge svg { width: 15px; height: 15px; }
.verified-badge.lg { font-size: 13.5px; padding: 6px 14px 6px 10px; }

/* working hours card */
.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.hours-card .hc-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.hours-card .hc-head h3 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.hours-card .hc-head h3 svg { width: 18px; height: 18px; color: var(--coral); }
.hours-card .open-now { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #1f8a52; }
.hours-card .open-now::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #1f8a52; box-shadow: 0 0 0 3px rgba(31,138,82,.18); }
.hours-list { padding: 8px 20px 14px; }
.hours-list .hrow { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; font-size: 14.5px; border-bottom: 1px solid var(--sand-2); }
.hours-list .hrow:last-child { border-bottom: none; }
.hours-list .hrow .day { color: var(--body); font-weight: 500; }
.hours-list .hrow.today .day { color: var(--ink); font-weight: 700; }
.hours-list .hrow.today { position: relative; }
.hours-list .hrow .time { font-weight: 600; color: var(--ink); }
.hours-list .hrow .time.closed { color: var(--muted); font-weight: 500; }
.hours-list .hrow.today .time { color: var(--coral-deep); }
.cdf-booking-embed .opening-hours,
.cdf-booking-embed .opening-hours-widget,
.cdf-booking-embed .widget_opening_hours { display: none !important; }

/* points of interest */
.poi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px){ .poi-grid { grid-template-columns: 1fr; } }
.poi { display: flex; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: .18s; }
.poi:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.poi .pic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.poi .pic svg { width: 22px; height: 22px; }
.poi .pic.beach { background: #E4F3F6; color: #1b7f93; }
.poi .pic.sight { background: var(--coral-soft); color: var(--coral-deep); }
.poi .pic.eat { background: #FBEEDB; color: #b27512; }
.poi .pic.transit { background: #EAEAF4; color: #4b4b87; }
.poi .pmeta { min-width: 0; flex: 1; }
.poi h4 { font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.poi .ptype { font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.poi .pdist { display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.poi .pdist svg { width: 14px; height: 14px; color: var(--coral); }

/* reviews */
.rev-summary { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: center; padding: 26px 0 28px; background: transparent; border-radius: 0; margin-bottom: 22px; }
@media (max-width:640px){ .rev-summary { grid-template-columns: 1fr; gap: 20px; } }
.rev-big { text-align: center; }
.rev-big .n { font-family: var(--serif); font-size: 62px; font-weight: 500; line-height: .95; }
.rev-big .stars { color: var(--gold); margin-top: 8px; display: flex; gap: 2px; justify-content: center; }
.rev-big .stars svg { width: 18px; height: 18px; }
.rev-big .c { color: var(--muted); font-size: 14px; margin-top: 6px; }
.rev-bars { display: flex; flex-direction: column; gap: 14px; }
.rev-bar { display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.rev-bar .lab { width: 110px; color: var(--ink); font-weight: 600; }
.rev-bar .track { flex: 1; height: 8px; background: #e8ddce; border-radius: 99px; overflow: hidden; }
.rev-bar .fill { height: 100%; background: var(--coral); border-radius: 99px; }
.rev-bar .v { width: 30px; text-align: right; font-weight: 700; }
.rev-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width:760px){ .rev-list { grid-template-columns: 1fr; } }
.review { border: 1px solid var(--line); border-radius: var(--r); padding: 24px 20px; background: transparent; }
.review .top { display: flex; align-items: center; gap: 12px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 800; }
.review .who b { font-size: 15px; font-weight: 700; display: block; }
.review .who span { font-size: 12.5px; color: var(--muted); }
.review .rstars { margin-left: auto; display: flex; gap: 2px; color: var(--gold); }
.review .rstars svg { width: 14px; height: 14px; }
.review p { margin-top: 16px; font-size: 14.5px; color: var(--body); line-height: 1.65; }
.rev-read-all {
  display: inline-flex; align-items: center; justify-content: center; margin-top: 22px;
  border: 1.5px solid var(--line-strong); border-radius: var(--pill); padding: 13px 24px;
  color: var(--ink) !important; background: transparent; font-weight: 700;
}
.rev-read-all:hover { border-color: var(--coral); color: var(--coral) !important; }

/* Reviews: we render our own NewDesign summary + list (rev-summary / rev-list)
   above. Listeo's reviews partial is embedded ONLY for its working review form,
   so hide its duplicate rating overview, bars and comment list  -  keep #add-review. */
.cdf-reviews #listing-reviews,
.cdf-reviews #comments.comments,
.cdf-reviews .rating-overview,
.cdf-reviews .listing-reviews-placeholder { display: none !important; }
.cdf-reviews .wpa-test-msg,
.cdf-reviews .altEmail_container { display: none !important; }
.cdf-reviews #add-review {
  display: block; margin-top: 26px; padding: 24px; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm);
}
.cdf-reviews #add-review .comment-reply-title,
.cdf-reviews #add-review h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 18px; }
.cdf-reviews #add-review .logged-in-as { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.cdf-reviews #add-review label { display: block; color: var(--ink); font-weight: 700; margin: 14px 0 6px; }
.cdf-reviews #add-review em,
.cdf-reviews #add-review .comment-notes { color: var(--body); font-size: 14.5px; }
.cdf-reviews #add-review .leave_rating,
.cdf-reviews #add-review .comment-form-rating,
.cdf-reviews #add-review .star-rating-form { margin: 10px 0 18px; }
.cdf-reviews #add-review .clearfix { margin-bottom: 14px; }
.cdf-reviews #add-review input[type="radio"] { accent-color: var(--coral); margin: 0 5px 0 0; }
.cdf-reviews #add-review input[type="file"] {
  width: 100%; max-width: 420px; border: 1.5px solid var(--line-strong);
  border-radius: var(--r); background: var(--sand); padding: 10px 12px;
}
.cdf-reviews #add-review textarea { width: 100%; min-height: 190px; resize: vertical; }
.cdf-reviews #add-review .form-submit { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.cdf-reviews #add-review input[type="submit"] { width: auto; min-width: 154px; }

/* ---------- AI Review Highlights plugin (ai-review-summary) ----------
   Re-skin the plugin output (rendered via listeo/single-listing/after-content,
   so it lives inside .cdf-listeo-embed) to match the NewDesign sections.
   Scoped with .cdf-listeo-embed so it wins over the plugin's own CSS. */
.cdf-listeo-embed .ai-review-summary-container { margin: 0; }
.cdf-listeo-embed .ai-review-summary-container h3 {
  font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: -.01em;
  color: var(--ink); text-align: left; margin: 0 0 18px;
}
.cdf-listeo-embed .ai-review-summary-container > .line,
.cdf-listeo-embed .ai-review-summary-container > .clearfix { display: none; }

.cdf-listeo-embed .airs-summary-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: #fff; box-shadow: var(--shadow-sm); padding: 26px;
}
@media (max-width: 760px) { .cdf-listeo-embed .airs-summary-grid { grid-template-columns: 1fr; gap: 14px; padding: 20px; } }

.cdf-listeo-embed .airs-summary-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 18px; background: var(--sand); border: 1px solid var(--line);
  border-left: 3px solid var(--line-strong); border-radius: var(--r);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cdf-listeo-embed .airs-summary-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.cdf-listeo-embed .airs-card-icon {
  flex-shrink: 0; width: 34px; height: 34px; margin: 2px 0 0; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; font-weight: 700; line-height: 1;
}
.cdf-listeo-embed .airs-card-icon svg { display: none; }

.cdf-listeo-embed .airs-card-content h4 {
  font-family: var(--sans); margin: 4px 0 6px; font-size: 15.5px; font-weight: 700; color: var(--ink);
}
.cdf-listeo-embed .airs-card-content p { margin: 0; font-size: 14px; color: var(--body); line-height: 1.6; font-weight: 400; }

/* Positive sentiment */
.cdf-listeo-embed .airs-sentiment-positive { border-left-color: #2f8f5b; }
.cdf-listeo-embed .airs-sentiment-positive .airs-card-icon { background: rgba(47,143,91,.12); }
.cdf-listeo-embed .airs-sentiment-positive .airs-card-icon::before { content: "\002B"; color: #2f8f5b; }

/* Negative sentiment */
.cdf-listeo-embed .airs-sentiment-negative { border-left-color: var(--coral); }
.cdf-listeo-embed .airs-sentiment-negative .airs-card-icon { background: var(--coral-soft); }
.cdf-listeo-embed .airs-sentiment-negative .airs-card-icon::before { content: "\2212"; color: var(--coral-deep); }

/* Title-only variant (descriptions off): single dense list */
.cdf-listeo-embed .airs-summary-card.airs-title-only { padding: 14px 16px; align-items: center; }
.cdf-listeo-embed .airs-summary-card.airs-title-only .airs-card-content h4 { margin: 0; }

/* map block */
.map-block { height: 340px; border-radius: var(--r); overflow: hidden; position: relative; border: 1px solid var(--line); }
.map-block .pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-100%); width: 48px; height: 48px; border-radius: 50% 50% 50% 0; background: var(--coral); transform-origin: bottom; rotate: -45deg; translate: -50% -50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); }
.map-block .pin svg { width: 22px; height: 22px; color: #fff; rotate: 45deg; }

/* ---------- amenity icon (masked term SVG → coral, like category icons) ---------- */
.amenity .ai .mski { width: 21px; height: 21px; display: block; background: var(--coral-deep);
  -webkit-mask: var(--cdf-mask) center / contain no-repeat; mask: var(--cdf-mask) center / contain no-repeat; }
.amenity .ai i { font-size: 20px; line-height: 1; color: var(--coral-deep); }

/* ---------- bridge: embedded Listeo partials (booking / reviews / map / pricing) ---------- */
/* These keep Listeo's own markup (so they stay functional); we reset bootstrap
   widths and align typography/colours so they sit cleanly in our cards. */
.cdf-listeo-embed .row { display: block; margin: 0; }
.cdf-listeo-embed [class*="col-"] { width: auto; float: none; padding: 0; }
.cdf-listeo-embed .listeo-single-listing-section,
.cdf-listeo-embed .listing-section { margin: 0; padding: 0; border: none; box-shadow: none; background: none; }
.cdf-listeo-embed h2, .cdf-listeo-embed h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; }
.cdf-listeo-embed a { color: var(--coral); }
.cdf-listeo-embed .button, .cdf-listeo-embed button.button,
.cdf-listeo-embed input[type="submit"] {
  background: var(--coral); border: none; color: #fff; border-radius: var(--pill);
  font-weight: 700; padding: 13px 22px; box-shadow: var(--shadow-coral); transition: .2s;
}
.cdf-listeo-embed .button:hover, .cdf-listeo-embed input[type="submit"]:hover { background: var(--coral-deep); }
.cdf-listeo-embed input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.cdf-listeo-embed select, .cdf-listeo-embed textarea {
  border: 1.5px solid var(--line-strong); border-radius: var(--r); background: var(--sand);
  padding: 11px 14px; font-size: 15px; font-weight: 500;
}
.cdf-listeo-embed input:focus, .cdf-listeo-embed select:focus, .cdf-listeo-embed textarea:focus {
  border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px var(--coral-soft); outline: none;
}
.cdf-listeo-embed,
.cdf-listeo-embed > *,
.cdf-listeo-embed iframe,
.cdf-listeo-embed embed,
.cdf-listeo-embed object,
.cdf-listeo-embed table,
.cdf-listeo-embed [data-gyg-widget],
.cdf-listeo-embed [class*="gyg"],
.cdf-listeo-embed [class*="getyourguide"],
.cdf-listeo-embed [id*="gyg"],
.cdf-listeo-embed [id*="getyourguide"] {
  max-width: 100% !important;
}
.cdf-listeo-embed iframe,
.cdf-listeo-embed embed,
.cdf-listeo-embed object,
.cdf-listeo-embed [data-gyg-widget] {
  width: 100% !important;
  min-width: 0 !important;
}
.cdf-listeo-embed table { display: block; overflow-x: auto; }
/* booking widget shell → our card look */
.cdf-booking-embed .widget, .cdf-booking-embed .listeo-booking-widget,
.cdf-booking-embed #booking-widget {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 22px 24px; margin: 0 0 14px;
}
/* real map container from Listeo location partial */
.cdf-listeo-embed #single-listing-map, .cdf-listeo-embed .listeo-map,
.cdf-listeo-embed .listing-map {
  height: 340px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
}

/* ---------- contact & social links (Listeo socials partial) ---------- */
.cdf-contact-links .listing-links-container { margin: 0; }
.cdf-contact-links ul.listing-links {
  list-style: none; margin: 0 0 10px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cdf-contact-links ul.listing-links:last-child { margin-bottom: 0; }
.cdf-contact-links ul.listing-links li { margin: 0; }
.cdf-contact-links ul.listing-links li a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: var(--pill);
  border: 1.5px solid var(--line-strong); background: var(--sand);
  color: var(--ink); font-weight: 600; font-size: 14px; line-height: 1;
  text-decoration: none; transition: .18s;
}
.cdf-contact-links ul.listing-links li a:hover {
  border-color: var(--coral); background: var(--coral-soft); color: var(--coral-deep);
}
.cdf-contact-links ul.listing-links li a i { font-size: 16px; line-height: 1; color: var(--coral); }
.cdf-contact-links ul.listing-links li a:hover i { color: var(--coral-deep); }
/* primary contact row (phone / email / website) reads stronger */
.cdf-contact-links ul.contact-links li a {
  background: #fff; border-color: var(--line);
}
.cdf-contact-links .clearfix { display: none; }

/* ---------- gallery lightbox ---------- */
.cdf-lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center;
  background: rgba(8,18,26,.92); padding: 40px; }
.cdf-lightbox.open { display: grid; }
.cdf-lightbox .lb-stage { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cdf-lightbox .lb-stage img { max-width: 100%; max-height: 80vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.cdf-lightbox .lb-count { color: rgba(255,255,255,.8); font-size: 13.5px; font-weight: 600; }
.cdf-lightbox .lb-close { position: absolute; top: 22px; right: 26px; background: none; border: none; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; opacity: .8; }
.cdf-lightbox .lb-close:hover { opacity: 1; }
.cdf-lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; font-size: 30px; cursor: pointer; transition: .2s; }
.cdf-lightbox .lb-nav:hover { background: var(--coral); }
.cdf-lightbox .lb-prev { left: 24px; }
.cdf-lightbox .lb-next { right: 24px; }
.gallery .g { cursor: pointer; }

/* ============================================================
   Single listing  -  professional polish for embedded Listeo bits
   ============================================================ */
/* location: hide Listeo's own "Location" heading (we show "Where you'll be").
   IMPORTANT: mirror stock Listeo sizing 1:1 so Leaflet computes the right size
   at init  -  the CONTAINER stays height:auto (never fixed/overflow-hidden, or
   Leaflet reads a wrong height and the tiles render broken); only #cdfListingMap
   itself gets a fixed height. */
.cdf-location #listing-location > h2,
.cdf-location .listing-desc-headline { display: none; }
/* dress the real Leaflet map as the NewDesign ".map-block" (Divani mockup) */
.cdf-location .cdf-map-wrap {
  height: 340px; position: relative; display: block; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--sand);
}
.cdf-location #cdfListingMap {
  height: 100%; width: 100%; border: 0; border-radius: 0; overflow: hidden;
  z-index: 1; background: var(--sand-2); cursor: grab; touch-action: none;
}
.cdf-location #cdfListingMap.is-dragging {
  cursor: grabbing;
}
/* Esri World Topographic base map: muted earthy tones. A very light, warm lift
   to tie it to the site's sand/coral palette without making it bright. */
.cdf-location .leaflet-tile-pane {
  filter: saturate(1.04) brightness(0.98) sepia(0.06);
}
/* Branded map marker (Leaflet divIcon) — pure HTML/CSS so it always renders,
   including on phones/tablets where external PNG markers can fail to load.
   The glyph inside is the listing category's own icon (forced white). */
.cdf-location .cdf-pin-wrap { background: none; border: 0; }
.cdf-location .cdf-pin {
  position: absolute; left: 1px; top: 0; display: block; width: 40px; height: 40px;
  background: var(--coral); border: 2px solid #fff;
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  box-shadow: 0 10px 22px rgba(20,42,58,.28);
}
.cdf-location .cdf-pin-i {
  position: absolute; inset: 0; display: grid; place-items: center; transform: rotate(45deg);
}
.cdf-location .cdf-pin-i svg { width: 20px; height: 20px; fill: #fff; }
.cdf-location .cdf-pin-i img {
  width: 22px; height: 22px; object-fit: contain;
  filter: brightness(0) invert(1);
}
/* On-brand Leaflet popup */
.cdf-location .leaflet-popup-content-wrap {
  border-radius: var(--r); box-shadow: var(--shadow); border: 1px solid var(--line);
}
.cdf-location .leaflet-popup-content { margin: 12px 16px; color: var(--body); font-size: 13.5px; line-height: 1.45; }
.cdf-location .leaflet-popup-content strong { color: var(--coral); font-size: 14.5px; }
.cdf-location .leaflet-popup-tip { box-shadow: var(--shadow); }
.cdf-location .leaflet-container { position: relative; overflow: hidden; width: 100%; height: 100%; background: #ddd; outline: 0; }
.cdf-location .leaflet-pane,
.cdf-location .leaflet-tile,
.cdf-location .leaflet-marker-icon,
.cdf-location .leaflet-marker-shadow,
.cdf-location .leaflet-tile-container,
.cdf-location .leaflet-pane > svg,
.cdf-location .leaflet-pane > canvas,
.cdf-location .leaflet-zoom-box,
.cdf-location .leaflet-image-layer,
.cdf-location .leaflet-layer { position: absolute; left: 0; top: 0; }
.cdf-location .leaflet-container img,
.cdf-location .leaflet-tile { max-width: none !important; max-height: none !important; }
.cdf-location .leaflet-pane { z-index: 400; }
.cdf-location .leaflet-tile-pane { z-index: 200; }
.cdf-location .leaflet-overlay-pane { z-index: 400; }
.cdf-location .leaflet-shadow-pane { z-index: 500; }
.cdf-location .leaflet-marker-pane { z-index: 600; }
.cdf-location .leaflet-tooltip-pane { z-index: 650; }
.cdf-location .leaflet-popup-pane { z-index: 700; }
.cdf-location .leaflet-top,
.cdf-location .leaflet-bottom { position: absolute; z-index: 1000; pointer-events: none; }
.cdf-location .leaflet-top { top: 0; }
.cdf-location .leaflet-right { right: 0; }
.cdf-location .leaflet-bottom { bottom: 0; }
.cdf-location .leaflet-left { left: 0; }
.cdf-location .leaflet-control { position: relative; z-index: 800; pointer-events: auto; float: left; clear: both; }
.cdf-location .leaflet-right .leaflet-control { float: right; }
.cdf-location .leaflet-top .leaflet-control { margin-top: 10px; }
.cdf-location .leaflet-left .leaflet-control { margin-left: 10px; }
.cdf-location .leaflet-right .leaflet-control { margin-right: 10px; }
.cdf-location .leaflet-bottom .leaflet-control { margin-bottom: 10px; }
/* NewDesign skin for Listeo Core's stock single-listing marker. */
.cdf-location .listeo-marker-icon .marker-card,
.cdf-location .map-marker-container .marker-card { filter: drop-shadow(0 12px 20px rgba(10,30,43,.22)); }
.cdf-location .listeo-marker-icon .marker-arrow,
.cdf-location .map-marker-container .marker-arrow { border-top-color: var(--coral); }
.cdf-location .listeo-marker-icon i,
.cdf-location .map-marker-container i { color: inherit; font-size: 18px; line-height: 1; }
.cdf-location .listeo-marker-icon svg,
.cdf-location .map-marker-container svg {
  width: 22px !important; height: 22px !important; max-width: 22px !important; max-height: 22px !important;
  display: block !important; color: inherit; fill: currentColor; stroke: currentColor;
  position: static !important; inset: auto !important; transform: none !important; flex: 0 0 22px;
}
.cdf-location .listeo-marker-icon svg *,
.cdf-location .map-marker-container svg * { fill: currentColor !important; stroke: currentColor !important; }
.cdf-location .listeo-marker-icon img,
.cdf-location .map-marker-container img {
  width: 22px !important; height: 22px !important; max-width: 22px !important; max-height: 22px !important;
  display: block !important; object-fit: contain !important; position: static !important; inset: auto !important;
}
.cdf-location .leaflet-div-icon.listeo-marker-icon,
.cdf-location .listeo-marker-icon,
.cdf-location .map-marker-container {
  width: 40px !important; height: 48px !important; margin-left: -20px !important; margin-top: -48px !important;
  background: transparent !important; border: 0 !important; overflow: visible !important;
}
.cdf-location .listeo-marker-icon .marker-container,
.cdf-location .map-marker-container .marker-container {
  position: relative; width: 40px; height: 40px; margin: 0; top: 0; border-radius: 50%;
  background: transparent !important; cursor: default;
}
.cdf-location .listeo-marker-icon .marker-card,
.cdf-location .map-marker-container .marker-card {
  position: absolute; inset: 0; width: 40px; height: 40px; background: transparent !important;
  transform-style: preserve-3d;
}
.cdf-location .listeo-marker-icon .face,
.cdf-location .map-marker-container .face {
  position: absolute; inset: 0; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; backface-visibility: hidden; box-sizing: border-box; overflow: hidden;
}
.cdf-location .listeo-marker-icon .face.front,
.cdf-location .map-marker-container .face.front { background: #fff; border: 2px solid var(--coral); color: var(--coral); }
.cdf-location .listeo-marker-icon .face.back,
.cdf-location .map-marker-container .face.back { background: var(--coral); border: 2px solid var(--coral); color: #fff; transform: rotateY(180deg); }
.cdf-location .listeo-marker-icon .face i,
.cdf-location .map-marker-container .face i { line-height: 1; font-size: 18px; color: currentColor; }
.cdf-location .listeo-marker-icon .marker-arrow,
.cdf-location .map-marker-container .marker-arrow {
  top: 38px; left: 50%; width: 0; height: 0; border-style: solid; border-width: 8px 5px 0;
  border-color: var(--coral) transparent transparent; transform: translateX(-50%); background: transparent !important;
}
/* Leaflet zoom controls → on-brand */
.cdf-location .leaflet-control-zoom { border: none; box-shadow: var(--shadow); border-radius: var(--pill); overflow: hidden; }
.cdf-location .leaflet-control-zoom a {
  width: 38px; height: 38px; line-height: 38px; color: var(--ink); background: #fff;
  border: none; font-size: 16px; display: grid; place-items: center; transition: .15s;
}
.cdf-location .leaflet-control-zoom a:hover { background: var(--coral); color: #fff; }
.cdf-location .leaflet-control-attribution { font-size: 10.5px; background: rgba(255,255,255,.82); border-radius: 8px 0 0 0; }
.cdf-location .leaflet-control-attribution a { color: var(--coral); }
/* "Get Directions" as a floating on-brand pill over the map (top-left) */
.cdf-location .cdf-map-wrap { position: relative; }
.cdf-location #getDirection,
.cdf-location .cdf-map-directions {
  position: absolute; top: 16px; right: 16px; z-index: 600;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); font-weight: 700; font-size: 13.5px;
  padding: 10px 16px; border-radius: var(--pill); box-shadow: var(--shadow);
  border: 1px solid var(--line); transition: .15s;
}
.cdf-location #getDirection:hover,
.cdf-location .cdf-map-directions:hover { color: var(--coral); border-color: var(--coral); }
.cdf-location #getDirection::before,
.cdf-location .cdf-map-directions::before {
  content: ""; width: 16px; height: 16px; flex-shrink: 0;
  background: currentColor; -webkit-mask: var(--cdf-compass) center/contain no-repeat; mask: var(--cdf-compass) center/contain no-repeat;
}
.cdf-location { --cdf-compass: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E"); }

/* AddToAny share row inside the description  -  tighten spacing */
.cdf-entry .addtoany_share_save_container { margin-top: 22px; }

/* Sidebar Listeo widgets → our card look */
.cdf-booking-embed .listing-widget,
.cdf-booking-embed .boxed-widget,
.cdf-side-extras .listeo-poi-container,
.cdf-side-extras .boxed-widget {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); padding: 22px 22px; margin: 0 0 16px;
}
.cdf-booking-embed .widget-title,
.cdf-booking-embed h3.widget-title,
.cdf-side-extras .listeo-poi-header h3 {
  font-family: var(--serif); font-weight: 600; font-size: 18px; margin: 0 0 16px;
  display: flex; align-items: center; gap: 9px; color: var(--ink); letter-spacing: -.01em;
}
.cdf-booking-embed .widget-title i, .cdf-side-extras h3 i { color: var(--coral); }
/* buttons inside embedded widgets */
.cdf-booking-embed .button, .cdf-side-extras .button,
.cdf-booking-embed input[type="submit"], .cdf-booking-embed .wpcf7-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--coral); color: #fff; border: none; border-radius: var(--pill);
  font-weight: 700; font-size: 15px; padding: 13px 22px; box-shadow: var(--shadow-coral);
  transition: .2s; cursor: pointer; width: 100%; text-align: center;
}
.cdf-booking-embed .button:hover, .cdf-side-extras .button:hover,
.cdf-booking-embed .wpcf7-submit:hover { background: var(--coral-deep); }
.cdf-booking-embed .button.fullwidth { width: 100%; }
/* inputs (contact-vendor CF7) */
.cdf-booking-embed input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
.cdf-booking-embed textarea, .cdf-booking-embed select {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--r);
  background: var(--sand); padding: 12px 14px; font-size: 15px; font-weight: 500; margin-bottom: 10px;
}
.cdf-booking-embed input:focus, .cdf-booking-embed textarea:focus {
  border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px var(--coral-soft); outline: none;
}
.cdf-booking-embed .wpa-test-msg, .cdf-booking-embed .altEmail_container { display: none !important; }
/* owner / hosted-by widget */
.cdf-booking-embed .hosted-by-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cdf-booking-embed .hosted-by-avatar img, .cdf-booking-embed .avatar { border-radius: 50%; }
.cdf-booking-embed .listing-details-sidebar a { color: var(--coral); }
/* share buttons row */
.cdf-booking-embed .share-buttons { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.cdf-booking-embed .share-buttons li a {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  padding: 7px 12px; border: 1px solid var(--line); border-radius: var(--pill); color: var(--body); background: #fff;
}
.cdf-booking-embed .share-buttons li a:hover { border-color: var(--coral); color: var(--coral); }
.cdf-booking-embed .like-button { width: 100%; margin-bottom: 14px; background: var(--coral-soft); color: var(--coral-deep); border: none; border-radius: var(--pill); padding: 11px; font-weight: 700; }

/* article-ads slider inside sidebar */
.cdf-booking-embed .article-card, .cdf-side-extras .article-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin: 0 6px;
}
.cdf-booking-embed .article-card .article-title, .cdf-side-extras .article-card .article-title { font-family: var(--serif); font-weight: 500; font-size: 17px; line-height: 1.2; }
.cdf-booking-embed .article-card .article-title a { color: var(--ink); }
.cdf-booking-embed .article-card .read-more, .cdf-side-extras .article-card .read-more { color: var(--coral); font-weight: 700; }
.cdf-booking-embed .article-card i, .cdf-side-extras .article-card i { display: none; }
.cdf-booking-embed .listing-badge, .cdf-after-content .listing-badge { background: var(--coral) !important; border-radius: var(--pill); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; }

/* POI tabs */
.cdf-side-extras .poi-tabs-nav { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 14px; list-style: none; border: none; }
.cdf-side-extras .poi-tabs-nav li a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: var(--pill); font-size: 13px; font-weight: 600; color: var(--body); background: var(--sand-2); }
.cdf-side-extras .poi-tabs-nav li.active a { background: var(--coral); color: #fff; }
.cdf-side-extras .poi-item { display: flex; flex-direction: column; gap: 6px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cdf-side-extras .poi-item:last-child { border-bottom: none; }
.cdf-side-extras .poi-name { font-size: 15px; font-weight: 700; }
.cdf-side-extras .poi-directions-btn { color: var(--coral); font-weight: 600; font-size: 13.5px; }
.cdf-side-extras .poi-stars { color: var(--gold); }

/* after-content plugin section (articles + sponsored tours) */
.cdf-after-content .listing-articles-section-header h3,
.cdf-after-content .gygil-related-tours__title { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -.01em; }
.cdf-after-content .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px){ .cdf-after-content .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .cdf-after-content .articles-grid { grid-template-columns: 1fr; } }
.cdf-after-content .article-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; }
.cdf-after-content .article-card .article-title { font-family: var(--serif); font-weight: 500; font-size: 18px; line-height: 1.2; }
.cdf-after-content .article-card .article-title a { color: var(--ink); }
.cdf-after-content .article-card .article-title a:hover { color: var(--coral); }
.cdf-after-content .article-card .read-more { color: var(--coral); font-weight: 700; }
.cdf-after-content .article-card i { display: none; }

/* ---- sidebar de-clutter & polish ---- */
/* neutralise Listeo's hard-coded margin utilities inside our embeds */
.cdf-booking-embed [class*="margin-"], .cdf-side-extras [class*="margin-"] { margin-top: 0 !important; margin-bottom: 0 !important; }
.cdf-booking-embed .listing-widget + .listing-widget { margin-top: 16px !important; }
/* Sponsored "Articles & Ads" slider in the sidebar  -  distinct sponsored content,
   so show it and tame slick so the slides don't overflow the card. */
.cdf-booking-embed .listing_article_ads-widget { display: block; overflow: hidden; }
.cdf-booking-embed .listing_article_ads-widget .slick-list { overflow: hidden; border-radius: var(--r); }
.cdf-booking-embed .listing_article_ads-widget .slick-track { display: flex; align-items: stretch; }
.cdf-booking-embed .listing_article_ads-widget .slick-slide { height: auto; }
.cdf-booking-embed .listing_article_ads-widget .slick-slide > div { height: 100%; }
.cdf-booking-embed .listing_article_ads-widget .article-card { margin: 0; display: flex; flex-direction: column; height: 100%; }
.cdf-booking-embed .listing_article_ads-widget .article-card img { width: 100%; height: 150px; object-fit: cover; }
.cdf-booking-embed .listing_article_ads-widget .article-card .article-content,
.cdf-booking-embed .listing_article_ads-widget .article-card .article-body { padding: 14px 16px; }
.cdf-booking-embed .listing_article_ads-widget .slick-dots { display: flex; justify-content: center; gap: 7px; padding: 12px 0 0; margin: 0; list-style: none; }
.cdf-booking-embed .listing_article_ads-widget .slick-dots li button { width: 8px; height: 8px; padding: 0; border-radius: 50%; background: var(--line-strong); text-indent: -9999px; overflow: hidden; }
.cdf-booking-embed .listing_article_ads-widget .slick-dots li.slick-active button { background: var(--coral); }
.cdf-booking-embed .listing_article_ads-widget .slick-arrow { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); z-index: 2; }
.cdf-booking-embed .listing_article_ads-widget .slick-arrow:hover { border-color: var(--coral); color: var(--coral); }
/* booking ("Book Now") widget → prominent CTA card */
.cdf-booking-embed .booking-external-widget .button { font-size: 16px; padding: 15px 22px; }
/* preferred-contact radios → segmented pill toggle on our theme */
.cdf-booking-embed .preferred-contact-method h5,
.cdf-side-extras .preferred-contact-method h5 { font-size: 13px; font-weight: 700; margin: 6px 0 8px; }
.cdf-booking-embed .wpcf7-radio,
.cdf-side-extras .wpcf7-radio {
  display: inline-flex; gap: 4px; padding: 4px; background: var(--sand);
  border: 1px solid var(--line); border-radius: var(--pill);
}
.cdf-booking-embed .wpcf7-radio .wpcf7-list-item,
.cdf-side-extras .wpcf7-radio .wpcf7-list-item { margin: 0 !important; }
.cdf-booking-embed .wpcf7-radio .wpcf7-list-item label,
.cdf-side-extras .wpcf7-radio .wpcf7-list-item label {
  position: relative; display: inline-flex; align-items: center; cursor: pointer;
}
/* hide the native radio dot; the label pill carries the state */
.cdf-booking-embed .wpcf7-radio input[type="radio"],
.cdf-side-extras .wpcf7-radio input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0; margin: 0; pointer-events: none;
}
.cdf-booking-embed .wpcf7-radio .wpcf7-list-item-label,
.cdf-side-extras .wpcf7-radio .wpcf7-list-item-label {
  display: inline-block; padding: 8px 18px; border-radius: var(--pill);
  font-size: 14px; font-weight: 600; color: var(--body); transition: .15s; white-space: nowrap;
}
.cdf-booking-embed .wpcf7-radio label:hover .wpcf7-list-item-label,
.cdf-side-extras .wpcf7-radio label:hover .wpcf7-list-item-label { color: var(--ink); }
.cdf-booking-embed .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label,
.cdf-side-extras .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label {
  background: var(--coral); color: #fff; box-shadow: var(--shadow-sm);
}
.cdf-booking-embed .wpcf7-radio input[type="radio"]:focus-visible + .wpcf7-list-item-label,
.cdf-side-extras .wpcf7-radio input[type="radio"]:focus-visible + .wpcf7-list-item-label {
  outline: 2px solid var(--coral); outline-offset: 2px;
}

/* in-page section nav (scroll-spy) */
.cdf-lnav {
  position: sticky; top: calc(var(--header-h, 70px) + 8px); z-index: 30;
  display: flex; gap: 6px; margin: 0 0 24px; padding: 6px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--pill); box-shadow: var(--shadow-sm);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cdf-lnav::-webkit-scrollbar { display: none; }
.cdf-lnav a {
  flex: 0 0 auto; padding: 9px 16px; border-radius: var(--pill);
  font-size: 14px; font-weight: 600; color: var(--body); white-space: nowrap; transition: .15s;
}
.cdf-lnav a:hover { background: var(--sand); color: var(--ink); }
.cdf-lnav a.active { background: var(--coral); color: #fff; }
[id^="cdf-sec-"] { scroll-margin-top: calc(var(--header-h, 70px) + 80px); }

/* ============================================================
   Mobile sticky booking CTA + single-listing responsive polish
   ============================================================ */
.cdf-mobile-cta { display: none; }

@media (max-width: 1080px) {
  /* booking column should flow naturally once stacked (not sticky) */
  .booking-col { position: static; top: auto; }
  .listing-grid { margin-top: 28px; }

  /* sticky bottom CTA */
  .cdf-mobile-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    display: flex; align-items: center; gap: 12px;
    padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 22px rgba(15,23,32,.10);
  }
  .cdf-mobile-cta .mcta-ghost {
    display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
    font-weight: 700; font-size: 15px; color: var(--ink);
  }
  .cdf-mobile-cta .mcta-ghost svg { width: 18px; height: 18px; color: var(--coral); }
  .cdf-mobile-cta .mcta-primary {
    margin-left: auto; flex: 1 1 auto; max-width: 58%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--coral); color: #fff; font-weight: 700; font-size: 15px;
    padding: 13px 22px; border-radius: var(--pill); box-shadow: 0 6px 16px -6px var(--coral);
  }
  .cdf-mobile-cta .mcta-primary:active { background: var(--coral-deep); }
  /* keep the bar from hiding the last bit of content */
  body.cdf-has-mcta { padding-bottom: 78px; }
}

@media (max-width: 980px) {
  body.cdf-single-listing-page,
  body.cdf-single-listing-page .site {
    overflow-x: hidden;
  }
  .cdf-single-listing {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }
  .cdf-single-listing .gallery,
  .cdf-single-listing .listing-grid,
  .cdf-single-listing .l-title-row,
  .cdf-single-listing .l-sub,
  .cdf-single-listing .cdf-lnav,
  .cdf-single-listing .cdf-entry,
  .cdf-single-listing .booking-col,
  .cdf-single-listing .cdf-listeo-embed {
    max-width: 100%;
  }
  .cdf-single-listing .cdf-listeo-embed [style*="min-width"],
  .cdf-single-listing .cdf-listeo-embed [style*="width"] {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .cdf-before-content .gygil-related-tours,
  .cdf-after-content .gygil-related-tours {
    margin: 0;
    overflow: hidden;
  }
  .cdf-before-content .gygil-related-tours__grid,
  .cdf-after-content .gygil-related-tours__grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .cdf-before-content .gygil-related-tours__cell,
  .cdf-after-content .gygil-related-tours__cell {
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  main.wrap { padding-top: 18px; }
  .l-title-row h1 { font-size: clamp(24px, 7vw, 32px); }
  .gallery { height: 260px; }
  .amen-grid { grid-template-columns: 1fr; }
  .cdf-lnav { margin-bottom: 18px; }
}
/* owner "Send Message" + bookmark already styled as .button; spacing */
.cdf-booking-embed .send-message-to-owner { margin-top: 14px; }
.cdf-booking-embed .listing-share { border: none !important; padding: 0 !important; }

/* report link  -  subtle, centered, not a heavy button */
.cdf-side-extras .listing-report-button-container { margin: 0 0 14px; }
.cdf-side-extras .listing-report-button-container a {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  border: 1.5px solid var(--line-strong); border-radius: var(--pill); padding: 12px 18px;
  color: var(--ink); background: #fff; font-size: 14px; font-weight: 700;
}
.cdf-side-extras .listing-report-button-container a:hover { color: var(--coral); border-color: var(--coral); }
.cdf-side-extras #report-listing-dialog.mfp-hide { display: none !important; }
#report-listing-dialog.mfp-hide,
.listeo-dialog.mfp-hide { display: none !important; }

/* report listing  -  our own clean modal (replaces the broken Magnific popup) */
.cdf-report-back {
  position: fixed; inset: 0; z-index: 320; display: none; place-items: center;
  background: rgba(15,23,32,.55); backdrop-filter: blur(3px); padding: 20px;
}
.cdf-report-back.open { display: grid; }
.cdf-report-modal {
  position: relative; width: min(520px, 100%); max-height: 88vh; overflow: auto;
  background: #fff; border-radius: var(--r-lg, 18px); box-shadow: var(--shadow-lg);
  padding: 28px clamp(20px, 4vw, 34px) 30px;
}
.cdf-report-close {
  position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: none;
  background: var(--sand); border-radius: 50%; color: var(--ink); font-size: 22px; line-height: 1;
  cursor: pointer; transition: .18s; display: grid; place-items: center;
}
.cdf-report-close:hover { background: var(--coral); color: #fff; }
.cdf-report-modal #report-listing-dialog { display: block !important; box-shadow: none; padding: 0; }
.cdf-report-modal .small-dialog-header { border: none; padding: 0 0 6px; }
.cdf-report-modal .small-dialog-header h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: -.01em; }
.cdf-report-modal .message-reply { margin: 0; }
.cdf-report-modal .form-group { margin-top: 16px; }
.cdf-report-modal label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.cdf-report-modal select,
.cdf-report-modal textarea {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 12px 14px;
  font: inherit; font-size: 15px; background: #fff; color: var(--ink);
}
.cdf-report-modal textarea { min-height: 120px; resize: vertical; }
.cdf-report-modal select:focus,
.cdf-report-modal textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft); }
.cdf-report-modal button[type="submit"] {
  margin-top: 20px; width: 100%; border: none; border-radius: var(--pill); padding: 13px 20px;
  background: var(--coral); color: #fff; font-weight: 700; font-size: 15px; cursor: pointer; transition: .18s;
}
.cdf-report-modal button[type="submit"]:hover { background: var(--coral-deep); }
.cdf-report-modal .notification {
  margin-top: 16px; border-radius: 12px; padding: 11px 14px; font-size: 14px; font-weight: 600;
}
.cdf-report-modal .notification.success { background: #E7F4EC; color: #1f7a48; }
.cdf-report-modal .notification.error { background: #fdecec; color: #b3261e; }

/* bookmark / save heart next to the title */
.l-actions .fav { cursor: pointer; }
.l-actions .fav svg { transition: fill .18s, color .18s, transform .18s; }
.l-actions .fav:hover svg { color: var(--coral); }
.l-actions .fav.liked,
.l-actions .fav.listeo_core-unbookmark-it { border-color: var(--coral); }
.l-actions .fav.liked svg,
.l-actions .fav.listeo_core-unbookmark-it svg { fill: var(--coral); color: var(--coral); transform: scale(1.05); }

/* POI cards that open Google Maps in a new tab */
.cdf-poi .poi-item.cdf-poi-linked { transition: border-color .18s, box-shadow .18s, transform .18s; }
.cdf-poi .poi-item.cdf-poi-linked:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.cdf-poi .poi-item.cdf-poi-linked:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }

/* our external-booking card (affiliate / Trip.com) */
.cdf-ext-booking .btn { display: flex; align-items: center; justify-content: center; gap: 8px; }
.cdf-ext-booking .cdf-trust { gap: 11px; }
.cdf-ext-booking .cdf-trust .r { justify-content: flex-start; align-items: center; gap: 10px; color: var(--body); font-weight: 500; }
.cdf-ext-booking .cdf-trust .r svg { width: 17px; height: 17px; color: #1f7a48; flex-shrink: 0; }
.cdf-ext-booking .bk-help svg { color: var(--coral); }
/* when our card is present, hide Listeo's duplicate raw "Book Now" widget */
.cdf-has-ext-card .booking-external-widget { display: none !important; }

/* occupancy selector (Rooms / Adults / Children)  -  Trip.com style */
.cdf-occupancy { position: relative; margin-bottom: 16px; }
.cdf-occ-toggle {
  width: 100%; display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--line-strong); border-radius: var(--r); padding: 13px 16px;
  background: #fff; font-weight: 600; font-size: 15px; color: var(--ink); cursor: pointer; transition: .18s;
}
.cdf-occ-toggle:hover { border-color: var(--coral); }
.cdf-occ-ico { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }
.cdf-occ-summary { flex: 1; text-align: left; }
.cdf-occ-caret { width: 18px; height: 18px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.cdf-occupancy.open .cdf-occ-caret { transform: rotate(180deg); }
.cdf-occ-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 20;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 6px 16px 16px;
}
.cdf-occ-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cdf-occ-row:last-of-type { border-bottom: none; }
.cdf-occ-lab { font-weight: 600; font-size: 15px; color: var(--ink); }
.cdf-occ-lab small { color: var(--muted); font-weight: 500; font-size: 12.5px; margin-left: 4px; }
.cdf-occ-stepper { display: flex; align-items: center; gap: 14px; }
.cdf-occ-step {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line-strong);
  background: #fff; color: var(--coral); font-size: 18px; line-height: 1; display: grid; place-items: center;
  cursor: pointer; transition: .15s; padding: 0;
}
.cdf-occ-step:hover:not(:disabled) { border-color: var(--coral); background: var(--coral-soft); }
.cdf-occ-step:disabled { color: var(--line-strong); cursor: not-allowed; opacity: .55; }
.cdf-occ-val { min-width: 20px; text-align: center; font-weight: 700; font-size: 15px; }
.cdf-occ-done { margin-top: 14px; }

/* custom date-range picker (replaces native date inputs) */
.cdf-daterange { position: relative; }
.cdf-daterange .date-grid { margin-bottom: 12px; }
.cdf-dr-field {
  display: block; width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
  font: inherit; color: var(--ink); transition: background .15s;
}
.cdf-dr-field:hover { background: var(--sand); }
.cdf-dr-field.is-active { background: var(--coral-soft); box-shadow: inset 0 0 0 1.5px var(--coral); }
.cdf-dr-val { display: block; font-weight: 600; font-size: 15px; margin-top: 3px; }
.cdf-dr-cal {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 25;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 14px 16px 16px;
}
.cdf-dr-hint { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.cdf-dr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cdf-dr-title { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.cdf-dr-nav {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: .15s; padding: 0;
}
.cdf-dr-nav:hover { border-color: var(--coral); color: var(--coral); }
.cdf-dr-nav svg { width: 16px; height: 16px; }
.cdf-dr-wd, .cdf-dr-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cdf-dr-wd { margin-bottom: 4px; }
.cdf-dr-wd span { text-align: center; font-size: 11.5px; font-weight: 700; color: var(--muted); padding: 4px 0; }
.cdf-dr-days { gap: 2px; }
.cdf-dr-empty { aspect-ratio: 1; }
.cdf-dr-day {
  aspect-ratio: 1; border: none; background: none; border-radius: 9px; cursor: pointer;
  font: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink); transition: background .12s, color .12s;
}
.cdf-dr-day:hover:not(:disabled):not(.is-start):not(.is-end) { background: var(--coral-soft); }
.cdf-dr-day.is-in,
.cdf-dr-day.is-preview { background: var(--coral-soft); border-radius: 0; color: var(--coral-deep); }
.cdf-dr-day.is-start, .cdf-dr-day.is-end { background: var(--coral); color: #fff; }
.cdf-dr-day.is-start { border-radius: 9px 0 0 9px; }
.cdf-dr-day.is-end { border-radius: 0 9px 9px 0; }
.cdf-dr-day.is-start.is-end { border-radius: 9px; }
.cdf-dr-day.is-disabled, .cdf-dr-day:disabled { color: var(--line-strong); cursor: not-allowed; }
.cdf-dr-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.cdf-dr-nights { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.cdf-ext-booking .cdf-dr-done { margin: 0; width: auto; padding: 9px 22px; font-size: 14px; }

/* "Book Now" external-booking widget → prominent CTA card */
.cdf-booking-embed .booking-external-widget {
  background: linear-gradient(180deg, var(--coral-soft), #fff); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 18px 20px; text-align: center;
}
.cdf-booking-embed .booking-external-widget .widget-title,
.cdf-booking-embed .booking-external-widget h3.widget-title {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--serif); font-weight: 500; font-size: 19px; margin-bottom: 14px;
}
.cdf-booking-embed .booking-external-widget #booking-widget-anchor,
.cdf-booking-embed .booking-external-widget #form-booking { margin: 0 !important; }
.cdf-booking-embed .booking-external-widget .button.fullwidth {
  width: 100%; font-size: 16px; font-weight: 700; padding: 15px 22px; border-radius: var(--pill);
  box-shadow: 0 8px 20px -8px var(--coral); transition: .18s;
}
.cdf-booking-embed .booking-external-widget .button.fullwidth:hover { transform: translateY(-1px); box-shadow: 0 12px 24px -8px var(--coral); }

/* ---- Points of Interest as a full-width NewDesign "What's nearby" section ---- */
.cdf-poi .listeo-poi-header h3 {
  font-family: var(--serif); font-weight: 500; font-size: 0; letter-spacing: 0; margin: 0 0 24px;
}
.cdf-poi .listeo-poi-header h3::before {
  content: "What's nearby"; display: block; color: var(--ink); font: 500 26px/1.15 var(--serif);
}
.cdf-poi .listeo-poi-header h3::after {
  content: "Top Corfu sights, beaches and tavernas within easy reach.";
  display: block; color: var(--body); font: 400 15px/1.5 var(--sans); margin-top: 24px;
}
.cdf-poi .listeo-poi-header h3 i,
.cdf-poi .poi-tabs-nav { display: none !important; }
.cdf-poi .listeo-poi-content,
.cdf-poi .listeo-poi-tabs,
.cdf-poi .poi-tabs-content,
.cdf-poi .poi-tab-panel { display: contents !important; }
.cdf-poi .poi-items-container { display: contents !important; }
.cdf-poi .poi-tabs-content {
  display: grid !important; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 640px){ .cdf-poi .poi-tabs-content { grid-template-columns: 1fr; } }
.cdf-poi .poi-item {
  position: relative; display: grid; grid-template-columns: 46px minmax(0,1fr) auto; align-items: center;
  column-gap: 14px; min-height: 84px; padding: 16px; border: 1px solid var(--line);
  border-radius: var(--r); background: #fff; box-shadow: none;
}
@media (max-width: 480px) {
  .cdf-poi .poi-item { grid-template-columns: 46px minmax(0,1fr); row-gap: 4px; }
  .cdf-poi .poi-distance { grid-column: 2; grid-row: auto; justify-self: start; }
}
.cdf-poi .poi-content { display: contents; }
.cdf-poi .poi-item::before {
  content: ""; width: 46px; height: 46px; border-radius: 12px; background: var(--coral-soft);
  grid-row: 1 / span 3; grid-column: 1; display: block;
}
.cdf-poi .poi-item::after {
  content: ""; width: 21px; height: 21px; background: var(--coral); grid-row: 1 / span 3; grid-column: 1;
  justify-self: center; align-self: center; -webkit-mask: var(--cdf-poi-pin) center/contain no-repeat; mask: var(--cdf-poi-pin) center/contain no-repeat;
}
.cdf-poi .poi-name { grid-column: 2; font-size: 15.5px; line-height: 1.15; font-weight: 800; color: var(--ink); }
.cdf-poi .poi-rating,
.cdf-poi .poi-stars { display: none !important; }
.cdf-poi .poi-distance {
  grid-column: 3; grid-row: 1 / span 2; align-self: center; justify-self: end;
  font-size: 0; color: var(--ink); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.cdf-poi .poi-distance i,
.cdf-poi .poi-distance .poi-distance-separator { display: none !important; }
.cdf-poi .poi-distance .poi-distance-meters,
.cdf-poi .poi-distance.cdf-distance-clean { font-size: 13px; }
.cdf-poi .poi-distance::before {
  content: ""; width: 14px; height: 14px; background: var(--coral);
  -webkit-mask: var(--cdf-poi-pin) center/contain no-repeat; mask: var(--cdf-poi-pin) center/contain no-repeat;
}
.cdf-poi .poi-address {
  grid-column: 2; font-size: 13px; color: var(--muted); word-break: normal; line-height: 1.3;
}
.cdf-poi .poi-directions-btn,
.cdf-poi .poi-info-text { display: none !important; }
.cdf-poi .poi-spinner { width: 26px; height: 26px; border: 3px solid var(--line); border-top-color: var(--coral); border-radius: 50%; animation: cdfspin .7s linear infinite; margin: 8px auto; }
.cdf-poi { --cdf-poi-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12S3 17 3 10a9 9 0 1 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
@keyframes cdfspin { to { transform: rotate(360deg); } }

/* ---- Nearby listings: real Listeo nearby partial, NewDesign grid ---- */
.cdf-nearby > h3,
.cdf-nearby .desc-headline {
  font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: 0;
  margin: 0 0 10px !important; padding: 0; border: 0;
}
.cdf-nearby > h3::before,
.cdf-nearby .desc-headline::before { content: "What's nearby"; font: inherit; color: var(--ink); }
.cdf-nearby > h3,
.cdf-nearby .desc-headline { font-size: 0; }
.cdf-nearby::before {
  content: "Top nearby places and listings within easy reach.";
  display: block; color: var(--body); font-size: 15px; margin: 0 0 22px;
}
.cdf-nearby .simple-slick-carousel,
.cdf-nearby .slick-list { display: block !important; height: auto !important; overflow: visible !important; width: 100% !important; }
.cdf-nearby .slick-track {
  display: grid !important; grid-template-columns: 1fr 1fr; gap: 14px;
  height: auto !important; width: 100% !important; transform: none !important; overflow: visible !important;
}
.cdf-nearby .fw-carousel-item,
.cdf-nearby .slick-slide {
  width: auto !important; height: auto !important; float: none !important; margin: 0 !important;
}
.cdf-nearby .fw-carousel-item > [class*="col-"],
.cdf-nearby .slick-slide > [class*="col-"] { width: auto !important; max-width: none !important; padding: 0 !important; display: block; }
.cdf-nearby .slick-cloned,
.cdf-nearby .slick-arrow,
.cdf-nearby .slick-dots { display: none !important; }
.cdf-nearby .listing-item-container { display: block; height: 100%; color: var(--ink); }
.cdf-nearby .listing-item,
.cdf-nearby .listing-small,
.cdf-nearby .listing-compact {
  position: relative; min-height: 84px; height: 100%; margin: 0 !important; border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; overflow: hidden; box-shadow: none; transition: .16s; padding-left: 74px;
}
.cdf-nearby .listing-item:hover,
.cdf-nearby .listing-small:hover,
.cdf-nearby .listing-compact:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cdf-nearby .listing-item::before {
  content: ""; position: absolute; left: 16px; top: 18px; width: 44px; height: 44px;
  border-radius: 12px; background: var(--coral-soft);
}
.cdf-nearby .listing-item::after {
  content: ""; position: absolute; left: 28px; top: 30px; width: 20px; height: 20px;
  background: var(--coral);
  -webkit-mask: var(--cdf-nearby-pin) center / contain no-repeat; mask: var(--cdf-nearby-pin) center / contain no-repeat;
}
.cdf-nearby .listing-item img,
.cdf-nearby .listing-item .listing-item-image,
.cdf-nearby .listing-small-badges-container .pricing-badge,
.cdf-nearby .listing-small-badges-container .featured-badge,
.cdf-nearby .listing-badge,
.cdf-nearby .like-icon,
.cdf-nearby .numerical-rating { display: none !important; }
.cdf-nearby .listing-small-badges-container {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%); z-index: 2;
  display: flex; align-items: center; margin: 0; padding: 0;
}
.cdf-nearby .listing-small-badge.distance-badge {
  display: inline-flex !important; align-items: center; gap: 5px; background: transparent; color: var(--ink);
  border: 0; padding: 0; margin: 0; font-size: 13px; font-weight: 800; box-shadow: none;
}
.cdf-nearby .listing-small-badge.distance-badge i { color: var(--coral); font-size: 13px; }
.cdf-nearby .listing-item-content,
.cdf-nearby .listing-small-content,
.cdf-nearby .listing-compact-content { position: static !important; padding: 16px 96px 16px 0 !important; transform: none !important; }
.cdf-nearby .listing-item h3,
.cdf-nearby .listing-small h3,
.cdf-nearby .listing-compact h3 { font-family: var(--sans); font-size: 16px; font-weight: 800; line-height: 1.15; margin: 0 0 4px; }
.cdf-nearby .listing-item h3 .verified-icon { display: none; }
.cdf-nearby .listing-address,
.cdf-nearby .listing-small-location,
.cdf-nearby .listing-compact-address,
.cdf-nearby .listing-item-content > span { font-size: 13px; color: var(--muted); line-height: 1.3; }
.cdf-nearby .distance-badge,
.cdf-nearby .listing-distance {
  display: inline-flex; align-items: center; gap: 5px; color: var(--ink); font-weight: 800; font-size: 13px;
}
@media (max-width: 760px){
  .cdf-nearby .slick-track { grid-template-columns: 1fr; }
}
.cdf-nearby { --cdf-nearby-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12S3 17 3 10a9 9 0 1 1 18 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.icon-btn.copied { border-color: #1f8a52; color: #1f8a52; }
@media (max-width: 560px){ .cdf-lightbox { padding: 16px; } .cdf-lightbox .lb-nav { width: 44px; height: 44px; } }

/* ---------- share modal (l-actions share button) ---------- */
.cdf-share-back {
  position: fixed; inset: 0; z-index: 320; display: none; place-items: center; padding: 20px;
  background: rgba(10,30,43,.55); backdrop-filter: blur(4px);
}
.cdf-share-back.open { display: grid; }
.cdf-share-modal {
  width: min(440px, 100%); background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 26px 26px 28px; position: relative;
  animation: cdfShareIn .22s ease;
}
@keyframes cdfShareIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.cdf-share-modal h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -.01em; margin: 0 0 20px; }
.cdf-share-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; border: 1px solid var(--line); background: #fff; font-size: 24px;
  line-height: 1; color: var(--body); cursor: pointer; transition: .15s;
}
.cdf-share-close:hover { border-color: var(--coral); color: var(--coral); }
.cdf-share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cdf-share-opt {
  display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-radius: var(--r);
  border: 1.5px solid var(--line-strong); background: #fff; font-weight: 600; font-size: 14.5px;
  color: var(--ink); cursor: pointer; transition: .16s; text-align: left; width: 100%;
}
.cdf-share-opt:hover { border-color: var(--coral); background: var(--coral-soft); color: var(--coral-deep); }
.cdf-share-opt svg { width: 21px; height: 21px; flex-shrink: 0; }
.cdf-share-opt.fb svg { color: #1877f2; }
.cdf-share-opt.x svg { color: #111; }
.cdf-share-opt.wa svg { color: #25d366; }
.cdf-share-opt.li svg { color: #0a66c2; }
.cdf-share-opt.em svg, .cdf-share-opt.cp svg { color: var(--coral); }
.cdf-share-opt:hover svg { color: var(--coral-deep); }
.cdf-share-opt.copied { border-color: #1f8a52; background: #eaf6ee; color: #1f7a44; }
.cdf-share-opt.copied svg { color: #1f7a44; }
@media (max-width: 420px){ .cdf-share-grid { grid-template-columns: 1fr; } }

/* ---------- report-listing modal (Listeo Magnific popup) → on-brand ---------- */
.listeo-dialog.zoom-anim-dialog,
.mfp-content .listeo-dialog {
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  max-width: 480px; margin: 24px auto; padding: 0; overflow: hidden; position: relative;
}
.listeo-dialog .small-dialog-header {
  padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--sand);
}
.listeo-dialog .small-dialog-header h3 {
  font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: -.01em; margin: 0; color: var(--ink);
}
.listeo-dialog .message-reply { padding: 24px 26px 26px; }
.listeo-dialog #report-listing-form .form-group { margin-bottom: 16px; }
.listeo-dialog #report-listing-form label {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .03em; margin-bottom: 7px; color: var(--ink);
}
.listeo-dialog #report-listing-form select,
.listeo-dialog #report-listing-form textarea {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--r);
  padding: 12px 15px; font-size: 15px; font-weight: 500; background: var(--sand); outline: none; transition: .15s;
}
.listeo-dialog #report-listing-form select:focus,
.listeo-dialog #report-listing-form textarea:focus { border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px var(--coral-soft); }
.listeo-dialog #report-listing-form textarea { resize: vertical; min-height: 120px; }
.listeo-dialog #report-listing-form .button,
.listeo-dialog #report-listing-form button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: var(--coral); color: #fff; border: none; border-radius: var(--pill);
  font-weight: 700; font-size: 15.5px; padding: 14px 22px; box-shadow: var(--shadow-coral);
  cursor: pointer; transition: .2s; margin-top: 4px;
}
.listeo-dialog #report-listing-form .button:hover,
.listeo-dialog #report-listing-form button[type="submit"]:hover { background: var(--coral-deep); }
/* Keep Listeo's original report form logic; use the native select to avoid Select2 duplicate-field bugs. */
.listeo-dialog #report-listing-form .select2-container { display: none !important; }
.listeo-dialog #report-listing-form select.select2-single,
.listeo-dialog #report-listing-form select.select2-hidden-accessible {
  position: static !important; width: 100% !important; height: 48px !important; padding: 0 42px 0 15px !important;
  margin: 0 !important; overflow: visible !important; clip: auto !important; clip-path: none !important;
  white-space: normal !important; opacity: 1 !important; border: 1.5px solid var(--line-strong) !important;
  border-radius: var(--r) !important; background: var(--sand) !important; color: var(--ink) !important;
  font-size: 15px !important; font-weight: 600 !important; appearance: auto !important;
}
.listeo-dialog #report-listing-form select.select2-single:focus,
.listeo-dialog #report-listing-form select.select2-hidden-accessible:focus {
  border-color: var(--coral) !important; background: #fff !important; box-shadow: 0 0 0 4px var(--coral-soft) !important;
}
/* Magnific close button → match the share modal */
.mfp-content .listeo-dialog + .mfp-close,
.listeo-dialog .mfp-close {
  width: 40px; height: 40px; color: var(--body); opacity: 1; font-size: 26px; line-height: 40px;
}
.listeo-dialog .mfp-close:hover { color: var(--coral); }
.listeo-dialog .notification.notice { border-radius: var(--r); font-size: 14px; font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-grid.contact-grid--form-only { grid-template-columns: minmax(0, 640px); justify-content: center; }
@media (max-width: 920px){ .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
.contact-cards { display: grid; gap: 16px; }
.ccard { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: .2s; }
.ccard:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.ccard .ci { width: 52px; height: 52px; border-radius: 14px; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; flex-shrink: 0; }
.ccard .ci svg { width: 24px; height: 24px; }
.ccard h4 { font-size: 16.5px; font-weight: 700; }
.ccard p { font-size: 14.5px; color: var(--body); margin-top: 4px; }
.ccard a.big { font-size: 17px; font-weight: 700; color: var(--coral); margin-top: 6px; display: inline-block; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(24px, 3vw, 40px); }
.form-card h2 { font-family: var(--serif); font-weight: 500; font-size: 30px; letter-spacing: -.01em; }
.form-card .fsub { color: var(--body); margin-top: 8px; margin-bottom: 26px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px){ .frow { grid-template-columns: 1fr; } }
.fld { margin-bottom: 16px; }
.fld label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .03em; margin-bottom: 7px; }
.fld label .req { color: var(--coral); }
.fld input, .fld select, .fld textarea {
  width: 100%; border: 1.5px solid var(--line-strong); border-radius: var(--r); padding: 13px 16px; font-size: 15.5px; font-weight: 500; background: var(--sand); transition: .15s; outline: none;
}
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--coral); background: #fff; box-shadow: 0 0 0 4px var(--coral-soft); }
.fld textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; padding-block: 15px; font-size: 16px; margin-top: 6px; }
.form-card .consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 18px; font-size: 13.5px; color: var(--body); }
.form-card .consent input { appearance: none; width: 19px; height: 19px; border: 1.7px solid var(--line-strong); border-radius: 6px; flex-shrink: 0; margin-top: 1px; position: relative; cursor: pointer; }
.form-card .consent input:checked { background: var(--coral); border-color: var(--coral); }
.form-card .consent input:checked::after { content: ""; position: absolute; left: 6px; top: 2.5px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* faq */
.faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: .2s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-weight: 700; font-size: 17px; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--coral); border-radius: 2px; transition: .2s; }
.faq summary .pm::before { left: 50%; top: 4px; width: 2.5px; height: 18px; transform: translateX(-50%); }
.faq summary .pm::after { top: 50%; left: 4px; height: 2.5px; width: 18px; transform: translateY(-50%); }
.faq details[open] summary .pm::before { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq details .a { padding: 0 24px 22px; color: var(--body); font-size: 15px; }

/* success toast */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(140%); background: var(--navy); color: #fff; padding: 15px 24px; border-radius: var(--pill); box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; font-weight: 600; z-index: 200; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: #6ee7a8; }

/* trust strip */
.trust { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; padding: 26px; background: var(--sand-2); border-radius: var(--r); }
.trust .t { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 14.5px; }
.trust .t svg { width: 22px; height: 22px; color: var(--coral); }

/* ============================================================
   INTERIOR FALLBACK (generic pages/posts in our chrome)
   ============================================================ */
.interior { padding: clamp(36px, 5vw, 64px) 0; }
.interior .entry { max-width: 820px; margin: 0 auto; }
.interior .entry h1, .interior .entry h2, .interior .entry h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; }
.interior .entry h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.interior .entry p { color: var(--body); font-size: 16.5px; line-height: 1.8; margin: 0 0 16px; }
.interior .entry a { color: var(--coral); font-weight: 600; }
.interior .entry img { max-width: 100%; height: auto; border-radius: var(--r); }
.interior .entry ul, .interior .entry ol { margin: 0 0 16px 1.2em; color: var(--body); line-height: 1.8; }
.interior-card { max-width: 820px; margin: 0 auto; display: grid; gap: 18px; }
.interior-card .ic { display: block; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: .2s; }
.interior-card .ic:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.interior-card .ic h2 { font-size: 22px; }
.interior-card .ic .date { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ============================================================
   Single listing follow-up fixes
   ============================================================ */
.highlight.is-open-now {
  position: relative; overflow: hidden; align-items: center;
  background: linear-gradient(135deg, #fff, #eef8f2);
  border-color: rgba(31,138,82,.28);
  box-shadow: 0 10px 24px rgba(31,138,82,.08);
}
.highlight.is-open-now::after {
  content: ""; position: absolute; right: -28px; top: -34px; width: 92px; height: 92px;
  border-radius: 50%; background: rgba(31,138,82,.08); pointer-events: none;
}
.highlight.is-open-now .hi { background: #1f8a52; color: #fff; box-shadow: 0 10px 24px rgba(31,138,82,.22); }
.highlight.is-open-now h4 { color: #145f3a; }
.highlight.is-open-now p { color: #47705b; font-weight: 600; }

.cdf-lnav { margin-top: 30px; }

.cdf-location .cdf-map-wrap { min-height: 340px; }
.cdf-location .leaflet-tile {
  opacity: 1 !important; visibility: visible !important; display: block !important;
  object-fit: initial !important;
  max-width: none !important; max-height: none !important; border-radius: 0 !important;
}
.cdf-single-listing .cdf-listeo-embed #cdfListingMap .leaflet-tile {
  width: 256px !important;
  max-width: none !important;
}
@media (max-width: 600px) {
  .cdf-location .cdf-map-wrap { height: 360px; min-height: 360px; }
  .cdf-location #getDirection,
  .cdf-location .cdf-map-directions { top: 16px; right: 16px; max-width: calc(100% - 88px); }
}

.cdf-booking-embed .wpcf7-form-control-wrap[data-name="radio-950"],
.cdf-side-extras .wpcf7-form-control-wrap[data-name="radio-950"],
.cdf-booking-embed .preferred-contact-method .wpcf7-form-control-wrap,
.cdf-side-extras .preferred-contact-method .wpcf7-form-control-wrap {
  display: flex; justify-content: center; width: 100%;
}

.cdf-booking-embed .listing_article_ads-widget,
.cdf-side-extras .listing_article_ads-widget,
.cdf-after-content .listing_article_ads-widget {
  display: block !important; overflow: visible; max-width: 100%; min-width: 0;
}
.cdf-booking-embed .listing_article_ads-widget .widget-listing-slider,
.cdf-side-extras .listing_article_ads-widget .widget-listing-slider,
.cdf-after-content .listing_article_ads-widget .widget-listing-slider,
.cdf-booking-embed .article-ads-shortcode .simple-slick-carousel,
.cdf-side-extras .article-ads-shortcode .simple-slick-carousel,
.cdf-after-content .article-ads-shortcode .simple-slick-carousel {
  width: 100% !important; max-width: 100% !important; min-width: 0;
}
.cdf-booking-embed .listing_article_ads-widget .slick-list,
.cdf-side-extras .listing_article_ads-widget .slick-list,
.cdf-after-content .listing_article_ads-widget .slick-list,
.cdf-booking-embed .article-ads-shortcode .slick-list,
.cdf-side-extras .article-ads-shortcode .slick-list,
.cdf-after-content .article-ads-shortcode .slick-list {
  overflow: visible !important; border-radius: var(--r); width: 100% !important; max-width: 100% !important;
}
.cdf-booking-embed .listing_article_ads-widget .slick-track,
.cdf-side-extras .listing_article_ads-widget .slick-track,
.cdf-after-content .listing_article_ads-widget .slick-track,
.cdf-booking-embed .article-ads-shortcode .slick-track,
.cdf-side-extras .article-ads-shortcode .slick-track,
.cdf-after-content .article-ads-shortcode .slick-track {
  display: flex !important; align-items: stretch; min-width: 0; max-width: 100%;
}
.cdf-booking-embed .listing_article_ads-widget .slick-slide,
.cdf-side-extras .listing_article_ads-widget .slick-slide,
.cdf-after-content .listing_article_ads-widget .slick-slide,
.cdf-booking-embed .article-ads-shortcode .slick-slide,
.cdf-side-extras .article-ads-shortcode .slick-slide,
.cdf-after-content .article-ads-shortcode .slick-slide {
  height: auto !important; min-width: 0; max-width: 100%; float: none;
}
.cdf-booking-embed .listing_article_ads-widget .slick-slide > div,
.cdf-side-extras .listing_article_ads-widget .slick-slide > div,
.cdf-after-content .listing_article_ads-widget .slick-slide > div,
.cdf-booking-embed .article-ads-shortcode .slick-slide > div,
.cdf-side-extras .article-ads-shortcode .slick-slide > div,
.cdf-after-content .article-ads-shortcode .slick-slide > div { height: 100%; }
.cdf-booking-embed .listing_article_ads-widget .fw-carousel-item,
.cdf-side-extras .listing_article_ads-widget .fw-carousel-item,
.cdf-after-content .listing_article_ads-widget .fw-carousel-item,
.cdf-booking-embed .article-ads-shortcode .fw-carousel-item,
.cdf-side-extras .article-ads-shortcode .fw-carousel-item,
.cdf-after-content .article-ads-shortcode .fw-carousel-item {
  width: 100% !important; max-width: 100% !important; min-width: 0; margin: 0 !important; padding: 0 !important;
}
.cdf-booking-embed .listing_article_ads-widget .article-card,
.cdf-side-extras .listing_article_ads-widget .article-card,
.cdf-after-content .listing_article_ads-widget .article-card,
.cdf-booking-embed .article-ads-shortcode .article-card,
.cdf-side-extras .article-ads-shortcode .article-card,
.cdf-after-content .article-ads-shortcode .article-card {
  margin: 0; display: flex; flex-direction: column; height: 100%; min-width: 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r); background: #fff; box-shadow: 0 12px 28px rgba(20,42,58,.08);
}
.cdf-booking-embed .listing_article_ads-widget .article-card img,
.cdf-side-extras .listing_article_ads-widget .article-card img,
.cdf-after-content .listing_article_ads-widget .article-card img,
.cdf-booking-embed .article-ads-shortcode .article-card img,
.cdf-side-extras .article-ads-shortcode .article-card img,
.cdf-after-content .article-ads-shortcode .article-card img {
  width: 100%; height: 150px; object-fit: cover; border-radius: 0;
}
.cdf-booking-embed .listing_article_ads-widget .article-card .article-content,
.cdf-booking-embed .listing_article_ads-widget .article-card .article-body,
.cdf-side-extras .listing_article_ads-widget .article-card .article-content,
.cdf-side-extras .listing_article_ads-widget .article-card .article-body,
.cdf-after-content .listing_article_ads-widget .article-card .article-content,
.cdf-after-content .listing_article_ads-widget .article-card .article-body,
.cdf-booking-embed .article-ads-shortcode .article-card .article-content,
.cdf-booking-embed .article-ads-shortcode .article-card .article-body,
.cdf-side-extras .article-ads-shortcode .article-card .article-content,
.cdf-side-extras .article-ads-shortcode .article-card .article-body,
.cdf-after-content .article-ads-shortcode .article-card .article-content,
.cdf-after-content .article-ads-shortcode .article-card .article-body {
  padding: 14px 16px;
}
.cdf-booking-embed .listing_article_ads-widget .article-footer,
.cdf-side-extras .listing_article_ads-widget .article-footer,
.cdf-after-content .listing_article_ads-widget .article-footer,
.cdf-booking-embed .article-ads-shortcode .article-footer,
.cdf-side-extras .article-ads-shortcode .article-footer,
.cdf-after-content .article-ads-shortcode .article-footer {
  margin-top: auto; padding: 0 16px 16px;
}

.cdf-booking-embed .listing_article_ads-widget .widget-listing-slider,
.cdf-side-extras .listing_article_ads-widget .widget-listing-slider {
  display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important;
}
.cdf-booking-embed .listing_article_ads-widget .slick-track,
.cdf-side-extras .listing_article_ads-widget .slick-track {
  transform: none !important; width: 100% !important; display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important;
}
.cdf-booking-embed .listing_article_ads-widget .slick-slide,
.cdf-side-extras .listing_article_ads-widget .slick-slide {
  width: 100% !important;
}
.cdf-booking-embed .listing_article_ads-widget .slick-cloned,
.cdf-side-extras .listing_article_ads-widget .slick-cloned {
  display: none !important;
}

.cdf-after-content .article-ads-shortcode .articles-grid,
.cdf-after-content .listeo-articles-grid {
  display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; width: 100%; max-width: 100%;
}
@media (max-width: 900px) {
  .cdf-after-content .article-ads-shortcode .articles-grid,
  .cdf-after-content .listeo-articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cdf-after-content .article-ads-shortcode .articles-grid,
  .cdf-after-content .listeo-articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  body.cdf-has-mcta { --cdf-mcta-height: 76px; }
  .cdf-mobile-cta {
    min-height: calc(var(--cdf-mcta-height) + env(safe-area-inset-bottom, 0px));
    padding-right: max(84px, calc(84px + env(safe-area-inset-right, 0px)));
    padding-left: max(16px, env(safe-area-inset-left, 0px));
  }
  .cdf-mobile-cta .mcta-primary { max-width: none; }

  body.cdf-has-mcta .listeo-floating-chat-widget {
    left: auto !important; right: 0 !important; bottom: 0 !important;
    width: 76px !important; height: calc(var(--cdf-mcta-height) + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 220 !important; pointer-events: none;
  }
  body.cdf-has-mcta .listeo-floating-chat-button {
    pointer-events: auto; position: absolute !important;
    right: max(12px, env(safe-area-inset-right, 0px)) !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    width: 52px !important; min-width: 52px !important; max-width: 52px !important;
    height: 52px !important; min-height: 52px !important; max-height: 52px !important;
    zoom: 1 !important; border: 1px solid rgba(255,255,255,.72) !important;
    box-shadow: 0 10px 24px rgba(20,42,58,.18) !important;
  }
  body.cdf-has-mcta .listeo-floating-chat-popup {
    pointer-events: auto; right: 12px !important;
    bottom: calc(var(--cdf-mcta-height) + 12px + env(safe-area-inset-bottom, 0px)) !important;
    width: min(380px, calc(100vw - 24px)) !important; max-width: calc(100vw - 24px) !important;
  }
  body.cdf-has-mcta .listeo-floating-welcome-bubble {
    display: none !important;
  }
}

/* ============================================================
 * GetYourGuide tour single - live availability widget card
 * ========================================================== */
.cdf-gyg-card { display: flex; flex-direction: column; }
.cdf-gyg-card .bk-top .price { align-items: baseline; flex-wrap: wrap; gap: 6px; }
.cdf-gyg-card .bk-top .price small:first-child {
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); flex: 0 0 100%; margin-bottom: -2px;
}
.cdf-gyg-widget-wrap { padding: 18px 20px 6px; }
.cdf-gyg-widget { min-height: 360px; width: 100%; }
.cdf-gyg-widget > div,
.cdf-gyg-widget iframe { width: 100% !important; max-width: 100% !important; }
/* GYG renders into an iframe that can be tall - let it size naturally */
.cdf-gyg-card .cdf-gyg-fallback { margin-top: 2px; gap: 8px; }
.cdf-gyg-card .cdf-trust .r { display: flex; align-items: center; gap: 10px; color: var(--body); }
.cdf-gyg-card .cdf-trust .r svg { width: 17px; height: 17px; color: #1f8a52; flex-shrink: 0; }
.cdf-gyg-card .cdf-trust .r:nth-child(3) svg { color: var(--coral); }
.cdf-single-tour .booking-col > .cdf-advisor-btn { margin-top: 4px; }

@media (max-width: 1080px) {
  .cdf-gyg-widget { min-height: 0; }
}

/* tour quick facts (synced from GYG) */
.cdf-tour-quickfacts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px;
  margin-top: 22px;
}
.cdf-tour-quickfacts .qf {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--sand);
}
.cdf-tour-quickfacts .qf-ic {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: #fff;
  display: grid; place-items: center; color: var(--coral); box-shadow: var(--shadow-sm);
}
.cdf-tour-quickfacts .qf-ic svg { width: 20px; height: 20px; }
.cdf-tour-quickfacts .qf-l { display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.cdf-tour-quickfacts .qf-v { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-top: 2px; }

/* tour highlights - 2-col grid with coral check badges */
.cdf-hl-grid { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
@media (max-width: 680px) { .cdf-hl-grid { grid-template-columns: 1fr; } }
.cdf-hl-grid li { display: flex; align-items: flex-start; gap: 12px; }
.cdf-hl-grid .hl-ic { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; margin-top: 1px; }
.cdf-hl-grid .hl-ic svg { width: 16px; height: 16px; }
.cdf-hl-grid .hl-txt { font-size: 15.5px; font-weight: 500; color: var(--ink); line-height: 1.45; }

/* what's included / not included - two soft cards */
.cdf-incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .cdf-incl-grid { grid-template-columns: 1fr; } }
.cdf-incl-col { padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.cdf-incl-col h4 { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.cdf-incl-col h4 svg { width: 21px; height: 21px; }
.cdf-incl-yes { background: linear-gradient(180deg, #f3faf5 0%, #fff 60%); }
.cdf-incl-yes h4 { color: #1f8a52; }
.cdf-incl-no h4 { color: var(--coral-deep); }
.cdf-incl-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cdf-incl-col li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--body); line-height: 1.45; }
.cdf-incl-col li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.cdf-incl-yes li svg { color: #1f8a52; }
.cdf-incl-no li svg { color: var(--coral); }

/* "Available …" pill on the title sub-line */
.l-sub .avail-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px 5px 10px; border-radius: var(--pill); background: #E7F4EC; color: #1f7a48; font-size: 12.5px; font-weight: 700; }
.l-sub .avail-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #1f8a52; box-shadow: 0 0 0 3px rgba(31,138,82,.18); }

/* availability message in the booking card */
.cdf-gyg-avail { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13.5px; font-weight: 600; color: #1f8a52; }
.cdf-gyg-avail .dot { width: 8px; height: 8px; border-radius: 50%; background: #1f8a52; box-shadow: 0 0 0 3px rgba(31,138,82,.18); flex-shrink: 0; }

/* tour deactivated / unavailable card */
.cdf-gyg-unavailable { padding: 32px 26px; text-align: center; }
.cdf-gyg-unavailable .ic { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 50%; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; }
.cdf-gyg-unavailable .ic svg { width: 26px; height: 26px; }
.cdf-gyg-unavailable h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-bottom: 8px; }
.cdf-gyg-unavailable p { font-size: 14.5px; color: var(--body); margin-bottom: 18px; }

/* meeting point line */
.cdf-meet-point { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 16px; color: var(--ink); }
.cdf-meet-point svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }
.cdf-meet-point a { color: var(--coral); font-weight: 600; }

/* GYG reviews */
.cdf-gyg-rev-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.cdf-gyg-rev-head .big { font-family: var(--serif); font-size: 40px; font-weight: 500; line-height: 1; }
.cdf-gyg-rev-head .stars { display: inline-flex; gap: 2px; color: var(--gold); }
.cdf-gyg-rev-head .stars svg { width: 18px; height: 18px; }
.cdf-gyg-rev-head .cnt { font-size: 14px; color: var(--muted); font-weight: 500; }
.cdf-gyg-rev-head .src { display: inline-block; margin-left: 6px; padding: 3px 9px; border-radius: var(--pill); background: var(--sand); font-size: 12px; font-weight: 700; color: var(--body); }
.cdf-gyg-rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .cdf-gyg-rev-grid { grid-template-columns: 1fr; } }
.cdf-gyg-rev { padding: 20px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm); }
.cdf-gyg-rev .top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.cdf-gyg-rev .av { width: 40px; height: 40px; border-radius: 50%; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.cdf-gyg-rev .who { display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.cdf-gyg-rev .who b { font-size: 14.5px; }
.cdf-gyg-rev .who span { font-size: 12.5px; color: var(--muted); }
.cdf-gyg-rev .rstars { display: inline-flex; gap: 1px; color: var(--gold); }
.cdf-gyg-rev .rstars svg { width: 14px; height: 14px; }
.cdf-gyg-rev p { font-size: 14.5px; color: var(--body); line-height: 1.55; }
.cdf-gyg-reviews .rev-read-all { display: inline-block; margin-top: 18px; font-weight: 700; color: var(--coral); }

/* public partner bridge */
.list-business-page { background: var(--paper); color: var(--ink); }
.list-business-hero {
  padding: 64px 0 44px;
  background: linear-gradient(135deg, rgba(252,235,229,.95), rgba(250,246,240,.95) 48%, rgba(231,244,236,.72));
  border-bottom: 1px solid var(--line);
}
.list-business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 40px;
  align-items: center;
}
.list-business-copy h1 {
  max-width: 760px;
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}
.list-business-copy p {
  max-width: 660px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.65;
}
.list-business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.list-business-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
.list-business-panel .panel-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r);
  background: #fff;
  border: 1px solid var(--line);
}
.list-business-panel .panel-ic,
.list-business-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.list-business-panel svg,
.list-business-card-icon svg { width: 22px; height: 22px; }
.list-business-panel b { display: block; font-size: 15px; }
.list-business-panel span span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.list-business-types { padding: 54px 0 72px; }
.list-business-section-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.list-business-section-head h2 {
  margin: 10px 0 10px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}
.list-business-section-head p {
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.6;
}
.list-business-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--sand);
  color: var(--body);
  font-weight: 600;
}
.list-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.list-business-card {
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: .22s ease;
}
.list-business-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.list-business-card h3 {
  margin: 2px 0 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}
.list-business-card p {
  color: var(--body);
  line-height: 1.55;
  font-size: 14.5px;
}
.list-business-card form,
.list-business-card .btn { margin-top: auto; }
.list-business-card .btn { width: 100%; justify-content: center; }
.list-business-form-shell {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: clamp(18px, 3vw, 30px);
}
.list-business-form-shell #add-listing { margin: 0; }
.list-business-form-shell .submit-page { margin-top: 0; }
.list-business-form-shell .listing-package-selection {
  margin: 0;
}
.list-business-form-shell .buy-package-headline {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}
.list-business-form-shell .new-pricing-packages-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 0;
}
.list-business-form-shell .pricing-package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.list-business-form-shell .pricing-package:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.list-business-form-shell .pricing-package.best-value-plan {
  border-color: var(--coral);
  box-shadow: 0 10px 30px rgba(229,80,58,.14);
}
.list-business-form-shell .pricing-package-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}
.list-business-form-shell .pricing-package-header h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0;
}
.list-business-form-shell .pricing-package-header span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: var(--pill);
  background: var(--coral);
  color: #fff;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}
.list-business-form-shell .pricing-package-text {
  margin: 0 0 16px;
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.5;
}
.list-business-form-shell .pricing-package-price {
  margin: 0 0 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.list-business-form-shell .pricing-package-price strong,
.list-business-form-shell .pricing-package-price .amount {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  color: var(--ink);
}
.list-business-form-shell .pricing-package-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}
.list-business-form-shell .pricing-package-details h6 {
  margin: 0 0 2px;
  color: var(--coral-deep);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.list-business-form-shell .pricing-package-details ul,
.list-business-form-shell .plan-features-auto-wc {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-business-form-shell .pricing-package-details li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.42;
}
.list-business-form-shell .pricing-package-details li svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 1px;
}
.list-business-form-shell .pricing-package-details li svg circle {
  fill: var(--coral-soft);
}
.list-business-form-shell .pricing-package-details li svg path {
  stroke: var(--coral-deep);
}
.list-business-form-shell .pricing-package-details > p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.list-business-form-shell .pricing-package-select {
  margin-top: 20px;
}
.list-business-form-shell .pricing-package-select input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.list-business-form-shell .pricing-package-select label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.list-business-form-shell .pricing-package-select label:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
  background: var(--coral-soft);
}
.list-business-form-shell .pricing-package-select .plan-checked {
  display: none !important;
}
.list-business-form-shell .pricing-package-select input:checked + label {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.list-business-form-shell .pricing-package-select input:checked + label .plan-unchecked {
  display: none !important;
}
.list-business-form-shell .pricing-package-select input:checked + label .plan-checked {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.list-business-form-shell .pricing-package-select label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.list-business-form-shell .pricing-package .pricing-package-select input[type="radio"] + label .plan-checked,
.list-business-form-shell .pricing-package .pricing-package-select input[type="radio"]:checked + label .plan-checked {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  opacity: 1 !important;
  width: auto !important;
  color: inherit !important;
}
.list-business-form-shell .pricing-package .pricing-package-select input[type="radio"] + label .plan-checked i,
.list-business-form-shell .pricing-package .pricing-package-select input[type="radio"]:checked + label .plan-checked i,
.list-business-form-shell .pricing-package .pricing-package-select input[type="radio"] + label .plan-unchecked i {
  color: inherit !important;
}
.list-business-form-shell #package_selection .submit-page {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.list-business-form-shell #package_selection .submit-page p {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.list-business-form-shell #package_selection .submit-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.list-business-form-shell #package_selection .submit-page .button:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
}
.list-business-form-shell .owned-packages {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.list-business-form-shell .owned-packages label {
  display: block;
  margin: 0;
}
.list-business-form-shell .package-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--sand);
}
.list-business-form-shell #submit-listing-form {
  display: block;
  max-width: 100%;
}
.list-business-form-shell #submit-listing-form,
.list-business-form-shell #submit-listing-form * {
  box-sizing: border-box;
}
.list-business-form-shell #submit-listing-form .add-listing-section.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px 20px;
  margin: 0 0 24px;
  padding: 0 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}
.list-business-form-shell #submit-listing-form .add-listing-section.row::before,
.list-business-form-shell #submit-listing-form .add-listing-section.row::after {
  content: none;
}
.list-business-form-shell #submit-listing-form .add-listing-headline,
.list-business-form-shell #submit-listing-form .notification,
.list-business-form-shell #submit-listing-form .switcher-content,
.list-business-form-shell #submit-listing-form .custom-term-features-content,
.list-business-form-shell #submit-listing-form .col-md-12 {
  grid-column: 1 / -1;
}
.list-business-form-shell #submit-listing-form .add-listing-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  margin: 0 -24px 2px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, rgba(248,244,238,.72));
}
.list-business-form-shell #submit-listing-form .add-listing-headline h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}
.list-business-form-shell #submit-listing-form .add-listing-headline h3 i {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 1px solid rgba(229,80,58,.2);
  border-radius: 10px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-size: 15px;
  line-height: 1;
  flex: 0 0 30px;
}
.list-business-form-shell #submit-listing-form .switcher-content,
.list-business-form-shell #submit-listing-form .custom-term-features-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px 20px;
  min-width: 0;
}
.list-business-form-shell #submit-listing-form .custom-term-features-content > [data-term-fields] {
  display: contents;
}
.list-business-form-shell #submit-listing-form .custom-term-features .add-listing-headline {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,244,.76));
}
.list-business-form-shell #submit-listing-form .custom-term-features .custom-fields-title {
  font-size: 18px;
}
.list-business-form-shell #submit-listing-form .add-listing-section.dynamic-features:not(.switcher-on) .switcher-content {
  display: none;
}
.list-business-form-shell #submit-listing-form .add-listing-section.dynamic-features.switcher-on .switcher-content {
  display: grid;
}
.list-business-form-shell #submit-listing-form div[class*="col-md-"] {
  float: none !important;
  width: auto !important;
  max-width: 100%;
  min-width: 0;
  min-height: 0 !important;
  padding: 0 !important;
}
.list-business-form-shell #submit-listing-form .col-md-1 { grid-column: span 1; }
.list-business-form-shell #submit-listing-form .col-md-2 { grid-column: span 2; }
.list-business-form-shell #submit-listing-form .col-md-3 { grid-column: span 3; }
.list-business-form-shell #submit-listing-form .col-md-4 { grid-column: span 4; }
.list-business-form-shell #submit-listing-form .col-md-5 { grid-column: span 5; }
.list-business-form-shell #submit-listing-form .col-md-6 { grid-column: span 6; }
.list-business-form-shell #submit-listing-form .col-md-7 { grid-column: span 7; }
.list-business-form-shell #submit-listing-form .col-md-8 { grid-column: span 8; }
.list-business-form-shell #submit-listing-form .col-md-9 { grid-column: span 9; }
.list-business-form-shell #submit-listing-form .col-md-10 { grid-column: span 10; }
.list-business-form-shell #submit-listing-form .col-md-11 { grid-column: span 11; }
.list-business-form-shell #submit-listing-form .col-md-12 { grid-column: 1 / -1; }
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-select {
  grid-column: span 4;
}
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox {
  grid-column: span 3;
}
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkboxes,
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-textarea {
  grid-column: 1 / -1;
}
.list-business-form-shell #submit-listing-form .form-field-container-type-hidden,
.list-business-form-shell #submit-listing-form input[type="hidden"] {
  display: none !important;
}
.list-business-form-shell #submit-listing-form .cdf-hidden-listing-category {
  display: none !important;
}
.list-business-form-shell #submit-listing-form .cdf-primary-business-type {
  grid-column: span 6;
}
.list-business-form-shell #submit-listing-form .cdf-primary-business-type label:not(.switch):not(.uploadButton-button) {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 15px;
}
.list-business-form-shell #submit-listing-form .cdf-primary-business-type .select2-container .select2-selection--single,
.list-business-form-shell #submit-listing-form .cdf-primary-business-type select {
  background: #fff;
  border-color: rgba(229,80,58,.45);
}
.list-business-form-shell #submit-listing-form .cdf-field-note {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.list-business-form-shell #submit-listing-form .cdf-field-error {
  display: none;
  margin-top: 8px;
  color: #b32d2e;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
}
.list-business-form-shell #submit-listing-form .cdf-has-error .select2-container .select2-selection--single,
.list-business-form-shell #submit-listing-form .cdf-has-error select {
  border-color: #b32d2e;
  box-shadow: 0 0 0 4px rgba(179,45,46,.1);
}
.list-business-form-shell #submit-listing-form .cdf-has-error .cdf-field-error {
  display: block;
}
.list-business-form-shell #submit-listing-form label:not(.switch):not(.uploadButton-button) {
  display: block;
  float: none !important;
  width: auto !important;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}
.list-business-form-shell #submit-listing-form label small {
  color: var(--muted);
  font-weight: 600;
}
.list-business-form-shell #submit-listing-form label i {
  color: var(--coral-deep);
  font-style: normal;
}
.list-business-form-shell #submit-listing-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
.list-business-form-shell #submit-listing-form select,
.list-business-form-shell #submit-listing-form textarea {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 11px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--sand);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  box-shadow: none;
}
.list-business-form-shell #submit-listing-form textarea {
  min-height: 150px;
  resize: vertical;
}
.list-business-form-shell #submit-listing-form input:focus,
.list-business-form-shell #submit-listing-form select:focus,
.list-business-form-shell #submit-listing-form textarea:focus {
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 4px var(--coral-soft);
  outline: none;
}
.list-business-form-shell #submit-listing-form .chosen-container,
.list-business-form-shell #submit-listing-form .select2-container {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
}
.list-business-form-shell #submit-listing-form .chosen-container-single .chosen-single,
.list-business-form-shell #submit-listing-form .select2-container .select2-selection--single {
  min-height: 48px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--sand);
  box-shadow: none;
}
.list-business-form-shell #submit-listing-form .chosen-container-single .chosen-single span,
.list-business-form-shell #submit-listing-form .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  color: var(--ink);
  font-weight: 600;
}
.list-business-form-shell #submit-listing-form .chosen-container-multi .chosen-choices,
.list-business-form-shell #submit-listing-form .select2-container .select2-selection--multiple {
  min-height: 48px;
  padding: 6px 8px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--sand);
  box-shadow: none;
}
.list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 !important;
}
.list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row input[type="checkbox"],
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row label,
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox > label + input + label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 0 !important;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sand);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}
.list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row label::before,
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox > label + input + label::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
}
.list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row input[type="checkbox"]:checked + label,
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox input[type="checkbox"]:checked + label {
  border-color: rgba(229,80,58,.55);
  background: var(--coral-soft);
  color: var(--coral-deep);
}
.list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row input[type="checkbox"]:checked + label::before,
.list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox input[type="checkbox"]:checked + label::before {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: inset 0 0 0 3px #fff;
}
.list-business-form-shell #submit-listing-form .uploadButton {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
}
.list-business-form-shell #submit-listing-form .uploadButton-input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.list-business-form-shell #submit-listing-form .uploadButton-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin: 0;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.list-business-form-shell #submit-listing-form .uploadButton-file-name,
.list-business-form-shell #submit-listing-form .description,
.list-business-form-shell #submit-listing-form .listeo-uploaded-file-name {
  display: block;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.list-business-form-shell #submit-listing-form table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}
.list-business-form-shell #submit-listing-form .form-field-container-type-repeatable,
.list-business-form-shell #submit-listing-form .form-field-container-type-pricing,
.list-business-form-shell #submit-listing-form .form-field-container-type-floorplans,
.list-business-form-shell #submit-listing-form .form-field-container-type-hours,
.list-business-form-shell #submit-listing-form .form-field-container-type-calendar,
.list-business-form-shell #submit-listing-form .form-field-container-type-av_calendar {
  grid-column: 1 / -1;
  overflow: visible;
}
.list-business-form-shell #submit-listing-form .form-field-container-type-repeatable {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.list-business-form-shell #submit-listing-form .form-field-container-type-pricing > .row,
.list-business-form-shell #submit-listing-form .form-field-container-type-hours > .row {
  display: block;
  width: 100%;
  margin: 0;
}
.list-business-form-shell #submit-listing-form #pricing-list-container,
.list-business-form-shell #submit-listing-form #pricing-list-container tbody,
.list-business-form-shell #submit-listing-form #pricing-list-container tr,
.list-business-form-shell #submit-listing-form #pricing-list-container td {
  display: block;
  width: 100%;
}
.list-business-form-shell #submit-listing-form #pricing-list-container {
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
}
.list-business-form-shell #submit-listing-form #pricing-list-container td {
  padding: 0;
  border: 0;
  background: transparent;
}
.list-business-form-shell #submit-listing-form .pricing-list-item:not(.pricing-submenu) {
  margin: 0 0 16px;
}
.list-business-form-shell #submit-listing-form .pricing-list-item:not(.pricing-submenu) td {
  position: relative;
  padding: 18px 18px 18px 54px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
}
.list-business-form-shell #submit-listing-form .pricing-list-item td .fm-move {
  position: absolute;
  top: 20px;
  left: 18px;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(15,42,59,.34);
  cursor: grab;
}
.list-business-form-shell #submit-listing-form .pricing-row-grid {
  display: grid;
  grid-template-columns: 92px minmax(260px, 1.15fr) minmax(260px, 1fr) 36px;
  gap: 18px;
  align-items: start;
  width: 100%;
}
.list-business-form-shell #submit-listing-form .pricing-row-image,
.list-business-form-shell #submit-listing-form .pricing-row-info,
.list-business-form-shell #submit-listing-form .pricing-row-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.list-business-form-shell #submit-listing-form .pricing-row-section {
  padding: 16px;
  border: 1px solid rgba(221,207,188,.72);
  border-radius: 12px;
  background: #fff;
}
.list-business-form-shell #submit-listing-form .pricing-row-section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}
.list-business-form-shell #submit-listing-form .pricing-row-section-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 24px;
}
.list-business-form-shell #submit-listing-form .pricing-row-grid .fm-input {
  float: none !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}
.list-business-form-shell #submit-listing-form .pricing-list-item td .fm-input-label {
  display: block;
  float: none;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  opacity: 1;
}
.list-business-form-shell #submit-listing-form .pricing-row-pair {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 12px;
  align-items: end;
}
.list-business-form-shell #submit-listing-form .pricing-cover-wrapper {
  position: relative;
  width: 92px;
  height: 92px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--sand);
  overflow: hidden;
}
.list-business-form-shell #submit-listing-form .pricing-cover-wrapper .cover-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.list-business-form-shell #submit-listing-form .pricing-row-close {
  display: flex;
  justify-content: flex-end;
}
.list-business-form-shell #submit-listing-form .pricing-row-close .fm-close {
  position: static;
}
.list-business-form-shell #submit-listing-form .pricing-list-item .delete {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff1f1;
  color: #c75757;
}
.list-business-form-shell #submit-listing-form .pricing-field-desc {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.list-business-form-shell #submit-listing-form .pricing-bookable .switcher-tip,
.list-business-form-shell #submit-listing-form .pricing-quantity-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.list-business-form-shell #submit-listing-form .pricing-bookable label,
.list-business-form-shell #submit-listing-form .pricing-quantity-row label {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  margin: 0;
}
.list-business-form-shell #submit-listing-form .pricing-submenu {
  margin: 0 0 12px;
}
.list-business-form-shell #submit-listing-form .pricing-submenu td {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.list-business-form-shell #submit-listing-form .add-pricing-list-item.button,
.list-business-form-shell #submit-listing-form .add-pricing-submenu.button {
  min-height: 42px;
  margin: 4px 8px 0 0;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  box-shadow: none;
}
.list-business-form-shell #submit-listing-form .add-pricing-list-item.button:hover,
.list-business-form-shell #submit-listing-form .add-pricing-submenu.button:hover {
  background: var(--coral-soft);
  color: var(--coral-deep);
}
.list-business-form-shell #submit-listing-form .row.opening-day {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.list-business-form-shell #submit-listing-form .row.opening-day + .row.opening-day {
  margin-top: 10px;
}
.list-business-form-shell #submit-listing-form .row.opening-day > .row,
.list-business-form-shell #submit-listing-form .row.opening-day > .row > .row {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.list-business-form-shell #submit-listing-form .row.opening-day .col-md-2,
.list-business-form-shell #submit-listing-form .row.opening-day .col-md-5 {
  grid-column: auto;
}
.list-business-form-shell #submit-listing-form .opening-day h5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  margin: 0 0 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
}
.list-business-form-shell #submit-listing-form .day_hours_reset,
.list-business-form-shell #submit-listing-form .opening-day-add-hours,
.list-business-form-shell #submit-listing-form .opening-day-remove.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0 6px 0 0;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  box-shadow: none;
}
.list-business-form-shell #submit-listing-form .day_hours_reset {
  background: #fff;
  color: var(--muted);
}
.list-business-form-shell #submit-listing-form .opening-day-add-hours {
  background: #edf8e8;
  color: #56843f;
}
.list-business-form-shell #submit-listing-form .opening-day-remove.button {
  background: #fff1f1;
  color: #c75757;
}
.list-business-form-shell #submit-listing-form .opening-day input {
  margin: 0;
}
.list-business-form-shell #submit-listing-form .form-field-_timezone-container {
  margin-top: 14px;
}
.list-business-form-shell #submit-listing-form .form-field-_timezone-container select,
.list-business-form-shell #submit-listing-form .form-field-_timezone-container .select2-container {
  width: 100% !important;
  max-width: 100%;
}
.list-business-form-shell #submit-listing-form .divider {
  margin: 10px 0 0;
}
.list-business-form-shell #submit-listing-form > p:last-child {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.list-business-form-shell #submit-listing-form button.button,
.list-business-form-shell #submit-listing-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.list-business-form-shell #submit-listing-form button.button:hover,
.list-business-form-shell #submit-listing-form input[type="submit"]:hover {
  background: var(--coral-deep);
}

@media (max-width: 1024px) {
  .list-business-hero-grid { grid-template-columns: 1fr; }
  .list-business-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .list-business-form-shell .new-pricing-packages-container { grid-template-columns: 1fr; }
  .list-business-form-shell #submit-listing-form .col-md-3,
  .list-business-form-shell #submit-listing-form .col-md-4 {
    grid-column: span 6;
  }
  .list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-select,
  .list-business-form-shell #submit-listing-form .custom-term-features .form-field-container-type-checkbox {
    grid-column: span 6;
  }
  .list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .list-business-form-shell #submit-listing-form .pricing-row-grid {
    grid-template-columns: 86px minmax(0, 1fr) 36px;
  }
  .list-business-form-shell #submit-listing-form .pricing-row-right {
    grid-column: 2 / 3;
  }
  .list-business-form-shell #submit-listing-form .pricing-row-close {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .list-business-form-shell #submit-listing-form .row.opening-day > .row,
  .list-business-form-shell #submit-listing-form .row.opening-day > .row > .row {
    grid-template-columns: 140px minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .list-business-hero { padding: 42px 0 34px; }
  .list-business-actions { display: grid; }
  .list-business-actions .btn { width: 100%; justify-content: center; }
  .list-business-grid { grid-template-columns: 1fr; }
  .list-business-form-shell { padding: 16px; }
  .list-business-form-shell .pricing-package { padding: 18px; }
  .list-business-form-shell #submit-listing-form .add-listing-section.row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px 16px;
  }
  .list-business-form-shell #submit-listing-form .add-listing-headline {
    margin: 0 -16px 0;
    padding: 16px;
  }
  .list-business-form-shell #submit-listing-form .switcher-content,
  .list-business-form-shell #submit-listing-form .custom-term-features-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .list-business-form-shell #submit-listing-form div[class*="col-md-"] {
    grid-column: 1 / -1 !important;
  }
  .list-business-form-shell #submit-listing-form .custom-term-features .checkboxes.in-row {
    grid-template-columns: 1fr;
  }
  .list-business-form-shell #submit-listing-form .add-listing-headline {
    align-items: flex-start;
  }
  .list-business-form-shell #submit-listing-form .add-listing-headline h3 {
    font-size: 18px;
  }
  .list-business-form-shell #submit-listing-form .uploadButton-button,
  .list-business-form-shell #submit-listing-form > p:last-child button.button,
  .list-business-form-shell #submit-listing-form > p:last-child input[type="submit"] {
    width: 100%;
  }
  .list-business-form-shell #submit-listing-form .pricing-list-item:not(.pricing-submenu) td {
    padding: 16px;
  }
  .list-business-form-shell #submit-listing-form .pricing-list-item td .fm-move {
    display: none;
  }
  .list-business-form-shell #submit-listing-form .pricing-row-grid {
    grid-template-columns: 1fr 36px;
  }
  .list-business-form-shell #submit-listing-form .pricing-row-image,
  .list-business-form-shell #submit-listing-form .pricing-row-info,
  .list-business-form-shell #submit-listing-form .pricing-row-right {
    grid-column: 1 / 2;
  }
  .list-business-form-shell #submit-listing-form .pricing-row-close {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .list-business-form-shell #submit-listing-form .pricing-row-pair,
  .list-business-form-shell #submit-listing-form .row.opening-day > .row,
  .list-business-form-shell #submit-listing-form .row.opening-day > .row > .row {
    grid-template-columns: 1fr;
  }
  .list-business-form-shell #submit-listing-form .pricing-cover-wrapper {
    width: 112px;
    height: 112px;
  }
  .list-business-form-shell #submit-listing-form .pricing-submenu td {
    grid-template-columns: minmax(0, 1fr) 34px;
  }
  .list-business-form-shell #submit-listing-form .pricing-submenu td .fm-move {
    display: none;
  }
  .list-business-form-shell #submit-listing-form > p:last-child {
    display: grid;
  }
  .list-business-form-shell #package_selection .submit-page p { display: grid; }
  .list-business-form-shell #package_selection .submit-page .button { width: 100%; }
}
