/* ============================================================
   Compare Widget (.gcw)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.gcw {
	background: #AD3701;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(173,55,1,0.25);
	padding: 28px 24px;
	border: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gcw:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(173,55,1,0.3);
}

.gcw__header {
	text-align: center;
	margin-bottom: 20px;
}

.gcw__title {
	font-size: 1.4rem;
	font-weight: 700;
	color: #F5F0EC;
	margin: 0 0 6px;
}

.gcw__sub {
	color: rgba(245,240,236,0.8);
	font-size: 0.9rem;
	margin: 0;
}

.gcw__slots {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: stretch;
	flex-wrap: nowrap;
}

.gcw__slot {
	flex: 1;
	min-width: 200px;
	position: relative;
}

.gcw__inner--empty {
	background: rgba(0,0,0,0.15);
	border: 1px dashed rgba(245,240,236,0.5);
	border-radius: 8px;
	padding: 12px 16px;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	position: relative;
}

.gcw__plus {
	color: #F5F0EC;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
}

.gcw__input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 0.95rem;
	background: transparent;
	min-width: 0;
	color: #F5F0EC;
}

.gcw__input::placeholder {
	color: rgba(245,240,236,0.6);
}

.gcw__dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e8e8ed;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	z-index: 100;
	max-height: 240px;
	overflow-y: auto;
}

.gcw__option {
	padding: 10px 14px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
}

.gcw__option:hover,
.gcw__option--selected {
	background: #FDF6F2;
}

.gcw__option-area {
	color: #888;
	font-size: 0.8rem;
	margin-left: 8px;
	flex-shrink: 0;
}

.gcw__drop-label {
	padding: 8px 14px 4px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.gcw__no-results {
	padding: 12px 14px;
	color: #888;
	font-size: 0.9rem;
}

.gcw__inner--filled {
	border: 1px solid rgba(245,240,236,0.3);
	border-radius: 8px;
	padding: 10px 14px;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	background: rgba(0,0,0,0.12);
}

.gcw__thumb {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.gcw__info {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow: hidden;
}

.gcw__gym-name {
	font-size: 0.9rem;
	font-weight: 600;
	color: #F5F0EC;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.gcw__gym-area {
	font-size: 0.78rem;
	color: rgba(245,240,236,0.75);
}

.gcw__clear {
	border: none;
	background: transparent;
	color: rgba(245,240,236,0.7);
	font-size: 1.1rem;
	cursor: pointer;
	padding: 0 4px;
	line-height: 1;
	flex-shrink: 0;
}

.gcw__clear:hover {
	color: #F5F0EC;
}

.gcw__vs {
	color: rgba(245,240,236,0.85);
	font-weight: 700;
	font-size: 1rem;
	align-self: center;
	padding: 0 4px;
	flex-shrink: 0;
}

.gcw__btn {
	display: block;
	margin: 20px auto 0;
	background: #F5F0EC;
	color: #AD3701;
	border: none;
	border-radius: 8px;
	padding: 12px 40px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
}

.gcw__btn:disabled {
	background: rgba(245,240,236,0.35);
	color: rgba(173,55,1,0.5);
	cursor: not-allowed;
}

.gcw__btn:not(:disabled):hover {
	background: #fff;
	color: #8f2f00;
}

/* ============================================================
   Compare Page (.cg-*)
   ============================================================ */

.cg-page {
	background: #f8fafc;
	min-height: 100vh;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	color: #1d1d1f;
}

/* Nav */
.cg-nav {
	background: #ffffff;
	border-bottom: 3px solid #AD3701;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07);
	position: sticky;
	top: 0;
	z-index: 200;
	transition: opacity 0.35s ease;
}
.cg-nav--hidden {
	opacity: 0;
	pointer-events: none;
}

.cg-nav__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 64px;
}
.cg-nav__right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.cg-nav__logo {
	position: relative;
	display: inline-flex;
}

.cg-nav__logo img {
	height: 40px;
	width: auto;
	display: block;
	filter: none;
	transition: opacity 0.2s ease;
}

/* dark.png (#374151) is the default; rusty.png (#AD3701) appears on hover */
.cg-logo--primary {
	opacity: 0;
}

.cg-logo--dark {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}

.cg-nav__logo:hover .cg-logo--primary { opacity: 1; }
.cg-nav__logo:hover .cg-logo--dark    { opacity: 0; }

.cg-nav__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 28px;
	align-items: center;
}

.cg-nav__links li a {
	color: #374151;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: color 0.2s;
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
}

.cg-nav__links li a:hover {
	color: #AD3701;
	border-bottom-color: #AD3701;
}

.cg-nav__links li a.cg-nav__active {
	color: #AD3701;
	font-weight: 600;
	border-bottom-color: #AD3701;
}

/* Hamburger button (hidden on desktop) */
.cg-nav__hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
	flex-shrink: 0;
}
.cg-nav__hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background: #374151;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}
.cg-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cg-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.cg-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.cg-nav__mobile-menu {
	display: none;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}
