/* =========================================================================
   Custom Classifieds UK: Single listing page redesign
   Per design_handoff_listing_page + STYLE-GUIDE.md. Square, no shadows.
   Header/footer come from the site chrome and are untouched.

   Interaction state is driven by classes on .cc-listing (toggled by JS):
     .is-logged-out / .is-logged-in
     .phone-revealed        phone number fetched + shown
     .phone-login           logged-out user asked for the number
     .msg-sent              message was sent
   ========================================================================= */

.cc-listing {
	--gold: #a59055;
	--gold-hover-dark: #8a7743;
	--ink: #171610;
	--page: #f6f4ef;
	--card: #fff;
	--hair: #e2ded4;
	--body: #5c584e;
	--muted: #8a857a;
	--dark: #171610;
	--dark-hair: #26241e;
	--dark-text: #f0ede6;
	--dark-muted: #8d8a83;
	--tint: #faf7ef;

	background: var(--page);
	color: var(--ink);
	font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	line-height: 1.6;
}
.cc-listing *,
.cc-listing *::before,
.cc-listing *::after { box-sizing: border-box; }
.cc-listing img { max-width: 100%; }
.cc-listing a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
.cc-listing a:hover { color: var(--gold-hover-dark); }
.cc-listing ::selection { background: var(--gold); color: #000; }

/* Display type */
.cc-l-h1, .cc-l-h2, .cc-l-h3, .cc-l-title, .cc-btn, .cc-spec-cell, .cc-story h3 {
	font-feature-settings: normal;
}
.cc-l-h1, .cc-l-h2, .cc-l-h3 {
	font-family: 'Bebas Neue', 'bebas-neue', 'Barlow', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
}
.cc-kicker {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
}

/* ===================== CONTEXT BAR ===================== */
.cc-context {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 16px 56px;
	border-bottom: 1px solid var(--hair);
	background: var(--page);
}
.cc-context-back { font-size: 14px; font-weight: 600; color: var(--body); }
.cc-context-back:hover { color: var(--gold); }
.cc-context-crumb { font-size: 13px; color: var(--muted); }

/* ===================== MAIN GRID ===================== */
.cc-l-main {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 40px;
	padding: 36px 56px 70px;
	align-items: start;
	max-width: 1560px;
	margin: 0 auto;
}
.cc-l-left { display: flex; flex-direction: column; gap: 44px; min-width: 0; }
.cc-l-side { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 16px; }

/* ===================== GALLERY ===================== */
.cc-gallery { display: flex; flex-direction: column; gap: 12px; }
.cc-gallery-main { position: relative; background: var(--dark); }
.cc-gallery-main img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
}
.cc-gallery-badge {
	position: absolute; top: 16px; left: 16px;
	background: var(--gold); color: #fff;
	font-size: 11px; font-weight: 700; letter-spacing: 2px;
	padding: 5px 10px;
}
.cc-gallery-counter {
	position: absolute; right: 16px; bottom: 16px;
	background: rgba(23, 22, 16, 0.85); color: var(--dark-text);
	font-size: 13px; font-weight: 600; padding: 6px 12px;
}
.cc-gallery-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 52px; height: 64px;
	background: rgba(23, 22, 16, 0.65); color: #fff;
	border: 0; cursor: pointer; font-size: 22px; line-height: 1;
	display: flex; align-items: center; justify-content: center;
	transition: background-color 0.2s ease;
}
.cc-gallery-arrow:hover { background: rgba(23, 22, 16, 0.85); }
.cc-gallery-arrow--prev { left: 0; }
.cc-gallery-arrow--next { right: 0; }
.cc-gallery-thumbs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
}
.cc-gallery-thumb {
	padding: 0; border: 3px solid transparent; background: none;
	cursor: pointer; opacity: 0.75; line-height: 0;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}
.cc-gallery-thumb img { width: 100%; height: 110px; object-fit: cover; display: block; }
.cc-gallery-thumb.is-active { border-color: var(--gold); opacity: 1; }
.cc-gallery-thumb:hover { opacity: 1; }
/* single-photo listings: hide arrows/counter/thumbs */
.cc-gallery--single .cc-gallery-arrow,
.cc-gallery--single .cc-gallery-counter,
.cc-gallery--single .cc-gallery-thumbs { display: none; }

/* Video badge (corner of the main image) */
.cc-gallery-video {
	position: absolute;
	top: 16px; right: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(23, 22, 16, 0.85);
	color: var(--dark-text);
	border: 1px solid var(--gold);
	font-family: 'Bebas Neue', 'bebas-neue', sans-serif;
	font-size: 15px;
	letter-spacing: 1.5px;
	padding: 7px 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.cc-gallery-video:hover { background: var(--gold); color: var(--ink); }
.cc-gallery-video-icon { color: var(--gold); font-size: 12px; }
.cc-gallery-video:hover .cc-gallery-video-icon { color: var(--ink); }
.cc-gallery-img { cursor: zoom-in; }

/* ===================== LIGHTBOX ===================== */
.cc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(23, 22, 16, 0.94);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px 72px;
}
.cc-lightbox.is-open { display: flex; }
.cc-lightbox-stage {
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cc-lightbox-img {
	max-width: 100%;
	max-height: 86vh;
	object-fit: contain;
	display: block;
}
.cc-lightbox-video {
	width: min(1100px, 90vw);
	aspect-ratio: 16 / 9;
	background: #000;
	display: none;
}
.cc-lightbox-video iframe,
.cc-lightbox-video video { width: 100%; height: 100%; border: 0; display: block; }
.cc-lightbox.is-video .cc-lightbox-img,
.cc-lightbox.is-video .cc-lightbox-arrow,
.cc-lightbox.is-video .cc-lightbox-counter { display: none; }
.cc-lightbox.is-video .cc-lightbox-video { display: block; }
.cc-lightbox-close {
	position: absolute;
	top: 20px; right: 24px;
	width: 48px; height: 48px;
	background: none;
	border: 0;
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
}
.cc-lightbox-close:hover { color: var(--gold); }
.cc-lightbox-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px; height: 72px;
	background: rgba(23, 22, 16, 0.6);
	border: 0;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cc-lightbox-arrow:hover { background: var(--gold); color: var(--ink); }
.cc-lightbox-arrow--prev { left: 16px; }
.cc-lightbox-arrow--next { right: 16px; }
.cc-lightbox-counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--dark-text);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	background: rgba(23, 22, 16, 0.7);
	padding: 6px 14px;
}
body.cc-lightbox-open { overflow: hidden; }

/* ===================== DETAILS / SPEC GRID ===================== */
.cc-l-h2 { font-size: 34px; color: var(--ink); margin-bottom: 18px; }
.cc-spec-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.cc-spec-cell {
	background: var(--card);
	border: 1px solid var(--hair);
	padding: 16px 20px;
}
.cc-spec-label {
	font-size: 11px; letter-spacing: 2px; color: var(--muted);
	text-transform: uppercase; margin-bottom: 4px;
}
.cc-spec-value { font-size: 17px; font-weight: 600; color: var(--ink); }

/* ===================== BUILD STORY ===================== */
.cc-story {
	background: var(--card);
	border: 1px solid var(--hair);
	padding: 40px 44px;
}
.cc-story-kicker { font-size: 13px; letter-spacing: 3px; margin-bottom: 10px; }
.cc-story-title { font-size: 40px; color: var(--ink); line-height: 1; margin-bottom: 16px; }
.cc-story-body {
	max-width: 720px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--body);
}
.cc-story-body > * { margin: 0 0 16px; }
.cc-story-body > *:last-child { margin-bottom: 0; }
.cc-story-body h2,
.cc-story-body h3,
.cc-story-body h4 {
	font-family: 'Bebas Neue', 'bebas-neue', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--ink);
	font-size: 25px;
	margin: 28px 0 12px;
	line-height: 1;
}
.cc-story-body img { border: 1px solid var(--hair); }
.cc-story-body blockquote {
	border-left: 3px solid var(--gold);
	padding-left: 20px;
	margin: 0 0 16px;
	font-weight: 500;
	font-style: italic;
	font-size: 19px;
}
/* Desktop: full story always shown; toggle button hidden. */
.cc-story-toggle { display: none; }