.cg-nav__mobile-menu.is-open {
	display: block;
}
.cg-nav__mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 6px 0;
}
.cg-nav__mobile-menu ul li a {
	display: block;
	padding: 13px 20px;
	color: #374151;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	border-bottom: 1px solid #e8eef4;
	transition: background 0.15s, color 0.15s;
}
.cg-nav__mobile-menu ul li:last-child a {
	border-bottom: none;
}
.cg-nav__mobile-menu ul li a:hover {
	background: #FDE8DB;
	color: #AD3701;
}

/* ── Nav search ───────────────────────────────────────── */
.cg-nav__search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	color: #374151;
	padding: 8px;
	min-width: 36px;
	min-height: 36px;
	border-radius: 6px;
	transition: color 0.2s, background 0.15s;
	flex-shrink: 0;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.cg-nav__search-btn:hover {
	color: #AD3701;
	background: #FDE8DB;
}

.cg-nav__search-bar {
	display: none;
	border-top: 1px solid #e8eef4;
	background: #fff;
	padding: 10px 20px 14px;
}
.cg-nav__search-bar.is-open {
	display: block;
}
.cg-nav__search-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
}
.cg-nav__search-input {
	flex: 1;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	padding: 9px 14px;
	font-size: 0.95rem;
	font-family: inherit;
	color: #374151;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
}
.cg-nav__search-input:focus {
	border-color: #AD3701;
}
.cg-nav__search-input::-webkit-search-cancel-button { display: none; }
.cg-nav__search-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	color: #9ca3af;
	cursor: pointer;
	padding: 8px;
	min-width: 36px;
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: color 0.2s;
	flex-shrink: 0;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.cg-nav__search-close:hover { color: #374151; }

.cg-nav__search-results {
	list-style: none;
	margin: 8px auto 0;
	padding: 0;
	max-width: 1100px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.cg-nav__search-results:empty { display: none; }
.cg-nav__search-results li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 16px;
	text-decoration: none;
	color: #374151;
	border-bottom: 1px solid #f1f5f9;
	transition: background 0.15s, color 0.15s;
}
.cg-nav__search-results li:last-child a { border-bottom: none; }
.cg-nav__search-results li a:hover {
	background: #FDE8DB;
	color: #AD3701;
}
.cg-nav__search-results li a:hover .cg-nav__search-area { color: #AD3701; }
.cg-nav__search-name {
	font-weight: 500;
	font-size: 0.9rem;
}
.cg-nav__search-area {
	font-size: 0.8rem;
	color: #9ca3af;
	text-align: right;
}
.cg-nav__search-noresult {
	padding: 14px 16px;
	color: #9ca3af;
	font-size: 0.9rem;
	list-style: none;
}

/* ── Page hero ────────────────────────────────────────── */
.cg-page-hero {
	background: linear-gradient(150deg, #0f0500 0%, #2d1006 40%, #8c2700 78%, #AD3701 100%);
	padding: 36px 20px 44px;
	position: relative;
	overflow: hidden;
}

.cg-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 80% at 15% 60%, rgba(255,90,20,0.10) 0%, transparent 65%);
	pointer-events: none;
}

.cg-page-hero__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.cg-page-hero__sub {
	color: rgba(255,255,255,0.65);
	font-size: 1rem;
	margin: 8px 0 0;
	font-weight: 400;
}

/* Container */
.cg-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 28px 20px 60px;
}

/* Breadcrumb */
.cg-breadcrumb {
	font-size: 0.82rem;
	color: rgba(255,255,255,0.55);
	padding: 0;
	margin-bottom: 12px;
	font-weight: 400;
}

.cg-breadcrumb a {
	color: rgba(255,255,255,0.72);
	text-decoration: none;
}

.cg-breadcrumb a:hover {
	color: #fff;
	text-decoration: none;
}

.cg-breadcrumb span {
	margin: 0 6px;
}

/* H1 */
.cg-h1 {
	font-size: 2.4rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

/* Widget wrap */
.cg-widget-wrap {
	margin-bottom: 32px;
}

/* Empty state */
.cg-empty {
	text-align: center;
	color: #888;
	padding: 40px 0;
	font-size: 1rem;
}

/* ── Table scroll wrapper ── */
.cg-table-scroll {
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
}

/* ── Gym header row ── */
.cg-header {
	display: grid;
	grid-template-columns: 220px repeat(var(--gym-count, 2), 1fr);
	border-bottom: 2px solid #e8e8ed;
	background: #fff;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
}

.cg-header__label-col {
	/* empty label column in header */
	background: #fafafa;
	border-right: 1px solid #f0f0f0;
}

.cg-gym-col {
	padding: 20px 16px;
	text-align: center;
	border-left: 1px solid #f0f0f0;
	position: relative;
}

.cg-remove {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #f5f5f5;
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	cursor: pointer;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: background 0.2s, color 0.2s;
}

.cg-remove:hover {
	background: #ffecec;
	color: #c0392b;
}

.cg-gym-photo {
	width: 100%;
	max-width: 160px;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.cg-gym-name {
	font-weight: 700;
	font-size: 1rem;
	color: #1a1a2e;
	display: block;
	margin-bottom: 2px;
}

.cg-gym-name a {
	color: #1a1a2e;
	text-decoration: none;
}

.cg-gym-name a:hover {
	color: #AD3701;
	text-decoration: underline;
}

.cg-gym-area {
	font-size: 0.82rem;
	color: #888;
	display: block;
	margin: 2px 0 6px;
}

.cg-gym-rating {
	color: #f5a623;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 4px;
}

.cg-view-link {
	font-size: 0.82rem;
	color: #AD3701;
	text-decoration: none;
	display: block;
	margin-top: 8px;
}

.cg-view-link:hover {
	text-decoration: underline;
}

/* (cg-controls row removed — checkbox moved into cgb__label-col) */

/* ── Comparison table ── */
.cg-table {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.07);
	overflow: hidden;
}

.cg-group__header {
	background: #AD3701;
	color: #fff;
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 11px 16px;
	display: grid;
	grid-template-columns: 220px repeat(var(--gym-count, 2), 1fr);
}

.cg-group__header-text {
	grid-column: 1 / -1;
}

.cg-row {
	display: grid;
	grid-template-columns: 220px repeat(var(--gym-count, 2), 1fr);
	border-bottom: 1px solid #f1f5f9;
	align-items: stretch;
}

.cg-row:last-child {
	border-bottom: none;
}

.cg-row:hover {
	background: #fafafe;
}

.cg-row--highlight {
	background: #FFF5EF;
}

.cg-row--highlight:hover {
	background: #FFEEE3;
}

/* Label cell stays neutral so highlight doesn't bleed into label */
.cg-row--highlight .cg-label-col,
.cg-row--highlight:hover .cg-label-col {
	background: #f8fafc;
}

.cg-label-col {
	padding: 13px 16px;
	font-size: 0.875rem;
	color: #374151;
	font-weight: 600;
	background: #f8fafc;
	border-right: 1px solid #eef2f7;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.cg-row__val {
	padding: 13px 16px;
	text-align: center;
	font-size: 0.78rem;
	color: #374151;
	border-left: 1px solid #f1f5f9;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.cg-yes {
	color: #2e7d32;
	font-weight: 700;
	font-size: 1.1rem;
}

.cg-no {
	color: #c62828;
	font-size: 1.1rem;
}

.cg-na {
	color: #bbb;
	font-size: 0.85rem;
}

.cg-slot-label {
	display: block;
	font-size: 0.8rem;
	font-weight: 400;
	color: #94a3b8;
	margin-top: 2px;
}

.cg-price-main {
	color: #AD3701;
	font-weight: 700;
	font-size: 1rem;
}
.cg-price-mo {
	font-size: 0.72rem;
	font-weight: 600;
	color: #0f172a;
	margin-left: 1px;
}

/* ── Add to Compare button ── */
.gym-atc {
	border: 1.5px solid #AD3701;
	color: #fff;
	background: #AD3701;
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.gym-atc--active {
	background: #6b2200;
	border-color: #6b2200;
	color: #fff;
}

.gym-atc:hover:not(.gym-atc--active) {
	background: #8f2d01;
	border-color: #8f2d01;
}

/* ── Gym card shared styles (archive + homepage cards) ── */
a.gym-card__link,
a.gym-card__link * {
	text-decoration: none;
}
.gym-card__link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.gym-card__type {
	font-size: 0.7rem;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 20px;
	background: #FDE8DB;
	color: #AD3701;
	white-space: nowrap;
	align-self: flex-start;
}
.gym-card__atc-wrap {
	padding: 10px 16px 16px;
	border-top: 1px solid #F0EBE7;
	display: flex;
	justify-content: center;
}
.gym-card__atc-wrap .gym-atc {
	letter-spacing: 0.03em;
}

/* ── Toast ── */
.gym-toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: #1a1a2e;
	color: #fff;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 0.9rem;
	opacity: 0;
	transition: opacity 0.3s, transform 0.3s;
	z-index: 9999;
	white-space: nowrap;
}

.gym-toast--show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

/* ── Compact compare bar (inside table-scroll, aligned with table columns) ── */
.cg-compare-bar {
	display: grid;
	grid-template-columns: 220px 1fr 1fr 1fr;
	background: #fff;
	border-bottom: none;
	border-radius: 16px;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	min-width: 560px;
	margin-bottom: 12px;
	position: relative;
	z-index: 10;
}

.cgb__label-col {
	background: #f8fafc;
	border-right: 1px solid #eef2f7;
	display: flex;
	align-items: flex-end;
	padding: 16px;
}

.cgb__controls {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cgb__control-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cgb__control-row input[type="checkbox"] {
	accent-color: #AD3701;
	width: 15px;
	height: 15px;
	cursor: pointer;
	flex-shrink: 0;
	margin: 0;
}

.cgb__control-row label {
	font-size: 0.84rem;
	color: #555;
	cursor: pointer;
	line-height: 1.2;
	white-space: nowrap;
}

.cgb__col {
	position: relative;
	border-left: 1px solid #eef2f7;
}

.cgb__col--filled {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 20px;
	background: #fff;
}

.cgb__photo {
	width: 100%;
	max-width: 200px;
	height: 170px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 14px;
	display: block;
	box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.cgb__photo--placeholder {
	width: 100%;
	max-width: 200px;
	height: 170px;
	background: #f0f0f0;
	border-radius: 12px;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cgb__name {
	font-size: 1rem;
	font-weight: 700;
	color: #0f172a;
	display: block;
	margin-bottom: 4px;
	letter-spacing: -0.01em;
}

.cgb__name a {
	color: inherit;
	text-decoration: none;
}

.cgb__name a:hover {
	color: #AD3701;
}

.cgb__area {
	font-size: 0.8rem;
	color: #94a3b8;
	display: block;
	margin-bottom: 6px;
}

.cgb__rating {
	font-size: 0.85rem;
	color: #f5a623;
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
}

.cgb__view-link {
	font-size: 0.78rem;
	font-weight: 600;
	color: #AD3701;
	text-decoration: none;
	display: inline-block;
	background: #FDE8DB;
	padding: 5px 14px;
	border-radius: 20px;
	transition: background 0.15s;
}

.cgb__view-link:hover {
	background: #fdd0b0;
	text-decoration: none;
}

.cgb__remove {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #f1f5f9;
	border: none;
	border-radius: 50%;
	width: 26px;
	height: 26px;
	cursor: pointer;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	transition: background 0.2s, color 0.2s;
}

.cgb__remove:hover {
	background: #ffecec;
	color: #c0392b;
}

.cgb__col--empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	min-height: 220px;
	background: #f8fafc;
	position: relative;
}

.cgb__add-btn {
	background: transparent;
	border: 1.5px solid #AD3701;
	color: #AD3701;
	border-radius: 20px;
	padding: 9px 20px;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.cgb__add-btn:hover {
	background: #FDE8DB;
}

.cgb__search {
	width: 100%;
	position: relative;
	padding: 0 4px;
}

.cgb__input {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 0.88rem;
	outline: none;
	box-sizing: border-box;
}

.cgb__input:focus {
	border-color: #AD3701;
}

.cgb__dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 4px;
	right: 4px;
	background: #fff;
	border: 1px solid #e8e8ed;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	z-index: 9999;
	max-height: 240px;
	overflow-y: auto;
}

.cgb__option {
	padding: 10px 14px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.88rem;
}

.cgb__option:hover {
	background: #FDF6F2;
}

/* ── Sticky mini-bar (fixed, appears on scroll) ── */
.cg-sticky-bar {
	position: fixed;
	top: 64px; /* below nav — adjusted to 0px by JS when nav hides */
	left: 0;
	right: 0;
	background: #ffffff;
	border-bottom: 1px solid #f1f5f9;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	z-index: 190;
	transform: translateY(-110%);
	transition: transform 0.25s ease, top 0.25s ease;
}

.cg-sticky-bar.is-visible {
	transform: translateY(0);
}

.cg-sticky-bar__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 220px 1fr 1fr 1fr;
}

.csb__spacer {
	background: #f8fafc;
	border-right: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	padding: 10px 16px;
}

.csb__col {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border-left: 1px solid #f1f5f9;
	position: relative;
	min-width: 0;
}

.csb__photo {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
	display: block;
	margin-top: 2px;
}

.csb__photo--placeholder {
	width: 68px;
	height: 68px;
	background: #f0f0f0;
	border-radius: 8px;
	flex-shrink: 0;
	margin-top: 2px;
}

.csb__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.csb__name {
	font-weight: 700;
	font-size: 0.98rem;
	color: #1a1a2e;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: block;
}

.csb__area {
	font-size: 0.78rem;
	color: #888;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.csb__rating {
	font-size: 0.78rem;
	color: #f5a623;
	display: block;
	white-space: nowrap;
	font-weight: 600;
}

.csb__price {
	font-size: 0.78rem;
	color: #AD3701;
	font-weight: 700;
	display: block;
	white-space: nowrap;
}

.csb__link {
	font-size: 0.78rem;
	color: #AD3701;
	text-decoration: none;
	display: block;
	white-space: nowrap;
}

.csb__link:hover {
	text-decoration: underline;
}

.csb__remove {
	position: absolute;
	top: 6px;
	right: 6px;
	background: transparent;
	border: none;
	color: #bbb;
	cursor: pointer;
	font-size: 1rem;
	padding: 2px 5px;
	line-height: 1;
	transition: color 0.2s;
}

.csb__remove:hover {
	color: #c0392b;
}

/* ── Floating compare tray (global, all pages except compare page) ── */
.gym-compare-tray {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #150e05;
	border-top: 3px solid #AD3701;
	z-index: 9990;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
	overflow: visible;
}

.gct__actions {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}

.gct__clear-all {
	position: absolute;
	top: -14px;
	right: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #2a2a40;
	border: 1px solid rgba(173,55,1,0.6);
	color: rgba(255,255,255,0.55);
	font-size: 0.85rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.gct__clear-all:hover {
	background: #AD3701;
	border-color: #AD3701;
	color: #fff;
}

.gym-compare-tray.is-visible {
	transform: translateY(0);
}

.gct__inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.gct__label {
	color: rgba(255,255,255,0.6);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	flex-shrink: 0;
	white-space: nowrap;
}

.gct__slots {
	display: flex;
	gap: 10px;
	flex: 1;
}

.gct__slot {
	flex: 1;
	max-width: 260px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255,255,255,0.07);
	border-radius: 8px;
	padding: 8px 10px;
	position: relative;
	min-width: 0;
}

.gct__slot--empty {
	background: transparent;
	border: 1.5px dashed rgba(255,255,255,0.18);
	justify-content: center;
	color: rgba(255,255,255,0.35);
	font-size: 0.82rem;
	cursor: default;
}

.gct__thumb {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border-radius: 5px;
	flex-shrink: 0;
	display: block;
}

.gct__thumb--placeholder {
	width: 36px;
	height: 36px;
	background: #2c2c44;
	border-radius: 5px;
	flex-shrink: 0;
}

.gct__info {
	flex: 1;
	min-width: 0;
}

.gct__name {
	font-weight: 600;
	font-size: 0.82rem;
	color: #fff;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gct__area {
	font-size: 0.72rem;
	color: rgba(255,255,255,0.5);
	display: block;
}

.gct__remove {
	position: absolute;
	top: 4px;
	right: 4px;
	background: transparent;
	border: none;
	color: rgba(255,255,255,0.35);
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1;
	padding: 2px 4px;
	transition: color 0.15s;
}

.gct__remove:hover {
	color: #ff6b6b;
}

.gct__compare-btn {
	background: #AD3701;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 11px 28px;
	font-weight: 700;
	font-size: 0.9rem;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background 0.2s;
}

.gct__compare-btn:disabled {
	background: rgba(173,55,1,0.35);
	cursor: not-allowed;
}

.gct__compare-btn:not(:disabled):hover {
	background: #8f2f00;
}

.gct__slot--empty {
	cursor: pointer;
	border: 1px dashed rgba(255,255,255,0.2);
	border-radius: 8px;
	justify-content: center;
	gap: 6px;
	color: rgba(255,255,255,0.5);
	font-size: 0.82rem;
	transition: border-color 0.15s, color 0.15s;
}
.gct__slot--empty:hover {
	border-color: #AD3701;
	color: #fff;
}
.gct__plus-icon {
	font-size: 1.1rem;
	line-height: 1;
	color: rgba(173,55,1,0.7);
}

/* ── Tray picker panel ── */
.gct__picker {
	display: none;
	position: absolute;
	bottom: calc(100% + 8px);
	left: 0;
	width: 280px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.22);
	overflow: hidden;
	border: 1px solid #e8e8ed;
	z-index: 10;
}
.gct__picker.is-open {
	display: block;
}
.gct__picker-search {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	border-bottom: 1px solid #f0f0f0;
	background: #fafafa;
}
.gct__picker-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 7px 10px;
	font-size: 0.85rem;
	outline: none;
	color: #1d1d1f;
}
.gct__picker-input:focus {
	border-color: #AD3701;
}
.gct__picker-close {
	background: none;
	border: none;
	font-size: 1.1rem;
	color: #888;
	cursor: pointer;
	padding: 2px 6px;
	line-height: 1;
}
.gct__picker-close:hover { color: #AD3701; }
.gct__picker-label {
	padding: 8px 12px 4px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #888;
}
.gct__picker-results {
	max-height: 260px;
	overflow-y: auto;
}
.gct__picker-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	cursor: pointer;
	transition: background 0.1s;
}
.gct__picker-option:hover { background: #FFF5EF; }
.gct__picker-thumb {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
	background: #eee;
}
.gct__picker-thumb--ph {
	background: #e8e8ed;
}
.gct__picker-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.gct__picker-name {
	font-size: 0.82rem;
	font-weight: 600;
	color: #1d1d1f;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gct__picker-area {
	font-size: 0.72rem;
	color: #888;
}
.gct__picker-empty {
	padding: 16px 12px;
	font-size: 0.82rem;
	color: #aaa;
	text-align: center;
}

@media (max-width: 600px) {
	.gct__label { display: none; }
	.gct__slot { max-width: none; }
	.gct__compare-btn { padding: 11px 16px; font-size: 0.82rem; }
}

/* ── Mobile compare controls bar (hidden on desktop, fixed-bottom on mobile) ── */
.cg-mobile-controls {
	display: none; /* shown at ≤600px */
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #150e05;
	border-top: 2px solid #AD3701;
	padding: 9px 16px;
	gap: 16px;
	z-index: 9000;
	justify-content: center;
	align-items: center;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.82);
	box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
}
.cg-mobile-ctrl {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	user-select: none;
}
.cg-mobile-ctrl input[type="checkbox"] {
	width: 14px;
	height: 14px;
	cursor: pointer;
	accent-color: #AD3701;
	flex-shrink: 0;
}