/* ===================== SIDEBAR: SUMMARY CARD ===================== */
.cc-summary {
	background: var(--card);
	border: 1px solid var(--hair);
	padding: 28px 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.cc-summary-meta { font-size: 12px; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.cc-summary-title { font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-weight: 400; text-transform: uppercase; font-size: 44px; line-height: 1; color: var(--ink); margin: 0; }
.cc-summary-sub { font-size: 15px; color: var(--body); margin-top: 6px; }
.cc-summary-price {
	font-size: 40px; font-weight: 700; color: var(--ink);
	border-top: 1px solid var(--hair); padding-top: 16px;
}

/* CTA buttons */
.cc-cta-group { display: flex; flex-direction: column; gap: 10px; }
.cc-btn {
	display: flex; align-items: center; justify-content: center;
	width: 100%;
	font-family: 'Bebas Neue', 'bebas-neue', sans-serif;
	font-weight: 400; font-size: 22px; letter-spacing: 1.5px; text-transform: uppercase;
	padding: 15px 0; border: 1px solid transparent; cursor: pointer;
	text-align: center;
}
.cc-btn--gold { background: var(--gold); color: #fff; }
.cc-btn--gold:hover { background: var(--gold-hover-dark); color: #fff; }
.cc-btn--outline { background: none; border-color: var(--ink); color: var(--ink); padding: 14px 0; }
.cc-btn--outline:hover { background: var(--ink); color: #fff; }

/* Revealed phone (tel link) */
.cc-phone-number {
	display: block; text-align: center;
	border: 1px solid var(--gold); background: var(--tint); color: var(--ink);
	font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 22px; letter-spacing: 1.5px;
	padding: 14px 0;
}
.cc-phone-number:hover { color: var(--ink); background: #f4eede; }

/* Logged-out login prompt */
.cc-phone-login {
	border: 1px solid var(--hair); background: var(--page);
	padding: 14px 16px; font-size: 14px; line-height: 1.5; color: var(--body);
}
.cc-phone-login a { font-weight: 700; }

/* Sent confirmation */
.cc-msg-confirm {
	border: 1px solid var(--gold); background: var(--tint); padding: 18px 20px;
}
.cc-msg-confirm-title { font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 22px; color: var(--ink); }
.cc-msg-confirm-text { font-size: 14px; color: var(--body); line-height: 1.5; margin-top: 4px; }

/* Safety note */
.cc-safety {
	font-size: 13px; color: var(--muted); line-height: 1.55;
	border-top: 1px solid var(--hair); padding-top: 14px;
}
.cc-safety a { font-weight: 600; }

/* --- State visibility (default = phone hidden, not sent) --- */
.cc-phone-number,
.cc-phone-login,
.cc-msg-confirm { display: none; }
.cc-listing.phone-revealed .cc-phone-number { display: block; }
.cc-listing.phone-revealed .cc-phone-reveal { display: none; }
.cc-listing.phone-login .cc-phone-login { display: block; }
.cc-listing.phone-login .cc-phone-reveal { display: none; }
.cc-listing.msg-sent .cc-cta-group { display: none; }
.cc-listing.msg-sent .cc-msg-confirm { display: block; }

/* ===================== SIDEBAR: SELLER CARD ===================== */
.cc-seller {
	background: var(--dark);
	padding: 24px 28px;
	display: flex; flex-direction: column; gap: 14px;
}
.cc-seller-head { display: flex; align-items: center; gap: 14px; }
.cc-seller-avatar {
	width: 52px; height: 52px; flex: 0 0 auto;
	background: var(--gold); color: var(--ink);
	display: flex; align-items: center; justify-content: center;
	font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 24px;
	object-fit: cover; overflow: hidden;
}
.cc-seller-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cc-seller-name { font-size: 17px; font-weight: 700; color: var(--dark-text); }
.cc-seller-loc { font-size: 13px; color: var(--dark-muted); }
.cc-seller-stats {
	display: flex; gap: 24px;
	border-top: 1px solid var(--dark-hair); padding-top: 12px;
}
.cc-seller-stat-num { font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 24px; color: var(--dark-text); line-height: 1; }
.cc-seller-stat-label { font-size: 12px; letter-spacing: 1px; color: var(--dark-muted); margin-top: 2px; }
.cc-seller-link { font-size: 14px; font-weight: 600; color: var(--gold); }

/* ===================== RELATED BIKES ===================== */
.cc-related {
	background: var(--card);
	border-top: 1px solid var(--hair);
	padding: 60px 56px;
}
.cc-related-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 28px; }
.cc-related-head .cc-l-h2 { margin-bottom: 0; font-size: 44px; }
.cc-related-viewall { margin-left: auto; font-size: 15px; font-weight: 600; }
.cc-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cc-related-card {
	background: var(--page); border: 1px solid var(--hair);
	display: flex; flex-direction: column; color: var(--ink);
}
.cc-related-card:hover { border-color: var(--gold); }
.cc-related-img { display: block; height: 190px; background-size: cover; background-position: center; background-color: #ddd7cc; }
.cc-related-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; }
.cc-related-kicker { font-size: 12px; letter-spacing: 2px; color: var(--gold); font-weight: 700; text-transform: uppercase; }
.cc-related-title { font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 22px; color: var(--ink); line-height: 1.05; }
.cc-related-card:hover .cc-related-title { color: var(--gold); }
.cc-related-price { font-size: 19px; font-weight: 700; color: var(--ink); }

/* ===================== LOCATION ===================== */
.cc-l-location {
	background: var(--card);
	border-top: 1px solid var(--hair);
	padding: 60px 56px;
}
.cc-l-location .cc-l-h2 { font-size: 44px; margin-bottom: 22px; }
.cc-l-map {
	border: 1px solid var(--hair);
	height: 400px;
	background: #e9e5da;
}
.cc-l-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.cc-l-location-foot {
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; margin-top: 20px; flex-wrap: wrap;
}
.cc-l-location-addr { font-size: 16px; color: var(--body); }
/* a.-qualified so the button text beats the global ".cc-listing a { color: gold }"
   rule; also reset the full-width .cc-btn base. */
.cc-listing a.cc-l-map-btn {
	display: inline-flex; width: auto;
	background: var(--ink); color: #fff; border: 0; padding: 15px 30px;
}
.cc-listing a.cc-l-map-btn:hover { background: var(--gold); color: var(--ink); }

/* ===================== MESSAGE MODAL / BOTTOM SHEET ===================== */
.cc-modal {
	position: fixed; inset: 0; z-index: 1000;
	background: rgba(23, 22, 16, 0.6);
	display: none;
	align-items: center; justify-content: center;
	padding: 20px;
}
.cc-modal.is-open { display: flex; }
body.cc-modal-open { overflow: hidden; }
.cc-modal-panel {
	background: var(--card); width: 560px; max-width: 100%;
	padding: 36px 40px; position: relative;
	display: flex; flex-direction: column; gap: 18px;
	max-height: 90vh; overflow-y: auto;
}
.cc-modal-close {
	position: absolute; top: 0; right: 0;
	width: 44px; height: 44px; background: var(--ink); color: #fff;
	border: 0; cursor: pointer; font-size: 18px; line-height: 1;
}
.cc-modal-kicker { font-size: 12px; letter-spacing: 2px; color: var(--gold); font-weight: 700; margin-bottom: 6px; text-transform: uppercase; }
.cc-modal-title { font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 32px; color: var(--ink); line-height: 1; }
.cc-modal-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.cc-modal-chip {
	border: 1px solid var(--hair); background: var(--page); color: var(--ink);
	cursor: pointer; font-size: 13px; font-weight: 600; padding: 8px 14px;
	font-family: 'Barlow', sans-serif;
}
.cc-modal-chip:hover { border-color: var(--gold); color: var(--gold); }
.cc-modal textarea,
.cc-modal input[type="text"],
.cc-modal input[type="email"] {
	border: 1px solid var(--hair); background: var(--card);
	font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--ink);
	padding: 14px 16px; border-radius: 0; width: 100%;
}
.cc-modal textarea { min-height: 120px; resize: vertical; }
.cc-modal input:focus,
.cc-modal textarea:focus { outline: none; border-color: var(--gold); box-shadow: none; }
.cc-modal-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cc-listing.is-logged-in .cc-modal-fields { display: none; }
.cc-modal-send {
	display: block; width: 100%; box-sizing: border-box;
	background: var(--gold); color: #fff; border: 0; cursor: pointer;
	font-family: 'Bebas Neue', 'bebas-neue', sans-serif; font-size: 22px; letter-spacing: 1.5px;
	padding: 16px 28px; text-align: center; text-transform: uppercase;
}
.cc-modal-send:hover { background: var(--gold-hover-dark); }
.cc-modal-send[disabled] { opacity: 0.6; cursor: default; }
.cc-modal-privacy { font-size: 13px; color: var(--muted); line-height: 1.5; }
.cc-modal-error { font-size: 14px; font-weight: 600; color: #b0432e; }
/* Logged-out gate inside the message modal */
.cc-modal-gate-text { font-size: 15px; line-height: 1.6; color: var(--body); margin: 4px 0 18px; }
.cc-modal-gate-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cc-modal-gate-actions .cc-btn { flex: 1 1 0; min-width: 150px; text-align: center; }
/* Honeypot */
.cc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===================== MOBILE STICKY ACTION BAR ===================== */
.cc-actionbar { display: none; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1200px) {
	.cc-l-main { grid-template-columns: 1fr; }
	.cc-l-side { position: static; }
	.cc-context, .cc-l-main, .cc-related, .cc-l-location { padding-left: 32px; padding-right: 32px; }
	.cc-related-grid { grid-template-columns: repeat(2, 1fr); }
	.cc-gallery-main img { height: 480px; }
}

@media (max-width: 767px) {
	/* Gallery */
	.cc-gallery-main img { height: 290px; }
	.cc-gallery-badge { top: 12px; left: 12px; font-size: 10px; padding: 4px 8px; }
	.cc-gallery-counter { right: 12px; bottom: 12px; font-size: 12px; padding: 5px 10px; }
	.cc-gallery-arrow { width: 44px; height: 56px; font-size: 20px; background: rgba(23,22,16,0.6); }
	.cc-gallery-thumbs { gap: 6px; }
	.cc-gallery-thumb { border-width: 2px; }
	.cc-gallery-thumb img { height: 52px; }

	/* Layout: everything full width, tight gutters, order per mobile design */
	.cc-context { padding: 12px 16px; gap: 16px; }
	.cc-context-crumb { display: none; }
	.cc-context-back { font-size: 13px; }

	/* Reflow the two columns into one, in the mobile design's order:
	   gallery, summary, spec, story, seller. display:contents flattens the
	   column wrappers so every block is a direct flex child we can order. */
	.cc-l-main { display: flex; flex-direction: column; padding: 0; gap: 0; }
	.cc-l-left,
	.cc-l-side { display: contents; }
	.cc-gallery { order: 1; }
	.cc-summary { order: 2; }
	.cc-spec    { order: 3; }
	.cc-story   { order: 4; }
	.cc-seller  { order: 5; }

	.cc-summary { border: 0; border-bottom: 1px solid var(--hair); padding: 20px 16px; gap: 14px; }
	.cc-summary-title { font-size: 40px; }
	.cc-summary-sub { font-size: 14px; }
	.cc-summary-price { font-size: 34px; border-top: 0; padding-top: 0; }
	/* CTAs live in the sticky bar on phones; keep only the state displays here */
	.cc-cta-group .cc-btn { display: none; }

	.cc-spec { padding: 18px 16px; }
	.cc-l-h2 { font-size: 28px; margin-bottom: 12px; }
	.cc-spec-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
	.cc-spec-cell { padding: 12px 14px; }
	.cc-spec-label { font-size: 10px; margin-bottom: 3px; }
	.cc-spec-value { font-size: 15px; }

	.cc-story { margin: 6px 16px 18px; padding: 24px 20px; }
	.cc-story-title { font-size: 30px; }
	.cc-story-body { font-size: 15px; line-height: 1.65; }
	.cc-story-body h2, .cc-story-body h3, .cc-story-body h4 { font-size: 21px; margin: 16px 0 8px; }
	/* Collapse long stories behind the toggle on mobile */
	.cc-story-toggle {
		display: block; width: 100%; margin-top: 12px;
		background: none; border: 1px solid var(--hair); color: var(--ink);
		cursor: pointer; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600; padding: 11px 0;
	}
	.cc-listing:not(.story-open) .cc-story-body > *:nth-child(n+2) { display: none; }

	.cc-seller { margin: 0 16px 22px; padding: 20px; }
	.cc-seller-avatar { width: 46px; height: 46px; font-size: 21px; }
	.cc-seller-name { font-size: 16px; }

	.cc-related { padding: 28px 16px 30px; }
	.cc-l-location { padding: 28px 16px 32px; }
	.cc-l-location .cc-l-h2 { font-size: 32px; }
	.cc-l-map { height: 260px; }
	.cc-l-location-foot { flex-direction: column; align-items: stretch; }
	.cc-listing a.cc-l-map-btn { width: 100%; justify-content: center; }
	.cc-related-head { margin-bottom: 16px; }
	.cc-related-head .cc-l-h2 { font-size: 30px; }
	.cc-related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.cc-related-img { height: 110px; }
	.cc-related-kicker { display: none; }
	.cc-related-title { font-size: 17px; line-height: 1; }
	.cc-related-price { font-size: 15px; }

	/* Sticky bottom action bar */
	.cc-actionbar {
		display: grid;
		position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
		grid-template-columns: 1fr 1fr; gap: 10px;
		background: var(--card); border-top: 1px solid var(--hair);
		padding: 12px 16px;
	}
	.cc-actionbar .cc-btn { font-size: 19px; letter-spacing: 1px; padding: 12px 0; }
	.cc-actionbar .cc-ab-call { display: none; }
	.cc-listing.phone-revealed .cc-actionbar .cc-ab-phone { display: none; }
	.cc-listing.phone-revealed .cc-actionbar .cc-ab-call { display: flex; }

	/* Room for the fixed bar so the footer clears it */
	body.single-listing-cc { padding-bottom: 76px; }

	/* Modal becomes a bottom sheet */
	.cc-modal { align-items: flex-end; padding: 0; }
	.cc-modal-panel { width: 100%; max-width: 100%; padding: 26px 20px 30px; max-height: 88vh; }
	.cc-modal-title { font-size: 26px; }
	.cc-modal-fields { grid-template-columns: 1fr; }
}