/* ── Homepage compare section ── */
.hp-compare {
	padding: 48px 0;
	background: #f8fafc;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.cg-page-hero { padding: 28px 20px 36px; }
	.cg-h1 { font-size: 1.85rem; }
	.cg-page-hero__sub { font-size: 0.9rem; }
	.cg-compare-bar {
		min-width: 560px; /* scroll with table */
	}

	.gcw__slots {
		flex-direction: column;
	}

	.gcw__slot {
		min-width: 0;
		width: 100%;
	}

	.gcw__vs {
		align-self: center;
		text-align: center;
	}

	.cg-table-scroll {
		overflow-x: auto;
	}

	.cg-header,
	.cg-group__header,
	.cg-row {
		min-width: 560px; /* overridden to 0 at ≤600px */
	}

	.cg-h1 {
		font-size: 1.5rem;
	}

	.gct__inner { padding: 0 12px; }
	.gct__slot { padding: 6px 8px; }
	.gcw__title { font-size: 1.2rem; }
	.cgb__col { padding: 10px 8px; }
}

@media (max-width: 700px) {
	.cg-nav__links { display: none; }
	.cg-nav__hamburger { display: flex; }
}

@media (max-width: 600px) {
	.gcw { padding: 20px 16px; }
	.cg-nav__logo img { height: 28px; width: auto; }
	.gym-footer__top { padding: 32px 16px; }

	/* Floating tray: 2-row layout — slots on top, action buttons on bottom */
	.gct__label { display: none; }
	.gct__slot { max-width: none; }
	.gct__inner { flex-wrap: wrap; padding: 8px 12px; gap: 6px; }
	.gct__slots { width: 100%; order: 1; }

	/* Hide thumbnail in tray slots on mobile — saves ~46px per slot so name fits */
	.gct__thumb, .gct__thumb--placeholder { display: none; }

	/* Tray: full gym name — 3-line clamp now that thumbnail is gone */
	.gct__name {
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		line-height: 1.3;
		font-size: 0.85rem;
	}

	/* Actions row: side-by-side [Clear] [Compare] */
	.gct__actions {
		width: 100%;
		order: 2;
		position: static; /* override the relative so clear-all absolute child is irrelevant */
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 8px;
	}

	/* Clear-all: ghost button with label text instead of floating × circle */
	.gct__clear-all {
		position: static;
		width: auto;
		height: auto;
		border-radius: 8px;
		padding: 11px 18px;
		font-size: 0; /* hide the × character */
		font-weight: 600;
		background: rgba(255,255,255,0.1);
		border: 1px solid rgba(255,255,255,0.25);
		color: rgba(255,255,255,0.75);
	}
	.gct__clear-all::after {
		content: 'Clear';
		font-size: 0.85rem;
		font-weight: 600;
	}
	.gct__clear-all:hover {
		background: rgba(255,255,255,0.18);
		border-color: rgba(255,255,255,0.45);
		color: #fff;
	}

	/* Compare button: shorter text on mobile, first in row */
	.gct__compare-btn {
		padding: 11px 20px;
		font-size: 0;
		order: 1;
	}
	.gct__compare-btn::after {
		content: 'Compare';
		font-size: 0.85rem;
		font-weight: 700;
	}
	.gct__clear-all { order: 2; }

	/* Tray picker: full tray width on mobile */
	.gct__picker { left: 0 !important; right: 0; width: auto; }

	/* ATC buttons: compact on mobile */
	.gym-atc { font-size: 0.75rem; padding: 5px 10px; }
	.gym-card__atc-wrap { padding: 6px 10px 10px; }

	/* ── Compare page mobile: redesigned layout ── */

	/* Sticky bar: compact on mobile — no spacer/controls column */
	.cg-sticky-bar { border-top: 3px solid #AD3701; }
	.cg-sticky-bar__inner { grid-template-columns: repeat(var(--gym-count, 2), 1fr); padding-top: 4px; }
	.cg-sticky-bar .csb__spacer { display: none; }
	/* Sticky bar: stacked layout — photo / name / rating */
	.csb__col { padding: 12px 8px; gap: 6px; flex-direction: column; align-items: center; justify-content: flex-start; text-align: center; }
	.csb__photo, .csb__photo--placeholder { display: block; width: 52px; height: 52px; border-radius: 6px; margin-top: 0; flex-shrink: 0; }
	.csb__info { width: 100%; display: flex; flex-direction: column; gap: 3px; align-items: center; }
	.csb__name {
		font-size: 0.8rem;
		white-space: normal;
		overflow: hidden;
		text-overflow: unset;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		line-height: 1.3;
		text-align: center;
	}
	.csb__area { display: none; }
	.csb__link { display: none; }
	.csb__rating { font-size: 0.72rem; text-align: center; }
	.csb__price { display: none; }

	/* Compare header bar: gym columns fill full width, no label/controls column */
	.cg-compare-bar {
		display: grid;
		grid-template-columns: repeat(var(--gym-count, 2), 1fr);
		min-width: 0;
		border-bottom: 2px solid #f1f5f9;
	}
	.cgb__label-col { display: none; }

	/* Gym photo cards — taller and full column width */
	.cgb__col--filled { padding: 12px 8px 14px; }
	.cgb__photo, .cgb__photo--placeholder {
		height: 130px;
		max-width: 100%;
		width: 100%;
		border-radius: 8px;
	}
	.cgb__name { font-size: 0.82rem; }

	/* Remove horizontal scroll on compare table — rows reflow vertically */
	.cg-table-scroll { overflow-x: visible; }
	.cg-header, .cg-group__header, .cg-row { min-width: 0; }

	/* Group section headers: simple full-width block */
	.cg-group__header { display: block; }

	/* Data rows: label becomes full-width row header above the value cells */
	.cg-row {
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px solid #f1f5f9;
	}
	.cg-label-col {
		flex: 0 0 100%;
		width: 100%;
		padding: 7px 12px 5px;
		font-size: 0.75rem;
		font-weight: 600;
		color: #64748b;
		background: #f8fafc;
		border-bottom: 1px solid #f1f5f9;
	}
	.cg-row__val {
		flex: 1;
		min-width: 0;
		padding: 10px 6px;
		font-size: 0.7rem; /* 11.2px — smaller than the 0.75rem/12px label */
		text-align: center;
	}

	/* Highlight: apply background to value cells, label stays neutral */
	.cg-row--highlight { background: transparent; }
	.cg-row--highlight .cg-row__val { background: #FFF5EF; }
	.cg-row--highlight .cg-label-col,
	.cg-row--highlight:hover .cg-label-col { background: #f8fafc !important; }

	/* Page padding-bottom so last rows aren't hidden behind fixed controls bar */
	.cg-page .cg-container { padding-bottom: 64px; }

	/* Show mobile controls bar */
	.cg-mobile-controls { display: flex; }
}

@media (max-width: 480px) {
	.gcw__vs { margin: 4px 0; }
}

/* ============================================================
   Light variant (.gcw--light) — used on compare results page
   ============================================================ */

.gcw--light {
	background: #fff;
	border: 1px solid #e8e8ed;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gcw--light:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.gcw--light .gcw__title { color: #1a1a2e; }
.gcw--light .gcw__sub { color: #888; }
.gcw--light .gcw__inner--empty { background: #fff; border: 1px dashed #ccc; }
.gcw--light .gcw__plus { color: #AD3701; }
.gcw--light .gcw__input { color: #1d1d1f; }
.gcw--light .gcw__input::placeholder { color: #aaa; }
.gcw--light .gcw__inner--filled { background: #FDF6F2; border: 1px solid #e8e8ed; }
.gcw--light .gcw__gym-name { color: #1a1a2e; }
.gcw--light .gcw__gym-area { color: #888; }
.gcw--light .gcw__clear { color: #999; }
.gcw--light .gcw__clear:hover { color: #AD3701; }
.gcw--light .gcw__vs { color: #AD3701; opacity: 1; }
.gcw--light .gcw__btn { background: #AD3701; color: #fff; font-weight: 600; }
.gcw--light .gcw__btn:disabled { background: #ccc; color: #fff; }
.gcw--light .gcw__btn:not(:disabled):hover { background: #8f2f00; color: #fff; }

/* ══════════════════════════════════════════════════════════
   COMPARE — COMMUNITY RATINGS
   ══════════════════════════════════════════════════════════ */
.cg-survey-score {
	font-weight: 700;
	font-size: 0.92rem;
	color: #1d1d1f;
}

.cg-crowding-pill {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
}

/* Crowding band colors */
.cg-band--quiet       { background: #2563eb; }
.cg-band--comfortable { background: #16a34a; }
.cg-band--busy        { background: #ea8c00; }
.cg-band--crowded     { background: #dc2626; }

/* Crowding wrap — inline on desktop, stacked on mobile */
.cg-crowding-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: nowrap;
}

/* Crowding score number — bold, matches cleanliness score style */
.cg-crowding-score {
	font-size: 0.75rem;
	font-weight: 700;
	color: #555;
	margin-left: 0;
}

@media (max-width: 768px) {
	.cg-crowding-wrap {
		flex-direction: column;
		align-items: center;
		gap: 3px;
	}
	.cg-crowding-pill {
		font-size: 0.64rem;
		padding: 2px 7px;
	}
	.cg-accuracy-row {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 6px;
	}
	.cg-accuracy-row__text,
	.cg-accuracy-row__link {
		text-align: center;
	}
}

/* Cleanliness badge — pill, same visual style as crowding pills */
.gym-survey__clean-badge {
	display: inline-block;
	padding: 2px 9px;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	margin-top: 4px;
	white-space: nowrap;
}
.cg-clean--spotless   { background: #16a34a; }
.cg-clean--clean      { background: #2563eb; }
.cg-clean--acceptable { background: #ea8c00; }
.cg-clean--below      { background: #dc6820; }
.cg-clean--poor       { background: #dc2626; }

/* No-data dash — subtle, not visually dominant */
.cg-no-data {
	color: #d1d5db;
	font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════
   SITEWIDE FOOTER
   ══════════════════════════════════════════════════════════ */
.gym-footer {
	background: #1c1108;
	color: rgba(255,255,255,0.6);
	font-size: 0.875rem;
	border-top: 4px solid #AD3701;
}

.gym-footer__top {
	padding: 56px 24px 48px;
}

.gym-footer__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
}

.gym-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gym-footer__logo-link img,
.gym-footer__logo-link .custom-logo {
	max-height: 44px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.gym-footer__tagline {
	color: rgba(255,255,255,0.45);
	font-size: 0.82rem;
	line-height: 1.65;
	max-width: 280px;
	margin: 0;
}

.gym-footer__heading {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f87171;
	margin: 0 0 16px;
}

.gym-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gym-footer__list a {
	color: rgba(255,255,255,0.55);
	text-decoration: none;
	transition: color 0.15s;
	font-size: 0.875rem;
}

.gym-footer__list a:hover {
	color: #fff;
}

.gym-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 18px 24px;
	background: rgba(0,0,0,0.15);
}

.gym-footer__bottom-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 0.8rem;
	color: rgba(255,255,255,0.35);
}

.gym-footer__bottom-links {
	display: flex;
	gap: 20px;
}

.gym-footer__bottom-links a {
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	transition: color 0.15s;
}

.gym-footer__bottom-links a:hover {
	color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
	.gym-footer__inner {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.gym-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {
	.gym-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
	.gym-footer__brand {
		grid-column: 1 / -1;
	}
	.gym-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}
}

/* ── Compare page: review nudge row ── */
.cg-row--review-nudge {
	border-top: none;
	padding: 8px 0;
}
.cg-row--review-nudge .cg-label-col {
	background: transparent !important;
	border-right-color: transparent !important;
}

.cg-review-nudge-link {
	font-size: 0.75rem;
	color: #AD3701;
	text-decoration: none;
	font-weight: 500;
	white-space: normal;
	display: block;
	text-align: center;
	line-height: 1.4;
}

.cg-review-nudge-link:hover {
	text-decoration: underline;
}

/* ── Compare page: accuracy footer row ── */
.cg-accuracy-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 14px 20px;
	background: transparent;
	border-top: 1px solid #f0f0f0;
	flex-wrap: wrap;
}

.cg-accuracy-row__text {
	font-size: 0.82rem;
	color: #6b7280;
}

.cg-accuracy-row__link {
	font-size: 0.82rem;
	color: #AD3701;
	font-weight: 600;
	text-decoration: none;
}

.cg-accuracy-row__link:hover {
	text-decoration: underline;
}

/* ============================================================
   Accuracy banner (.hp-accuracy) — used on all-gyms + homepage
   ============================================================ */

.hp-accuracy {
	padding: 20px 0 32px;
}

.hp-accuracy__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	background: #fff8f5;
	border: 1px solid #f0e0d8;
	border-left: 3px solid #AD3701;
	border-radius: 10px;
	padding: 20px 24px;
}

.hp-accuracy__body {
	flex: 1;
}

.hp-accuracy__heading {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 4px;
}

.hp-accuracy__text {
	font-size: 0.84rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.5;
}

.hp-accuracy__btn {
	flex-shrink: 0;
	background: #AD3701;
	color: #fff;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 20px;
	white-space: nowrap;
	transition: background 0.2s;
}

.hp-accuracy__btn:hover {
	background: #8f2d01;
}

.hp-accuracy--inline {
	padding: 12px 0 20px;
	border-top: 1px solid #f0f0f0;
	margin-top: 8px;
}

@media (max-width: 600px) {
	.hp-accuracy__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.hp-accuracy__btn {
		width: 100%;
		text-align: center;
	}
}

/* ============================================================
   Cork Circle CTA Banner (.cc-cta)
   ============================================================ */

.cc-cta {
	background: #F5F0EC;
	border-top: 1px solid #e8e0d8;
	padding: 48px 20px;
}

.cc-cta__inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 36px;
}

.cc-cta__logo-wrap {
	flex-shrink: 0;
}

.cc-cta__logo {
	display: block;
	width: 140px;
	height: auto;
}

.cc-cta__body {
	flex: 1;
}

.cc-cta__heading {
	font-size: 1.2rem;
	font-weight: 700;
	color: #AD3701;
	margin: 0 0 6px;
	line-height: 1.3;
}

.cc-cta__text {
	font-size: 0.9rem;
	color: #5c3d2a;
	margin: 0;
	line-height: 1.6;
}

.cc-cta__action {
	flex-shrink: 0;
}

.cc-cta__btn {
	display: inline-block;
	background: #AD3701;
	color: #F5F0EC;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 13px 28px;
	border-radius: 30px;
	transition: background 0.2s, transform 0.15s;
	white-space: nowrap;
}

.cc-cta__btn:hover {
	background: #8f2d01;
	transform: translateY(-1px);
}

@media (max-width: 700px) {
	.cc-cta__inner {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	.cc-cta__logo {
		width: 120px;
		margin: 0 auto;
	}
	.cc-cta__heading {
		font-size: 1.1rem;
	}
}
