.gc-app-shell,
.gc-public-page,
.gc-results-page {
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.12), transparent 22%),
		radial-gradient(circle at top right, rgba(140, 28, 38, 0.07), transparent 26%),
		linear-gradient(180deg, #fcfaf7 0%, #f6f1eb 100%);
	min-height: 100vh;
}

.gc-app-shell {
	position: relative;
}

.gc-app-main {
	position: relative;
	z-index: 1;
}

.gc-site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	padding: 16px 0;
	background: rgba(246, 241, 235, 0.82);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-site-header-inner {
	display: grid;
	grid-template-columns: auto minmax(280px, 1fr) auto auto;
	align-items: center;
	gap: 18px;
}

.gc-site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	text-decoration: none;
}

.gc-site-brand-logo,
.gc-site-brand-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--gc-shadow-sm);
}

.gc-site-brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-site-brand-mark {
	color: var(--gc-color-white);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.gc-site-brand-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.gc-site-brand-copy strong {
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.2;
}

.gc-site-brand-copy small {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-caption);
}

.gc-header-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 18px;
	box-shadow: var(--gc-shadow-xs);
}

.gc-header-search input {
	min-height: 44px;
	padding: 0 14px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.gc-header-search input:focus {
	box-shadow: none;
}

.gc-header-search-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 14px;
	background: var(--gc-color-secondary);
	color: var(--gc-color-white);
	font-size: var(--gc-text-small);
	font-weight: 600;
	cursor: pointer;
	transition:
		transform var(--gc-transition-base),
		background-color var(--gc-transition-base);
}

.gc-header-search-button:hover {
	background: #171717;
	transform: translateY(-1px);
}

.gc-site-nav,
.gc-mobile-nav {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gc-site-nav a,
.gc-mobile-nav a,
.gc-site-footer-list a,
.gc-site-footer-socials a {
	text-decoration: none;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	font-weight: 500;
	transition:
		color var(--gc-transition-base),
		background-color var(--gc-transition-base),
		border-color var(--gc-transition-base),
		transform var(--gc-transition-base);
}

.gc-site-nav a,
.gc-mobile-nav a {
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 12px;
}

.gc-site-nav a:hover,
.gc-site-nav a.is-active,
.gc-mobile-nav a:hover,
.gc-mobile-nav a.is-active {
	color: var(--gc-color-text);
	background: rgba(255, 255, 255, 0.76);
	border-color: rgba(43, 43, 43, 0.08);
}

.gc-site-actions {
	justify-content: flex-end;
	align-items: center;
}

.gc-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	width: 46px;
	height: 46px;
	border: 1px solid var(--gc-color-border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.84);
	cursor: pointer;
}

.gc-mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--gc-color-text);
}

.gc-mobile-backdrop {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: var(--gc-color-overlay);
}

.gc-mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 90;
	display: grid;
	align-content: start;
	gap: 20px;
	width: min(360px, calc(100vw - 18px));
	height: 100vh;
	padding: 18px;
	background: rgba(255, 252, 250, 0.98);
	backdrop-filter: blur(22px);
	border-left: 1px solid rgba(43, 43, 43, 0.08);
	box-shadow: -16px 0 40px rgba(43, 43, 43, 0.08);
	transform: translateX(100%);
	transition: transform var(--gc-transition-base);
}

.gc-mobile-menu.is-open {
	transform: translateX(0);
}

.gc-mobile-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gc-mobile-close {
	width: 42px;
	height: 42px;
	border: 1px solid var(--gc-color-border);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.88);
	cursor: pointer;
	font-size: 1.35rem;
	line-height: 1;
}

.gc-mobile-nav {
	display: grid;
	gap: 8px;
}

.gc-mobile-nav a {
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.8);
	border-color: rgba(43, 43, 43, 0.08);
}

.gc-mobile-actions .gc-primary-button,
.gc-mobile-actions .gc-secondary-button {
	width: 100%;
}

.gc-breadcrumb-bar {
	padding: 16px 0 0;
}

.gc-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: var(--gc-text-small);
	color: var(--gc-color-text-muted);
}

.gc-breadcrumbs a {
	text-decoration: none;
}

.gc-breadcrumbs em {
	font-style: normal;
	opacity: 0.5;
}

.gc-app-feedback {
	padding-top: 16px;
}

.gc-home-hero,
.gc-company-hero {
	position: relative;
	overflow: hidden;
}

.gc-home-hero {
	padding: 64px 0 28px;
	background:
		linear-gradient(135deg, rgba(43, 43, 43, 0.9), rgba(140, 28, 38, 0.68)),
		var(--gc-hero-image, linear-gradient(180deg, #201816 0%, #6d202a 100%));
	background-size: cover;
	background-position: center;
	color: var(--gc-color-white);
}

.gc-home-hero::before,
.gc-company-hero::before {
	content: "";
	position: absolute;
	inset: auto auto -90px -70px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(201, 168, 92, 0.12);
	filter: blur(12px);
}

.gc-hero-shell,
.gc-single-grid,
.gc-page-shell {
	display: grid;
	gap: 24px;
}

.gc-hero-shell {
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	align-items: center;
}

.gc-hero-copy {
	position: relative;
	z-index: 1;
}

.gc-hero-copy .gc-eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.gc-hero-copy p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.82);
}

.gc-stat-row,
.gc-dashboard-metrics,
.gc-home-category-chip-row,
.gc-plan-limits,
.gc-catalog-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gc-stat-row {
	margin-top: 24px;
}

.gc-stat-row div,
.gc-dashboard-metrics div,
.gc-dashboard-chip-grid div,
.gc-quick-fact,
.gc-dashboard-plan-badge,
.gc-dashboard-info-card,
.gc-dashboard-media-summary {
	min-width: 140px;
	padding: 16px 18px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	backdrop-filter: blur(14px);
}

.gc-stat-row strong,
.gc-dashboard-metrics strong,
.gc-dashboard-chip-grid strong,
.gc-dashboard-media-summary strong,
.gc-quick-fact strong {
	display: block;
	font-size: 1.65rem;
	line-height: 1.1;
}

.gc-stat-row span {
	color: rgba(255, 255, 255, 0.74);
	font-size: var(--gc-text-small);
}

.gc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.gc-hero-search {
	position: relative;
	z-index: 1;
}

.gc-search-form {
	padding: 20px;
	background: rgba(255, 252, 250, 0.9);
}

.gc-search-form-advanced,
.gc-search-shell,
.gc-search-main {
	position: relative;
}

.gc-search-shell {
	display: grid;
	gap: 14px;
}

.gc-search-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(180px, auto);
	gap: 12px;
}

.gc-search-main input,
.gc-search-side select {
	min-height: 52px;
}

.gc-search-action {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.gc-search-action .gc-primary-button {
	min-width: 148px;
}

.gc-home-category-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: inherit;
	text-decoration: none;
	font-size: var(--gc-text-small);
}

.gc-home-category-chip:hover {
	background: rgba(255, 255, 255, 0.16);
}

.gc-section-soft {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.34) 100%);
}

.gc-category-grid,
.gc-results-grid,
.gc-gallery-grid,
.gc-event-grid,
.gc-promotion-grid,
.gc-plan-grid,
.gc-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.gc-promo-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.gc-promo-strip-full,
.gc-event-grid-full {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-category-pill {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px;
	text-decoration: none;
}

.gc-category-pill-rich {
	border-radius: 20px;
	border: 1px solid var(--gc-color-border);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: var(--gc-shadow-xs);
}

.gc-category-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: var(--gc-color-primary-soft);
	color: var(--gc-color-primary);
	font-weight: 700;
}

.gc-category-copy {
	display: grid;
	gap: 4px;
}

.gc-category-copy strong {
	font-size: 1rem;
}

.gc-category-copy small {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-results-shell {
	display: grid;
	gap: 18px;
}

.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.page-numbers li {
	margin: 0;
}

.page-numbers a,
.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.84);
	color: var(--gc-color-text);
	text-decoration: none;
	font-size: var(--gc-text-small);
}

.page-numbers .current {
	background: var(--gc-color-primary);
	color: var(--gc-color-white);
	border-color: transparent;
}

.gc-results-toolbar {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	color: var(--gc-color-text-muted);
}

.gc-results-toolbar strong {
	font-size: 1.3rem;
	color: var(--gc-color-text);
}

.gc-card,
.gc-catalog-card,
.gc-promotion-card,
.gc-promo-list-card,
.gc-event-card {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
}

.gc-card-cover,
.gc-catalog-card-media,
.gc-promotion-card-media,
.gc-promo-list-media,
.gc-event-card-media {
	position: relative;
	display: block;
	min-height: 220px;
	background: linear-gradient(135deg, rgba(140, 28, 38, 0.86), rgba(201, 168, 92, 0.68));
	overflow: hidden;
}

.gc-card-cover img,
.gc-catalog-card-media img,
.gc-promotion-card-media img,
.gc-promo-list-media img,
.gc-event-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-card-featured,
.gc-card-plan-highlight {
	border-color: rgba(201, 168, 92, 0.28);
	box-shadow: var(--gc-shadow-md);
}

.gc-card-plan-ribbon {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 252, 250, 0.92);
	color: #7f6020;
	font-size: var(--gc-text-caption);
	font-weight: 700;
}

.gc-card-body,
.gc-catalog-card-body,
.gc-promotion-card-body,
.gc-promo-list-body,
.gc-event-card-body {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 20px;
}

.gc-card-top,
.gc-promotion-card-top,
.gc-plan-card-top,
.gc-dashboard-request-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.gc-card-logo,
.gc-company-logo,
.gc-preview-logo {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: var(--gc-color-surface-subtle);
	overflow: hidden;
}

.gc-card-logo img,
.gc-company-logo img,
.gc-preview-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.gc-card h3,
.gc-catalog-card h3,
.gc-promotion-card h3,
.gc-promo-list-card h3,
.gc-event-card h3,
.gc-dashboard-company-card h3,
.gc-dashboard-request-card h3,
.gc-plan-card strong,
.gc-company-preview h4,
.gc-company-review-card strong,
.gc-review-card strong {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.gc-card h3 a {
	text-decoration: none;
}

.gc-card p,
.gc-catalog-card p,
.gc-promotion-card p,
.gc-promo-list-card p,
.gc-event-card p,
.gc-company-review-card p,
.gc-review-card p {
	margin: 0;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.65;
}

.gc-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-card-meta span {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--gc-color-surface-subtle);
}

.gc-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	line-height: 1;
}

.gc-star {
	font-size: 14px;
	line-height: 1;
}

.gc-star-full  { color: var(--gc-color-accent); }
.gc-star-half  { color: var(--gc-color-accent); opacity: 0.7; }
.gc-star-empty { color: var(--gc-color-border); }

.gc-rating-value {
	font-size: var(--gc-text-caption);
	color: var(--gc-color-text-muted);
	margin-left: 4px;
	font-weight: 500;
}

.gc-card-actions {
	align-items: center;
	margin-top: auto;
}

.gc-page-shell {
	grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
	align-items: start;
}

.gc-page-sidebar {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 18px;
}

.gc-page-main {
	display: grid;
	gap: 18px;
}

.gc-page-aside-card {
	padding: 20px;
}

.gc-company-hero {
	padding-bottom: 30px;
}

.gc-company-cover {
	min-height: 320px;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(43, 43, 43, 0.82), rgba(140, 28, 38, 0.66)),
		var(--gc-company-cover-image, linear-gradient(180deg, #2b2b2b 0%, #8c1c26 100%));
	background-size: cover;
	background-position: center;
}

.gc-company-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 24px;
	margin-top: -86px;
}

.gc-company-brand,
.gc-company-actions {
	position: relative;
	z-index: 1;
}

.gc-company-brand {
	display: flex;
	align-items: flex-end;
	gap: 18px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	background: rgba(255, 252, 250, 0.88);
	backdrop-filter: blur(18px);
	box-shadow: var(--gc-shadow-lg);
}

.gc-company-brand .gc-eyebrow {
	margin-bottom: 8px;
}

.gc-company-rating-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 14px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-company-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.gc-single-grid {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
	align-items: start;
}

.gc-single-main,
.gc-single-sidebar {
	display: grid;
	gap: 20px;
}

.gc-sticky-card {
	position: sticky;
	top: 96px;
}

.gc-quick-facts,
.gc-review-summary-grid,
.gc-dashboard-hours-grid,
.gc-dashboard-media-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.gc-quick-fact,
.gc-dashboard-info-card,
.gc-dashboard-media-summary {
	background: rgba(255, 255, 255, 0.92);
	border-color: rgba(43, 43, 43, 0.08);
}

.gc-rich-content,
.gc-detail-list,
.gc-link-stack,
.gc-review-list,
.gc-reviews-shell {
	display: grid;
	gap: 14px;
}

.gc-detail-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-detail-list li {
	display: grid;
	gap: 6px;
	padding: 14px 0;
	border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-detail-list li:first-child {
	padding-top: 0;
	border-top: 0;
}

.gc-detail-list strong {
	font-size: var(--gc-text-small);
}

.gc-link-stack a {
	display: inline-flex;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 14px;
	background: var(--gc-color-surface-subtle);
	text-decoration: none;
}

.gc-link-stack a:hover {
	border-color: rgba(140, 28, 38, 0.16);
	background: rgba(140, 28, 38, 0.06);
}

.gc-review-card,
.gc-company-review-card {
	padding: 18px;
}

.gc-review-form-shell {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.72);
}

.gc-review-card-top,
.gc-preview-top,
.gc-promo-list-footer,
.gc-catalog-card-footer,
.gc-preview-actions,
.gc-preview-details,
.gc-final-cta {
	display: flex;
	gap: 14px;
}

.gc-review-stars {
	display: inline-flex;
	gap: 2px;
	color: rgba(43, 43, 43, 0.24);
}

.gc-review-stars .is-active {
	color: var(--gc-color-accent);
}

.gc-review-form,
.comment-form {
	display: grid;
	gap: 14px;
}

.gc-review-form .comment-form-author,
.gc-review-form .comment-form-email,
.gc-review-form .comment-form-rating,
.gc-review-form .comment-form-comment,
.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-rating,
.comment-form .comment-form-comment {
	display: grid;
	gap: 8px;
	margin: 0;
}

.gc-gallery-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-panel-gallery {
	display: grid;
	gap: 16px;
}

.gc-gallery-item,
.gc-dashboard-media-thumb,
.gc-preview-gallery-item {
	overflow: hidden;
	border-radius: 18px;
	background: var(--gc-color-surface-subtle);
	aspect-ratio: 1 / 1;
}

.gc-gallery-item img,
.gc-dashboard-media-thumb img,
.gc-preview-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-floating-whatsapp {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 50;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--gc-color-primary);
	color: var(--gc-color-white);
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(140, 28, 38, 0.22);
}

.gc-catalog-shell {
	display: grid;
	gap: 18px;
	padding: 22px;
}

.gc-catalog-discovery-form,
.gc-catalog-results,
.gc-catalog-item {
	display: grid;
	gap: 14px;
}

.gc-catalog-filters,
.gc-catalog-quote-grid,
.gc-catalog-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.gc-catalog-filter-field,
.gc-catalog-quote-form {
	display: grid;
	gap: 10px;
}

.gc-catalog-grid-shell {
	display: grid;
	gap: 16px;
}

.gc-catalog-card-media {
	min-height: 200px;
}

.gc-catalog-card-badges {
	position: absolute;
	top: 14px;
	left: 14px;
	right: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-catalog-card-footer,
.gc-promo-list-footer,
.gc-preview-actions {
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.gc-catalog-card-price strong {
	font-size: 1.1rem;
}

.gc-catalog-quote-drawer {
	display: grid;
	gap: 16px;
	padding: 20px;
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.16), transparent 35%),
		rgba(255, 255, 255, 0.94);
}

.gc-catalog-quote-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.gc-catalog-quote-header strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1.15rem;
}

.gc-catalog-quote-count,
.gc-quote-count {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--gc-color-primary);
	color: var(--gc-color-white);
	font-weight: 700;
}

.gc-catalog-quote-list,
.gc-dashboard-contact-list,
.gc-dashboard-list,
.gc-catalog-dashboard-list {
	display: grid;
	gap: 12px;
}

.gc-catalog-quote-empty {
	margin: 0;
	color: var(--gc-color-text-muted);
}

.gc-catalog-quote-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.gc-catalog-quote-feedback {
	min-height: 24px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-catalog-quote-hp {
	display: none;
}

.gc-final-cta {
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 24px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 250, 0.84)),
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.18), transparent 36%);
	box-shadow: var(--gc-shadow-sm);
}

.gc-final-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gc-plans-shell {
	padding-top: 40px;
}

.gc-plans-heading {
	max-width: 760px;
}

.gc-plan-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-plan-card {
	display: grid;
	gap: 16px;
	padding: 22px;
}

.gc-plan-card-spotlight,
.gc-plan-card-current {
	border-color: rgba(201, 168, 92, 0.28);
	box-shadow: var(--gc-shadow-md);
}

.gc-plan-card-spotlight {
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.18), transparent 34%),
		rgba(255, 255, 255, 0.92);
}

.gc-plan-card-top strong {
	font-size: 1.65rem;
}

.gc-plan-feature-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-plan-feature-list li {
	position: relative;
	padding-left: 18px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-plan-feature-list li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gc-color-accent);
}

.gc-plan-limits {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-company-preview {
	overflow: hidden;
}

.gc-preview-cover {
	min-height: 190px;
	background:
		linear-gradient(135deg, rgba(43, 43, 43, 0.86), rgba(140, 28, 38, 0.72)),
		var(--gc-preview-cover-image, linear-gradient(180deg, #2b2b2b 0%, #8c1c26 100%));
	background-size: cover;
	background-position: center;
}

.gc-preview-card {
	display: grid;
	gap: 18px;
	padding: 22px;
	margin-top: -56px;
}

.gc-preview-top {
	align-items: end;
}

.gc-preview-headline,
.gc-preview-detail-card,
.gc-preview-description {
	display: grid;
	gap: 8px;
}

.gc-preview-category {
	color: var(--gc-color-primary);
	font-size: var(--gc-text-caption);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.gc-preview-headline p,
.gc-preview-detail-card span,
.gc-preview-description p {
	margin: 0;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.6;
}

.gc-preview-actions button {
	flex: 1 1 0;
}

.gc-preview-details {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-preview-detail-card {
	padding: 14px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 16px;
	background: var(--gc-color-surface-subtle);
}

.gc-preview-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gc-preview-gallery-item {
	min-height: 84px;
}

.gc-preview-gallery-item-placeholder {
	background:
		linear-gradient(135deg, rgba(140, 28, 38, 0.1), rgba(201, 168, 92, 0.18)),
		var(--gc-color-surface-subtle);
}

.gc-company-form-shell,
.gc-company-form,
.gc-catalog-dashboard,
.gc-dashboard-requests-shell {
	display: grid;
	gap: 20px;
}

.gc-dashboard-requests-grid,
.gc-catalog-dashboard-grid {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.gc-catalog-dashboard-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 20px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.84);
}

.gc-catalog-dashboard-head h3 {
	margin: 6px 0 0;
	font-size: 1.4rem;
}

.gc-catalog-dashboard-head p {
	margin: 8px 0 0;
	color: var(--gc-color-text-muted);
}

.gc-dashboard-request-card,
.gc-dashboard-contact-card,
.gc-dashboard-company-card {
	padding: 18px;
}

.gc-dashboard-request-items span,
.gc-dashboard-company-meta span,
.gc-dashboard-request-meta span {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--gc-color-surface-subtle);
	font-size: var(--gc-text-caption);
}

.gc-dashboard-contact-card em {
	color: var(--gc-color-text-soft);
	font-size: var(--gc-text-caption);
	font-style: normal;
}

.gc-site-footer {
	padding: 56px 0 42px;
}

.gc-site-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
	gap: 24px;
	padding-top: 16px;
	border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-site-footer h3 {
	margin: 0 0 14px;
	font-size: 1rem;
}

.gc-site-footer-brand p {
	max-width: 420px;
	margin: 12px 0 0;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.7;
}

.gc-site-footer-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-site-footer-list span {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.6;
}

.gc-site-footer-list a:hover,
.gc-site-footer-socials a:hover {
	color: var(--gc-color-primary);
}

@supports (content-visibility: auto) {
	.gc-card,
	.gc-catalog-card,
	.gc-promotion-card,
	.gc-promo-list-card,
	.gc-event-card,
	.gc-panel-card,
	.gc-dashboard-panel,
	.gc-results-grid,
	.gc-category-grid,
	.gc-catalog-grid {
		content-visibility: auto;
		contain-intrinsic-size: 1px 420px;
	}
}

@media (max-width: 1180px) {
	.gc-site-header-inner {
		grid-template-columns: auto minmax(240px, 1fr) auto;
	}

	.gc-site-nav {
		display: none;
	}

	.gc-mobile-toggle {
		display: inline-flex;
	}

	.gc-hero-shell,
	.gc-dashboard-requests-grid,
	.gc-catalog-dashboard-grid,
	.gc-single-grid,
	.gc-page-shell,
	.gc-company-hero-inner,
	.gc-site-footer-grid {
		grid-template-columns: 1fr;
	}

	.gc-page-sidebar,
	.gc-sticky-card {
		position: static;
	}
}

@media (max-width: 1024px) {
	.gc-category-grid,
	.gc-results-grid,
	.gc-gallery-grid,
	.gc-event-grid,
	.gc-promotion-grid,
	.gc-plan-grid,
	.gc-catalog-grid,
	.gc-promo-strip,
	.gc-promo-strip-full,
	.gc-event-grid-full {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-quick-facts,
	.gc-review-summary-grid,
	.gc-preview-details {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.gc-site-header {
		padding: 12px 0;
	}

	.gc-site-header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.gc-header-search {
		grid-column: 1 / -1;
		order: 10;
	}

	.gc-site-actions .gc-primary-button,
	.gc-site-actions .gc-secondary-button {
		display: none;
	}

	.gc-home-hero {
		padding: 42px 0 18px;
	}

	.gc-section-heading,
	.gc-panel-heading,
	.gc-panel-heading-inline,
	.gc-form-panel-heading,
	.gc-admin-panel-head,
	.gc-catalog-dashboard-head,
	.gc-catalog-quote-header,
	.gc-card-top,
	.gc-promotion-card-top,
	.gc-plan-card-top,
	.gc-dashboard-request-top,
	.gc-preview-actions,
	.gc-final-cta,
	.gc-catalog-card-footer,
	.gc-promo-list-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-search-grid,
	.gc-category-grid,
	.gc-results-grid,
	.gc-gallery-grid,
	.gc-event-grid,
	.gc-promotion-grid,
	.gc-plan-grid,
	.gc-catalog-grid,
	.gc-promo-strip,
	.gc-promo-strip-full,
	.gc-event-grid-full,
	.gc-catalog-filters,
	.gc-catalog-quote-grid {
		grid-template-columns: 1fr;
	}

	.gc-card-cover,
	.gc-catalog-card-media,
	.gc-promotion-card-media,
	.gc-promo-list-media,
	.gc-event-card-media {
		min-height: 200px;
	}

	.gc-company-brand {
		flex-direction: column;
		align-items: flex-start;
	}

	.gc-company-actions,
	.gc-card-actions,
	.gc-final-cta-actions {
		flex-direction: column;
	}

	.gc-company-actions .gc-primary-button,
	.gc-company-actions .gc-secondary-button,
	.gc-card-actions .gc-primary-button,
	.gc-card-actions .gc-secondary-button,
	.gc-final-cta-actions .gc-primary-button,
	.gc-final-cta-actions .gc-secondary-button {
		width: 100%;
	}

	.gc-gallery-grid,
	.gc-preview-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-floating-whatsapp {
		left: 12px;
		right: 12px;
		bottom: 12px;
		justify-content: center;
	}
}

/* Structural mobile-first overrides */
.gc-site-header-inner {
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"brand actions"
		"search search";
	align-items: center;
	row-gap: 14px;
}

.gc-site-brand {
	grid-area: brand;
}

.gc-site-actions {
	flex-direction: row;
	flex-wrap: nowrap;
	grid-area: actions;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.gc-header-search {
	grid-area: search;
}

.gc-site-nav {
	display: none;
}

.gc-mobile-toggle {
	display: inline-flex;
	flex: 0 0 auto;
}

.gc-site-actions .gc-secondary-button {
	display: none;
}

.gc-site-actions .gc-primary-button {
	display: inline-flex;
	flex: 0 1 auto;
	width: auto;
	min-height: 42px;
	padding: 0 14px;
	font-size: 0.8125rem;
}

.gc-site-brand-copy strong {
	font-size: 0.92rem;
}

.gc-site-brand-copy small {
	display: none;
}

.gc-header-search {
	padding: 6px;
}

.gc-header-search-button {
	min-width: 0;
	padding: 0 14px;
}

.gc-mobile-menu {
	width: min(360px, calc(100vw - 16px));
}

.gc-hero-shell,
.gc-page-shell,
.gc-single-grid,
.gc-company-hero-inner,
.gc-dashboard-requests-grid,
.gc-catalog-dashboard-grid,
.gc-site-footer-grid,
.gc-preview-details,
.gc-quick-facts,
.gc-review-summary-grid,
.gc-dashboard-hours-grid,
.gc-dashboard-media-grid {
	grid-template-columns: 1fr;
}

.gc-category-grid,
.gc-results-grid,
.gc-gallery-grid,
.gc-event-grid,
.gc-promotion-grid,
.gc-plan-grid,
.gc-catalog-grid,
.gc-promo-strip,
.gc-promo-strip-full,
.gc-event-grid-full,
.gc-search-grid,
.gc-catalog-filters,
.gc-catalog-quote-grid,
.gc-preview-gallery {
	grid-template-columns: 1fr;
}

.gc-search-grid-advanced,
.gc-search-grid-compact {
	grid-template-columns: 1fr;
}

.gc-page-sidebar,
.gc-sticky-card {
	position: static;
}

.gc-company-brand,
.gc-company-actions,
.gc-card-top,
.gc-promotion-card-top,
.gc-plan-card-top,
.gc-preview-top,
.gc-preview-actions,
.gc-catalog-card-footer,
.gc-promo-list-footer,
.gc-final-cta,
.gc-panel-heading-inline,
.gc-panel-heading {
	flex-direction: column;
	align-items: stretch;
}

.gc-company-actions .gc-primary-button,
.gc-company-actions .gc-secondary-button,
.gc-card-actions .gc-primary-button,
.gc-card-actions .gc-secondary-button,
.gc-final-cta-actions .gc-primary-button,
.gc-final-cta-actions .gc-secondary-button,
.gc-preview-actions .gc-primary-button,
.gc-preview-actions .gc-secondary-button {
	width: 100%;
}

.gc-home-hero {
	padding: 44px 0 20px;
}

.gc-company-cover {
	min-height: 240px;
}

.gc-company-hero-inner {
	margin-top: -64px;
}

.gc-card-cover,
.gc-catalog-card-media,
.gc-promotion-card-media,
.gc-promo-list-media,
.gc-event-card-media {
	min-height: 190px;
}

.gc-search-action {
	flex-direction: column;
	align-items: stretch;
}

.gc-search-grid-advanced .gc-search-action,
.gc-search-grid-compact .gc-search-action {
	grid-column: auto;
}

.gc-search-action .gc-primary-button {
	width: 100%;
	min-width: 0;
}

.gc-search-flag {
	justify-content: center;
}

.gc-results-toolbar {
	display: flex;
	flex-wrap: wrap;
}

.gc-site-footer-grid {
	gap: 20px;
}

@media (max-width: 420px) {
	.gc-site-brand-copy {
		display: none;
	}

	.gc-site-actions .gc-primary-button {
		max-width: 132px;
		padding: 0 12px;
		font-size: 0.75rem;
	}
}

@media (min-width: 768px) {
	.gc-category-grid,
	.gc-results-grid,
	.gc-gallery-grid,
	.gc-event-grid,
	.gc-promotion-grid,
	.gc-plan-grid,
	.gc-catalog-grid,
	.gc-promo-strip,
	.gc-promo-strip-full,
	.gc-event-grid-full {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-search-grid,
	.gc-catalog-filters,
	.gc-catalog-quote-grid,
	.gc-preview-gallery,
	.gc-preview-details,
	.gc-quick-facts,
	.gc-review-summary-grid,
	.gc-dashboard-hours-grid,
	.gc-dashboard-media-grid,
	.gc-dashboard-requests-grid,
	.gc-catalog-dashboard-grid,
	.gc-site-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-search-grid-advanced,
	.gc-search-grid-compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-search-grid-advanced .gc-search-action,
	.gc-search-grid-compact .gc-search-action {
		grid-column: 1 / -1;
	}

	.gc-hero-shell,
	.gc-page-shell {
		grid-template-columns: minmax(0, 1fr);
	}

	.gc-company-brand,
	.gc-company-actions,
	.gc-card-top,
	.gc-promotion-card-top,
	.gc-plan-card-top,
	.gc-preview-top,
	.gc-preview-actions,
	.gc-catalog-card-footer,
	.gc-promo-list-footer,
	.gc-final-cta,
	.gc-panel-heading-inline,
	.gc-panel-heading {
		flex-direction: row;
	}

	.gc-company-brand {
		align-items: flex-end;
	}

	.gc-company-actions,
	.gc-preview-actions,
	.gc-catalog-card-footer,
	.gc-promo-list-footer,
	.gc-final-cta {
		align-items: center;
	}

	.gc-panel-heading,
	.gc-panel-heading-inline,
	.gc-card-top,
	.gc-promotion-card-top,
	.gc-plan-card-top,
	.gc-preview-top {
		align-items: flex-start;
	}
}

@media (min-width: 1024px) {
	.gc-site-header-inner {
		grid-template-columns: auto minmax(280px, 1fr) auto auto;
		grid-template-areas: "brand search nav actions";
		row-gap: 0;
	}

	.gc-site-nav {
		display: flex;
	}

	.gc-mobile-toggle {
		display: none;
	}

	.gc-site-actions .gc-primary-button,
	.gc-site-actions .gc-secondary-button {
		display: inline-flex;
	}

	.gc-site-actions {
		flex-wrap: wrap;
	}

	.gc-site-brand-copy small {
		display: block;
	}

	.gc-hero-shell {
		grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	}

	.gc-page-shell {
		grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
	}

	.gc-single-grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
	}

	.gc-company-hero-inner {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.gc-page-sidebar,
	.gc-sticky-card {
		position: sticky;
	}

	.gc-category-grid,
	.gc-results-grid,
	.gc-gallery-grid,
	.gc-event-grid,
	.gc-promotion-grid,
	.gc-plan-grid,
	.gc-catalog-grid,
	.gc-promo-strip-full,
	.gc-event-grid-full {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-promo-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-search-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
	}

	.gc-search-grid-advanced {
		grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(180px, auto);
	}

	.gc-search-grid-compact {
		grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(180px, 0.8fr)) minmax(160px, auto);
	}

	.gc-search-grid-advanced .gc-search-action,
	.gc-search-grid-compact .gc-search-action {
		grid-column: auto;
	}

	.gc-catalog-filters {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-catalog-quote-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-preview-details,
	.gc-quick-facts,
	.gc-review-summary-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-site-footer-grid {
		grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
	}
}

/* Premium home landing */
.gc-app-shell-home .gc-home-page {
	display: grid;
	gap: 0;
}

.gc-app-shell-home .gc-home-hero {
	padding: 56px 0 32px;
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.14), transparent 24%),
		radial-gradient(circle at top right, rgba(140, 28, 38, 0.08), transparent 28%),
		linear-gradient(180deg, #fcfaf7 0%, #f6f1eb 100%);
	color: var(--gc-color-text);
}

.gc-app-shell-home .gc-home-hero::before {
	inset: auto auto -72px -32px;
	width: 180px;
	height: 180px;
	background: rgba(201, 168, 92, 0.16);
	filter: blur(18px);
}

.gc-app-shell-home .gc-home-hero-stack {
	display: grid;
	gap: 24px;
}

.gc-app-shell-home .gc-home-hero-copy {
	display: grid;
	gap: 18px;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.gc-app-shell-home .gc-home-hero-copy .gc-eyebrow,
.gc-app-shell-home .gc-home-search-card .gc-eyebrow,
.gc-app-shell-home .gc-home-categories-intro .gc-eyebrow,
.gc-app-shell-home .gc-home-final-copy .gc-eyebrow {
	color: var(--gc-color-primary);
}

.gc-app-shell-home .gc-home-hero-copy h1 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	max-width: 14ch;
	margin: 0 auto;
}

.gc-app-shell-home .gc-home-hero-copy p {
	max-width: 640px;
	margin: 0 auto;
	color: var(--gc-color-text-muted);
	font-size: 1.05rem;
}

.gc-app-shell-home .gc-home-hero-stats {
	justify-content: center;
	margin-top: 6px;
}

.gc-app-shell-home .gc-home-hero-stats div {
	min-width: 148px;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(43, 43, 43, 0.08);
	box-shadow: var(--gc-shadow-xs);
	backdrop-filter: none;
}

.gc-app-shell-home .gc-home-hero-stats span {
	color: var(--gc-color-text-muted);
}

.gc-app-shell-home .gc-home-search-stage {
	display: grid;
	gap: 20px;
	align-items: stretch;
}

.gc-app-shell-home .gc-home-search-card,
.gc-app-shell-home .gc-home-hero-aside {
	padding: 24px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--gc-shadow-sm);
	backdrop-filter: blur(16px);
}

.gc-app-shell-home .gc-home-search-card {
	display: grid;
	gap: 18px;
}

.gc-app-shell-home .gc-home-search-card-head {
	display: grid;
	gap: 10px;
	max-width: 720px;
}

.gc-app-shell-home .gc-home-search-card-head h2,
.gc-app-shell-home .gc-home-categories-intro h2,
.gc-app-shell-home .gc-home-final-copy h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.gc-app-shell-home .gc-home-search-card-head p,
.gc-app-shell-home .gc-home-categories-intro p,
.gc-app-shell-home .gc-home-final-copy p {
	margin: 0;
	color: var(--gc-color-text-muted);
}

.gc-app-shell-home .gc-home-search-card .gc-search-form {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-app-shell-home .gc-home-search-card .gc-search-shell {
	gap: 16px;
}

.gc-app-shell-home .gc-home-search-card .gc-search-main input,
.gc-app-shell-home .gc-home-search-card .gc-search-side select {
	min-height: 56px;
	background: rgba(255, 255, 255, 0.96);
}

.gc-app-shell-home .gc-home-search-card .gc-search-main input {
	font-size: 1rem;
}

.gc-app-shell-home .gc-home-search-card .gc-search-suggestions {
	top: calc(100% + 10px);
}

.gc-app-shell-home .gc-home-category-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-app-shell-home .gc-home-category-chip {
	min-height: 38px;
	padding: 0 13px;
	border-color: rgba(43, 43, 43, 0.08);
	background: rgba(246, 241, 235, 0.9);
	color: var(--gc-color-text-muted);
}

.gc-app-shell-home .gc-home-category-chip:hover {
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
}

.gc-app-shell-home .gc-home-hero-aside {
	display: grid;
	gap: 16px;
}

.gc-app-shell-home .gc-home-hero-visual {
	display: grid;
	align-content: end;
	gap: 10px;
	min-height: 240px;
	padding: 22px;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(43, 43, 43, 0.22), rgba(43, 43, 43, 0.72)),
		var(--gc-hero-image, linear-gradient(135deg, #d8c5aa 0%, #8c1c26 100%));
	background-size: cover;
	background-position: center;
	color: var(--gc-color-white);
}

.gc-app-shell-home .gc-home-hero-visual-badge {
	display: inline-flex;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	font-size: var(--gc-text-caption);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-app-shell-home .gc-home-hero-visual h3 {
	margin: 0;
	font-size: 1.45rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.gc-app-shell-home .gc-home-hero-visual p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: var(--gc-text-small);
}

.gc-app-shell-home .gc-home-proof-list {
	display: grid;
	gap: 12px;
}

.gc-app-shell-home .gc-home-proof-card {
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.58);
}

.gc-app-shell-home .gc-home-proof-card strong {
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.gc-app-shell-home .gc-home-proof-card span {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.6;
}

.gc-app-shell-home .gc-home-hero-actions {
	justify-content: center;
	margin-top: 0;
}

.gc-app-shell-home .gc-home-section {
	position: relative;
}

.gc-app-shell-home .gc-home-section-head {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}

.gc-app-shell-home .gc-home-section-head .gc-section-heading {
	margin-bottom: 0;
}

.gc-app-shell-home .gc-home-featured-grid .gc-card {
	background: rgba(255, 255, 255, 0.96);
}

.gc-app-shell-home .gc-home-featured-grid .gc-card-cover {
	min-height: 220px;
}

.gc-app-shell-home .gc-home-featured-grid .gc-card-body {
	gap: 16px;
	padding: 22px;
}

.gc-app-shell-home .gc-home-categories-shell {
	display: grid;
	gap: 24px;
}

.gc-app-shell-home .gc-home-categories-intro {
	display: grid;
	gap: 12px;
	max-width: 560px;
}

.gc-app-shell-home .gc-home-category-grid .gc-category-pill {
	padding: 20px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.88);
}

.gc-app-shell-home .gc-home-category-grid .gc-category-icon {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: rgba(140, 28, 38, 0.08);
}

.gc-app-shell-home .gc-home-promo-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
	justify-content: start;
	align-items: stretch;
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
	gap: 0;
	width: 100%;
	max-width: 380px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 42px rgba(43, 43, 43, 0.05);
	transition:
		transform var(--gc-transition-base),
		box-shadow var(--gc-transition-base),
		border-color var(--gc-transition-base),
		background var(--gc-transition-base);
	justify-self: start;
	overflow: hidden;
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card:hover {
	transform: translateY(-4px);
	border-color: rgba(140, 28, 38, 0.14);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 24px 52px rgba(43, 43, 43, 0.08);
}

.gc-app-shell-home .gc-home-promo-list .gc-home-promo-card-highlight {
	border-color: rgba(201, 168, 92, 0.34);
	box-shadow:
		0 22px 54px rgba(43, 43, 43, 0.08),
		0 0 0 1px rgba(201, 168, 92, 0.12);
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-media {
	position: relative;
	min-height: 224px;
	aspect-ratio: 16 / 11;
	background:
		linear-gradient(180deg, rgba(18, 18, 18, 0.04), rgba(18, 18, 18, 0.42)),
		linear-gradient(135deg, #8c1c26 0%, #c9a85c 100%);
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.02) 20%, rgba(18, 18, 18, 0.48) 100%);
	pointer-events: none;
}

.gc-app-shell-home .gc-home-promo-badge-row {
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.gc-app-shell-home .gc-home-promo-flag,
.gc-app-shell-home .gc-home-promo-price,
.gc-app-shell-home .gc-home-promo-expiry {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.gc-app-shell-home .gc-home-promo-flag {
	background: rgba(255, 252, 250, 0.92);
	color: #7f6020;
}

.gc-app-shell-home .gc-home-promo-price {
	margin-left: auto;
	background: linear-gradient(135deg, rgba(140, 28, 38, 0.96), rgba(116, 23, 32, 0.96));
	color: var(--gc-color-white);
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-body {
	align-content: start;
	gap: 18px;
	padding: 24px;
}

.gc-app-shell-home .gc-home-promo-copy {
	display: grid;
	gap: 12px;
}

.gc-app-shell-home .gc-home-promo-company {
	color: var(--gc-color-text-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card h3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-size: 1.28rem;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--gc-color-text);
}

.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 0.92rem;
	line-height: 1.7;
	color: var(--gc-color-text-muted);
}

.gc-app-shell-home .gc-home-promo-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-app-shell-home .gc-home-promo-expiry {
	background: rgba(201, 168, 92, 0.16);
	color: #8a682f;
}

.gc-app-shell-home .gc-home-promo-footer {
	display: grid;
	margin-top: auto;
}

.gc-app-shell-home .gc-home-promo-cta {
	justify-content: center;
	width: 100%;
	min-height: 48px;
	border-radius: 16px;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(140, 28, 38, 0.16);
	transition:
		transform var(--gc-transition-base),
		box-shadow var(--gc-transition-base),
		filter var(--gc-transition-base);
}

.gc-app-shell-home .gc-home-promo-cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(140, 28, 38, 0.2);
	filter: saturate(1.04);
}

.gc-app-shell-home .gc-home-event-grid .gc-event-card {
	background: rgba(255, 255, 255, 0.94);
}

.gc-app-shell-home .gc-home-event-grid .gc-event-card-body {
	padding: 22px;
}

.gc-app-shell-home .gc-home-final-cta {
	display: grid;
	gap: 20px;
	padding: 28px;
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.14), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 250, 0.92));
}

.gc-app-shell-home .gc-home-final-copy,
.gc-app-shell-home .gc-home-final-side {
	display: grid;
	gap: 16px;
}

.gc-app-shell-home .gc-home-final-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.gc-app-shell-home .gc-home-final-metrics div {
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.66);
}

.gc-app-shell-home .gc-home-final-metrics strong {
	font-size: 1.65rem;
	line-height: 1;
}

.gc-app-shell-home .gc-home-final-metrics span {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

@media (max-width: 767px) {
	.gc-app-shell-home .gc-home-hero {
		padding: 42px 0 20px;
	}

	.gc-app-shell-home .gc-home-hero-copy {
		text-align: left;
		margin: 0;
	}

	.gc-app-shell-home .gc-home-hero-copy h1,
	.gc-app-shell-home .gc-home-hero-copy p {
		margin-left: 0;
		margin-right: 0;
	}

	.gc-app-shell-home .gc-home-hero-stats {
		justify-content: stretch;
	}

	.gc-app-shell-home .gc-home-final-metrics {
		grid-template-columns: 1fr;
	}

	.gc-app-shell-home .gc-home-search-card,
	.gc-app-shell-home .gc-home-hero-aside,
	.gc-app-shell-home .gc-home-final-cta {
		padding: 20px;
	}

	.gc-app-shell-home .gc-home-promo-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card {
		max-width: none;
	}

	.gc-app-shell-home .gc-home-promo-list .gc-promo-list-media {
		min-height: 208px;
	}

	.gc-app-shell-home .gc-home-promo-list .gc-promo-list-body {
		padding: 20px;
		gap: 16px;
	}

	.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card h3 {
		font-size: 1.16rem;
	}
}

@media (min-width: 768px) {
	.gc-app-shell-home .gc-home-section-head {
		flex-direction: row;
		align-items: end;
		justify-content: space-between;
	}

	.gc-app-shell-home .gc-home-promo-list .gc-promo-list-card {
		max-width: 100%;
	}

	.gc-app-shell-home .gc-home-promo-list .gc-promo-list-media {
		min-height: 224px;
	}

	.gc-app-shell-home .gc-home-final-cta {
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
		align-items: center;
	}
}

@media (min-width: 1024px) {
	.gc-app-shell-home .gc-home-hero {
		padding: 72px 0 40px;
	}

	.gc-app-shell-home .gc-home-search-stage,
	.gc-app-shell-home .gc-home-categories-shell {
		grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
	}

	.gc-app-shell-home .gc-home-featured-grid,
	.gc-app-shell-home .gc-home-event-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-app-shell-home .gc-home-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Premium company landing */
.gc-app-shell-company .gc-single-company {
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.1), transparent 24%),
		linear-gradient(180deg, #fcfaf7 0%, #f6f1eb 100%);
}

.gc-app-shell-company .gc-company-hero {
	padding-bottom: 18px;
}

.gc-app-shell-company .gc-company-cover {
	min-height: 280px;
	background:
		linear-gradient(180deg, rgba(28, 22, 20, 0.2), rgba(28, 22, 20, 0.74)),
		var(--gc-company-cover-image, linear-gradient(135deg, #3f332f 0%, #8c1c26 100%));
}

.gc-app-shell-company .gc-company-hero-inner {
	margin-top: -108px;
	gap: 20px;
}

.gc-app-shell-company .gc-company-hero-main {
	display: grid;
	gap: 18px;
}

.gc-app-shell-company .gc-company-brand {
	padding: 24px;
	border-radius: 28px;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 252, 250, 0.9);
}

.gc-app-shell-company .gc-company-logo {
	width: 88px;
	height: 88px;
	border-radius: 24px;
	box-shadow: var(--gc-shadow-sm);
}

.gc-app-shell-company .gc-company-brand-copy {
	display: grid;
	gap: 8px;
}

.gc-app-shell-company .gc-company-brand h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 0.98;
}

.gc-app-shell-company .gc-company-brand-meta {
	margin: 0;
	max-width: 62ch;
	color: var(--gc-color-text-muted);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.6;
}

.gc-app-shell-company .gc-company-action-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-content: start;
}

.gc-app-shell-company .gc-company-action-card {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	align-items: center;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: rgba(255, 252, 250, 0.92);
	text-decoration: none;
	box-shadow: var(--gc-shadow-sm);
	transition:
		transform var(--gc-transition-base),
		box-shadow var(--gc-transition-base),
		border-color var(--gc-transition-base),
		background var(--gc-transition-base);
}

.gc-app-shell-company .gc-company-action-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--gc-shadow-md);
	border-color: rgba(140, 28, 38, 0.16);
	background: rgba(255, 255, 255, 0.98);
}

.gc-app-shell-company .gc-company-action-card-primary {
	background: linear-gradient(135deg, rgba(140, 28, 38, 0.96), rgba(116, 23, 32, 0.96));
	color: var(--gc-color-white);
}

.gc-app-shell-company .gc-company-action-card-secondary {
	background: rgba(255, 248, 244, 0.94);
}

.gc-app-shell-company .gc-company-action-card-tertiary {
	background: rgba(247, 242, 236, 0.88);
	border-style: dashed;
}

.gc-app-shell-company .gc-company-action-icon,
.gc-app-shell-company .gc-company-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
	box-shadow: inset 0 0 0 1px rgba(140, 28, 38, 0.08);
}

.gc-app-shell-company .gc-company-action-card-primary .gc-company-action-icon {
	background: rgba(255, 255, 255, 0.16);
	color: var(--gc-color-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.gc-app-shell-company .gc-company-action-icon svg,
.gc-app-shell-company .gc-company-social-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.gc-app-shell-company .gc-company-action-copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.gc-app-shell-company .gc-company-action-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.gc-app-shell-company .gc-company-action-meta {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.55;
}

.gc-app-shell-company .gc-company-action-card-primary .gc-company-action-meta {
	color: rgba(255, 255, 255, 0.8);
}

.gc-app-shell-company .gc-company-action-arrow {
	color: rgba(43, 43, 43, 0.4);
	font-size: 1rem;
	transition:
		transform var(--gc-transition-base),
		color var(--gc-transition-base);
}

.gc-app-shell-company .gc-company-action-card-primary .gc-company-action-arrow {
	color: rgba(255, 255, 255, 0.82);
}

.gc-app-shell-company .gc-company-action-card:hover .gc-company-action-arrow {
	transform: translateX(3px) translateY(-1px);
	color: var(--gc-color-primary);
}

.gc-app-shell-company .gc-company-action-card-primary:hover .gc-company-action-arrow {
	color: var(--gc-color-white);
}

.gc-app-shell-company .gc-company-body-section {
	padding-top: 28px;
}

.gc-app-shell-company .gc-single-grid {
	gap: 24px;
}

.gc-app-shell-company .gc-single-main,
.gc-app-shell-company .gc-single-sidebar {
	gap: 24px;
}

.gc-app-shell-company .gc-panel-card {
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.94);
}

.gc-app-shell-company .gc-company-overview-card,
.gc-app-shell-company .gc-company-gallery-panel,
.gc-app-shell-company .gc-company-events-panel,
.gc-app-shell-company .gc-company-reviews-panel,
.gc-app-shell-company .gc-catalog-shell,
.gc-app-shell-company .gc-company-sidebar-card {
	padding: 24px;
}

.gc-app-shell-company .gc-company-overview-facts {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-app-shell-company .gc-company-overview-facts .gc-quick-fact {
	padding: 18px;
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.72);
}

.gc-app-shell-company .gc-company-description {
	max-width: 70ch;
	color: var(--gc-color-text);
	font-size: 1rem;
	line-height: 1.9;
}

.gc-app-shell-company .gc-company-description > * {
	max-width: 100%;
}

.gc-app-shell-company .gc-company-gallery-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-app-shell-company .gc-company-gallery-grid .gc-gallery-item {
	min-height: 180px;
}

.gc-app-shell-company .gc-company-gallery-grid .gc-gallery-item:first-child {
	grid-column: span 2;
	min-height: 280px;
}

.gc-app-shell-company .gc-company-gallery-grid .gc-gallery-item img {
	height: 100%;
}

.gc-app-shell-company .gc-catalog-shell {
	grid-template-columns: 1fr;
}

.gc-app-shell-company .gc-catalog-shell > .gc-panel-heading-inline,
.gc-app-shell-company .gc-catalog-shell > .gc-catalog-filters,
.gc-app-shell-company .gc-catalog-shell > .gc-catalog-grid-shell,
.gc-app-shell-company .gc-catalog-shell > .gc-catalog-quote-drawer {
	grid-column: 1 / -1;
}

.gc-app-shell-company .gc-catalog-filters {
	grid-template-columns: 1fr;
	padding: 16px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 22px;
	background: rgba(246, 241, 235, 0.6);
}

.gc-app-shell-company .gc-catalog-grid {
	grid-template-columns: 1fr;
}

.gc-app-shell-company .gc-catalog-card {
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.98);
}

.gc-app-shell-company .gc-catalog-card-media {
	min-height: 210px;
}

.gc-app-shell-company .gc-catalog-card-body {
	padding: 22px;
}

.gc-app-shell-company .gc-catalog-card-footer {
	align-items: end;
}

.gc-app-shell-company .gc-catalog-card-price span {
	display: block;
	margin-top: 6px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-app-shell-company .gc-catalog-add-button {
	min-width: 168px;
}

.gc-app-shell-company .gc-catalog-quote-drawer {
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 24px;
	box-shadow: var(--gc-shadow-xs);
}

.gc-app-shell-company .gc-catalog-quote-list {
	padding: 4px 0;
}

.gc-app-shell-company .gc-review-summary-grid {
	grid-template-columns: 1fr;
}

.gc-app-shell-company .gc-company-review-card-highlight {
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.16), transparent 34%),
		rgba(246, 241, 235, 0.92);
}

.gc-app-shell-company .gc-review-card,
.gc-app-shell-company .gc-company-review-card,
.gc-app-shell-company .gc-review-form-shell {
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
}

.gc-app-shell-company .gc-review-card {
	padding: 20px;
}

.gc-app-shell-company .gc-review-card-top span {
	display: block;
	margin-top: 4px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-app-shell-company .gc-company-sidebar-head {
	display: grid;
	gap: 8px;
	margin-bottom: 18px;
}

.gc-app-shell-company .gc-company-sidebar-head h3 {
	margin: 0;
	font-size: 1.2rem;
	letter-spacing: -0.02em;
}

.gc-app-shell-company .gc-company-sidebar-head p {
	margin: 0;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.7;
}

.gc-app-shell-company .gc-company-details-card .gc-company-detail-list {
	display: grid;
	gap: 12px;
}

.gc-app-shell-company .gc-company-detail-item {
	display: grid;
	gap: 8px;
	padding: 18px 18px 16px;
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.58);
	border: 1px solid rgba(43, 43, 43, 0.06);
}

.gc-app-shell-company .gc-company-detail-item strong {
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(43, 43, 43, 0.56);
}

.gc-app-shell-company .gc-company-detail-item span {
	color: var(--gc-color-text);
	font-size: 0.96rem;
	line-height: 1.7;
}

.gc-app-shell-company .gc-company-detail-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	color: var(--gc-color-primary);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--gc-transition-base);
}

.gc-app-shell-company .gc-company-detail-link:hover {
	color: #67131c;
}

.gc-app-shell-company .gc-company-social-shell {
	display: grid;
	gap: 12px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-app-shell-company .gc-company-social-label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(43, 43, 43, 0.56);
}

.gc-app-shell-company .gc-company-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-app-shell-company .gc-company-social-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	background: rgba(250, 248, 244, 0.92);
	color: var(--gc-color-text);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition:
		transform var(--gc-transition-base),
		border-color var(--gc-transition-base),
		box-shadow var(--gc-transition-base);
}

.gc-app-shell-company .gc-company-social-link:hover {
	transform: translateY(-2px);
	border-color: rgba(140, 28, 38, 0.14);
	box-shadow: var(--gc-shadow-xs);
}

.gc-app-shell-company .gc-company-social-icon {
	width: 36px;
	height: 36px;
	border-radius: 12px;
}

@media (max-width: 767px) {
	.gc-app-shell-company .gc-company-hero-inner {
		margin-top: -72px;
	}

	.gc-app-shell-company .gc-company-brand,
	.gc-app-shell-company .gc-company-overview-card,
	.gc-app-shell-company .gc-company-gallery-panel,
	.gc-app-shell-company .gc-company-events-panel,
	.gc-app-shell-company .gc-company-reviews-panel,
	.gc-app-shell-company .gc-catalog-shell,
	.gc-app-shell-company .gc-company-sidebar-card {
		padding: 20px;
	}

	.gc-app-shell-company .gc-company-overview-facts,
	.gc-app-shell-company .gc-company-gallery-grid {
		grid-template-columns: 1fr;
	}

	.gc-app-shell-company .gc-company-gallery-grid .gc-gallery-item:first-child {
		grid-column: auto;
		min-height: 220px;
	}

	.gc-app-shell-company .gc-company-action-card {
		grid-template-columns: 48px minmax(0, 1fr) auto;
		padding: 16px;
		gap: 12px;
	}

	.gc-app-shell-company .gc-company-action-icon,
	.gc-app-shell-company .gc-company-social-icon {
		width: 48px;
		height: 48px;
		border-radius: 16px;
	}
}

@media (min-width: 768px) {
	.gc-app-shell-company .gc-company-review-summary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-app-shell-company .gc-catalog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.gc-app-shell-company .gc-company-cover {
		min-height: 360px;
	}

	.gc-app-shell-company .gc-company-hero-inner {
		grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
		align-items: end;
	}

	.gc-app-shell-company .gc-single-grid {
		grid-template-columns: minmax(0, 1fr) 360px;
	}

	.gc-app-shell-company .gc-single-sidebar {
		order: 0;
	}

	.gc-app-shell-company .gc-sticky-card,
	.gc-app-shell-company .gc-catalog-quote-drawer {
		position: sticky;
		top: 96px;
	}

	.gc-app-shell-company .gc-company-gallery-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gc-app-shell-company .gc-company-gallery-grid .gc-gallery-item:first-child {
		grid-column: span 2;
		grid-row: span 2;
		min-height: 100%;
	}

	.gc-app-shell-company .gc-catalog-shell {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 340px;
		grid-template-areas:
			"head head"
			"filters filters"
			"results quote";
		align-items: start;
	}

	.gc-app-shell-company .gc-catalog-shell > .gc-panel-heading-inline {
		grid-area: head;
	}

	.gc-app-shell-company .gc-catalog-shell > .gc-catalog-filters {
		grid-area: filters;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-app-shell-company .gc-catalog-shell > .gc-catalog-grid-shell {
		grid-area: results;
	}

	.gc-app-shell-company .gc-catalog-shell > .gc-catalog-quote-drawer {
		grid-area: quote;
	}

	.gc-app-shell-company .gc-company-review-summary-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Discovery-first refresh */

.gc-site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	backdrop-filter: blur(18px);
	background: rgba(246, 241, 235, 0.84);
	border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-site-header-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	min-height: 78px;
}

.gc-site-header-spacer {
	min-height: 1px;
}

.gc-site-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.gc-site-actions .gc-secondary-button,
.gc-site-actions .gc-primary-button {
	min-height: 46px;
	padding: 0 18px;
}

.gc-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: var(--gc-shadow-xs);
}

.gc-mobile-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	border-radius: 999px;
	background: var(--gc-color-text);
}

.gc-mobile-menu {
	width: min(92vw, 380px);
	padding: 24px;
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.12), transparent 38%),
		#fff;
	border-left: 1px solid rgba(43, 43, 43, 0.08);
	box-shadow: -18px 0 48px rgba(43, 43, 43, 0.12);
}

.gc-mobile-menu-head {
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-mobile-menu-search {
	margin-top: 20px;
}

.gc-mobile-menu-search .gc-primary-button {
	width: 100%;
	justify-content: center;
}

.gc-mobile-nav {
	display: grid;
	gap: 8px;
	margin-top: 24px;
}

.gc-mobile-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-radius: 16px;
	color: var(--gc-color-text);
	background: rgba(246, 241, 235, 0.74);
	border: 1px solid rgba(43, 43, 43, 0.05);
}

.gc-mobile-nav a::after {
	content: "+";
	font-size: 1rem;
	color: var(--gc-color-text-muted);
}

.gc-mobile-actions {
	display: grid;
	gap: 10px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(43, 43, 43, 0.08);
}

.gc-search-form {
	position: relative;
}

.gc-search-shell {
	display: grid;
	gap: 14px;
}

.gc-search-command {
	display: grid;
	gap: 12px;
}

.gc-search-main {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 64px;
	padding: 0 16px 0 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 36px rgba(43, 43, 43, 0.06);
}

.gc-search-main-icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-right: 12px;
	border: 2px solid rgba(43, 43, 43, 0.34);
	border-radius: 50%;
	position: relative;
}

.gc-search-main-icon::after {
	content: "";
	position: absolute;
	right: -4px;
	bottom: -5px;
	width: 7px;
	height: 2px;
	border-radius: 999px;
	background: rgba(43, 43, 43, 0.34);
	transform: rotate(45deg);
	transform-origin: center;
}

.gc-search-main input {
	flex: 1 1 auto;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-size: 1rem;
}

.gc-search-main input:focus {
	outline: 0;
	box-shadow: none;
}

.gc-search-inline-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 116px;
	height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 999px;
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
	font-size: 0.95rem;
	font-weight: 600;
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gc-search-inline-submit:hover,
.gc-search-inline-submit:focus-visible {
	background: rgba(140, 28, 38, 0.12);
	color: var(--gc-color-primary);
	transform: translateY(-1px);
}

.gc-search-command-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
}

.gc-search-command-actions .gc-primary-button,
.gc-search-filters-toggle {
	width: 100%;
	justify-content: center;
	min-height: 52px;
}

.gc-search-filters-toggle {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--gc-color-text);
	font-weight: 600;
}

.gc-search-filters-panel[hidden] {
	display: none !important;
}

.gc-search-filters-panel {
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 38px rgba(43, 43, 43, 0.05);
}

.gc-search-grid {
	display: grid;
	gap: 12px;
}

.gc-search-side {
	display: grid;
	gap: 8px;
}

.gc-search-side label {
	margin: 0;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	font-weight: 600;
}

.gc-search-side select {
	min-height: 52px;
}

.gc-search-side-flag {
	align-content: end;
}

.gc-search-flag {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 14px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 16px;
	background: rgba(246, 241, 235, 0.72);
}

.gc-search-filter-actions {
	display: flex;
	justify-content: flex-end;
	padding-top: 12px;
}

.gc-search-suggestions {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	z-index: 30;
	display: grid;
	gap: 6px;
	padding: 10px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 28px 56px rgba(43, 43, 43, 0.12);
}

.gc-search-suggestion {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 12px;
	border-radius: 16px;
	color: inherit;
	transition: background-color 0.18s ease, transform 0.18s ease;
}

.gc-search-suggestion:hover {
	background: rgba(246, 241, 235, 0.82);
	transform: translateY(-1px);
}

.gc-search-suggestion-media {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(246, 241, 235, 0.92);
	overflow: hidden;
	color: var(--gc-color-text-muted);
	font-weight: 700;
}

.gc-search-suggestion-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-search-suggestion-copy {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.gc-search-suggestion-top,
.gc-search-suggestion-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.gc-search-suggestion-title {
	font-weight: 700;
}

.gc-search-suggestion-type,
.gc-search-suggestion-status,
.gc-search-suggestion-cta,
.gc-search-suggestion-detail {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.86);
	color: var(--gc-color-text-muted);
	font-size: 0.72rem;
}

.gc-search-suggestion-meta {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-search-page-head,
.gc-search-page-form-shell {
	margin-bottom: 24px;
}

.gc-search-page-form-shell {
	position: sticky;
	top: 92px;
	z-index: 20;
}

.gc-search-page-head .gc-section-heading {
	max-width: 720px;
}

.gc-results-toolbar-discovery {
	display: grid;
	gap: 10px;
	padding: 20px 22px;
	margin-bottom: 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
}

.gc-results-toolbar-copy {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
}

.gc-results-toolbar-copy strong {
	font-size: 1.5rem;
	line-height: 1;
}

.gc-results-toolbar-caption {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-search-results-list {
	display: grid;
	gap: 16px;
}

.gc-discovery-card {
	display: grid;
	overflow: hidden;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 18px 42px rgba(43, 43, 43, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gc-discovery-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 22px 52px rgba(43, 43, 43, 0.08);
	border-color: rgba(140, 28, 38, 0.12);
}

.gc-discovery-card-media {
	position: relative;
	display: block;
	min-height: 220px;
	background:
		linear-gradient(135deg, rgba(140, 28, 38, 0.12), rgba(201, 168, 92, 0.1)),
		rgba(246, 241, 235, 0.84);
}

.gc-discovery-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-discovery-card-fallback {
	display: block;
	width: 100%;
	height: 100%;
}

.gc-discovery-card-plan {
	position: absolute;
	left: 16px;
	top: 16px;
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--gc-color-text);
	font-size: 0.72rem;
	font-weight: 700;
}

.gc-discovery-card-body {
	display: grid;
	gap: 16px;
	padding: 22px;
}

.gc-discovery-card-heading {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.gc-discovery-card-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 18px;
	background: rgba(246, 241, 235, 0.88);
	overflow: hidden;
	font-size: 1rem;
	font-weight: 700;
	color: var(--gc-color-text);
}

.gc-discovery-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-discovery-card-copy {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.gc-discovery-card-kicker-row,
.gc-discovery-card-meta,
.gc-discovery-card-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.gc-discovery-card-category,
.gc-discovery-card-rating,
.gc-discovery-card-status {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.84);
	color: var(--gc-color-text-muted);
	font-size: 0.76rem;
	font-weight: 600;
}

.gc-discovery-card-copy h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.2;
}

.gc-discovery-card-copy h3 a {
	color: inherit;
}

.gc-discovery-card-meta {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-discovery-card-body p {
	margin: 0;
	color: var(--gc-color-text-muted);
	line-height: 1.75;
}

.gc-discovery-card-footer {
	justify-content: space-between;
}

.gc-app-shell-home .gc-home-hero {
	display: flex;
	align-items: center;
	min-height: min(65vh, 640px);
	max-height: 65vh;
	padding: 18px 0 8px;
	background:
		radial-gradient(circle at top center, rgba(201, 168, 92, 0.1), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(246, 241, 235, 0.68));
}

.gc-app-shell-home .gc-home-hero::before {
	opacity: 0.3;
}

.gc-app-shell-home .gc-home-hero-stack {
	display: grid;
	gap: 14px;
}

.gc-app-shell-home .gc-home-hero-copy {
	display: grid;
	gap: 8px;
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.gc-app-shell-home .gc-home-hero-copy h1 {
	margin: 0;
	font-size: clamp(2rem, 4.8vw, 3.5rem);
	line-height: 1.04;
	letter-spacing: -0.05em;
	font-weight: 700;
}

.gc-app-shell-home .gc-home-hero-copy p {
	margin: 0 auto;
	max-width: 520px;
	color: var(--gc-color-text-muted);
	font-size: clamp(0.92rem, 1.5vw, 1rem);
	line-height: 1.6;
}

.gc-app-shell-home .gc-home-search-stage {
	display: block;
}

.gc-app-shell-home .gc-home-search-card {
	display: grid;
	gap: 12px;
	max-width: 920px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-app-shell-home .gc-search-form-hero .gc-search-command {
	display: block;
}

.gc-app-shell-home .gc-search-form-hero .gc-search-main {
	min-height: 58px;
	padding: 0 8px 0 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(43, 43, 43, 0.06);
}

.gc-app-shell-home .gc-search-form-hero .gc-search-main input {
	font-size: 1rem;
	padding-right: 12px;
}

.gc-home-category-chip-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.gc-home-category-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--gc-color-text);
	border: 1px solid rgba(43, 43, 43, 0.06);
	font-size: 0.84rem;
}

.gc-home-live-search-shell {
	min-height: 28px;
}

.gc-home-search-prompt {
	display: flex;
	justify-content: center;
	padding: 2px 0 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.gc-home-search-prompt span {
	color: var(--gc-color-text-muted);
	font-size: 0.82rem;
	line-height: 1.5;
	text-align: center;
}

.gc-app-shell-home .gc-home-section {
	padding-top: 24px;
}

.gc-home-featured-grid {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gc-home-promo-list,
.gc-home-event-grid {
	gap: 18px;
}

@media (min-width: 768px) {
	.gc-search-command-actions {
		grid-template-columns: auto auto;
		justify-content: end;
	}

	.gc-search-command-actions .gc-primary-button,
	.gc-search-filters-toggle {
		width: auto;
		min-width: 148px;
	}

	.gc-search-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-home-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-app-shell-home .gc-home-hero {
		padding: 12px 0 0;
	}
}

@media (min-width: 1024px) {
	.gc-site-header-inner {
		gap: 24px;
	}

	.gc-mobile-toggle {
		display: inline-flex;
	}

	.gc-search-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-search-filters-panel {
		padding: 20px;
	}

	.gc-search-form-results .gc-search-filters-panel,
	.gc-search-form-advanced .gc-search-filters-panel {
		display: block !important;
	}

	.gc-search-form-results .gc-search-filters-toggle,
	.gc-search-form-advanced .gc-search-filters-toggle {
		display: none;
	}

	.gc-search-form-results .gc-search-command {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.gc-search-form-results .gc-search-main {
		min-height: 72px;
	}

	.gc-search-form-results .gc-search-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}

	.gc-discovery-card-list {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.gc-discovery-card-list .gc-discovery-card-media {
		min-height: 100%;
	}

	.gc-discovery-card-list .gc-discovery-card-body {
		padding: 24px;
	}

	.gc-discovery-card-list .gc-discovery-card-footer {
		margin-top: auto;
	}

	.gc-home-featured-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gc-site-actions .gc-secondary-button {
		display: none;
	}

	.gc-site-actions .gc-primary-button {
		padding-inline: 14px;
		font-size: 0.88rem;
	}

	.gc-app-shell-home .gc-home-hero {
		min-height: auto;
		max-height: none;
		padding: 8px 0 0;
	}

	.gc-app-shell-home .gc-home-hero-copy {
		max-width: 100%;
	}

	.gc-app-shell-home .gc-home-hero-copy h1 {
		font-size: 2rem;
	}

	.gc-app-shell-home .gc-home-search-card {
		gap: 10px;
	}

	.gc-app-shell-home .gc-search-form-hero .gc-search-main {
		min-height: 58px;
		padding: 0 6px 0 16px;
	}

	.gc-search-inline-submit {
		min-width: 96px;
		height: 40px;
		padding-inline: 14px;
		font-size: 0.88rem;
	}

	.gc-discovery-card {
		border-radius: 24px;
	}

	.gc-discovery-card-media {
		min-height: 190px;
	}
}

/* Premium SaaS refactor */

.gc-app-shell,
.gc-public-page,
.gc-results-page {
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.09), transparent 24%),
		radial-gradient(circle at top right, rgba(140, 28, 38, 0.08), transparent 28%),
		linear-gradient(180deg, #fcf9f6 0%, #f6f1eb 48%, #f3ede6 100%);
}

.gc-site-header {
	padding: 14px 0;
	background: rgba(246, 241, 235, 0.58);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(43, 43, 43, 0.04);
	transition:
		background-color 0.24s ease,
		border-color 0.24s ease,
		box-shadow 0.24s ease,
		padding 0.24s ease;
}

.gc-site-header.is-scrolled {
	padding: 10px 0;
	background: rgba(246, 241, 235, 0.84);
	border-bottom-color: rgba(43, 43, 43, 0.08);
	box-shadow: 0 12px 28px rgba(43, 43, 43, 0.05);
}

.gc-site-header-inner {
	grid-template-columns: auto minmax(0, auto) minmax(0, 1fr) auto;
	gap: 18px;
	min-height: 72px;
}

.gc-site-brand-logo,
.gc-site-brand-mark {
	width: 50px;
	height: 50px;
	border-radius: 18px;
}

.gc-site-brand-copy strong {
	font-size: 0.95rem;
}

.gc-site-brand-copy small {
	font-size: 0.72rem;
	letter-spacing: 0.02em;
}

.gc-site-nav-premium {
	display: none;
	align-items: center;
	gap: 6px;
	padding: 6px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.54);
	backdrop-filter: blur(10px);
}

.gc-site-nav-premium a {
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--gc-color-text-muted);
	font-size: 0.84rem;
	font-weight: 600;
}

.gc-site-nav-premium a:hover,
.gc-site-nav-premium a.is-active {
	color: var(--gc-color-text);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 20px rgba(43, 43, 43, 0.05);
}

.gc-site-header-spacer {
	display: none;
	align-items: center;
	justify-content: flex-end;
}

.gc-header-discovery-link {
	display: inline-grid;
	gap: 2px;
	min-width: min(100%, 300px);
	padding: 12px 16px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 28px rgba(43, 43, 43, 0.04);
	text-decoration: none;
}

.gc-header-discovery-link span {
	color: var(--gc-color-text-soft);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.gc-header-discovery-link strong {
	font-size: 0.88rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.gc-site-actions {
	gap: 10px;
}

.gc-site-actions .gc-secondary-button,
.gc-site-actions .gc-primary-button {
	min-height: 44px;
	padding-inline: 16px;
	border-radius: 999px;
}

.gc-primary-button {
	background: linear-gradient(135deg, #8c1c26 0%, #7a1922 100%);
	color: #f6f1eb;
}

.gc-whatsapp-button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.gc-ext-icon {
	flex-shrink: 0;
	opacity: 0.75;
}

.gc-primary-button:visited,
.gc-primary-button:hover,
.gc-primary-button:focus-visible,
.gc-primary-button:active,
.gc-primary-button span,
.gc-primary-button strong {
	color: #f6f1eb;
}

.gc-secondary-button,
.gc-link-button {
	color: var(--gc-color-text);
}

.gc-mobile-menu {
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.12), transparent 32%),
		radial-gradient(circle at bottom left, rgba(140, 28, 38, 0.08), transparent 40%),
		rgba(251, 248, 244, 0.96);
}

.gc-mobile-bottom-nav {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 14px;
	z-index: 95;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	padding: 10px;
	border: 1px solid rgba(43, 43, 43, 0.06);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 40px rgba(43, 43, 43, 0.12);
	backdrop-filter: blur(16px);
}

.gc-mobile-toggle {
	display: inline-flex;
}

.gc-mobile-bottom-nav a {
	display: grid;
	gap: 6px;
	justify-items: center;
	padding: 8px 6px;
	border-radius: 16px;
	text-decoration: none;
	color: var(--gc-color-text-soft);
	font-size: 0.68rem;
	font-weight: 600;
}

.gc-mobile-bottom-nav a.is-active {
	color: var(--gc-color-primary);
	background: rgba(140, 28, 38, 0.08);
}

.gc-mobile-bottom-nav-icon {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 12px;
	background: rgba(246, 241, 235, 0.94);
	color: var(--gc-color-text);
	font-size: 0.72rem;
	font-weight: 800;
}

.gc-mobile-bottom-nav a.is-active .gc-mobile-bottom-nav-icon {
	background: rgba(140, 28, 38, 0.14);
	color: var(--gc-color-primary);
}

.gc-home-premium .gc-home-hero-premium {
	position: relative;
	min-height: min(84vh, 820px);
	padding: 44px 0 28px;
	background:
		radial-gradient(circle at top center, rgba(201, 168, 92, 0.14), transparent 24%),
		radial-gradient(circle at bottom left, rgba(140, 28, 38, 0.1), transparent 28%),
		linear-gradient(180deg, rgba(255, 252, 249, 0.84), rgba(246, 241, 235, 0.74)),
		var(--gc-hero-image);
	background-size: cover;
	background-position: center;
}

.gc-home-premium .gc-home-hero-premium::after {
	content: "";
	position: absolute;
	inset: auto auto 10% 50%;
	width: min(72vw, 840px);
	height: 320px;
	transform: translateX(-50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.18) 58%, transparent 74%);
	filter: blur(32px);
	pointer-events: none;
}

.gc-home-hero-premium-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 26px;
	align-items: center;
}

.gc-home-premium .gc-home-hero-copy {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.gc-home-premium .gc-home-hero-copy h1 {
	font-size: clamp(2.9rem, 7vw, 5.6rem);
	line-height: 0.94;
	letter-spacing: -0.07em;
	font-weight: 700;
	text-wrap: balance;
}

.gc-home-premium .gc-home-hero-copy p {
	max-width: 620px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(43, 43, 43, 0.72);
}

.gc-home-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 760px;
	margin: 22px auto 0;
}

.gc-home-hero-metrics div {
	padding: 18px 18px 16px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.62);
	backdrop-filter: blur(14px);
}

.gc-home-hero-metrics strong {
	display: block;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: -0.04em;
}

.gc-home-hero-metrics span {
	display: block;
	margin-top: 6px;
	color: var(--gc-color-text-muted);
	font-size: 0.8rem;
}

.gc-home-search-stage {
	max-width: 1024px;
	margin: 0 auto;
}

.gc-home-search-card {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 32px 80px rgba(43, 43, 43, 0.08);
	backdrop-filter: blur(20px);
}

.gc-home-search-card-head {
	display: grid;
	gap: 4px;
	text-align: center;
}

.gc-home-search-kicker {
	color: var(--gc-color-primary);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gc-home-search-card-head strong {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--gc-color-text-muted);
}

.gc-search-form-hero .gc-search-main {
	min-height: 74px;
	padding: 10px 12px 10px 20px;
	border: 1px solid rgba(43, 43, 43, 0.06);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 48px rgba(43, 43, 43, 0.08);
	backdrop-filter: blur(14px);
	transition:
		transform 0.24s ease,
		box-shadow 0.24s ease,
		border-color 0.24s ease,
		background-color 0.24s ease;
}

.gc-search-form-hero .gc-search-main:focus-within,
.gc-search-main:hover {
	transform: translateY(-1px);
	box-shadow: 0 24px 56px rgba(43, 43, 43, 0.1);
	border-color: rgba(140, 28, 38, 0.12);
}

.gc-search-main-copy {
	display: grid;
	flex: 1 1 auto;
	gap: 4px;
}

.gc-search-main-label {
	color: var(--gc-color-text-soft);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gc-search-main input {
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	letter-spacing: -0.02em;
}

.gc-search-inline-submit {
	min-width: 128px;
	height: 50px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(140, 28, 38, 0.96), rgba(122, 25, 34, 0.96));
	color: #f6f1eb;
	box-shadow: 0 12px 24px rgba(140, 28, 38, 0.16);
}

.gc-search-inline-submit:hover,
.gc-search-inline-submit:focus-visible {
	background: linear-gradient(135deg, rgba(140, 28, 38, 1), rgba(122, 25, 34, 1));
	color: #f6f1eb;
}

.gc-home-category-chip-row {
	justify-content: center;
	gap: 10px;
}

.gc-home-category-chip {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.86);
	font-size: 0.82rem;
	font-weight: 600;
}

.gc-home-live-search-shell {
	min-height: 52px;
}

.gc-home-search-prompt {
	padding-top: 4px;
}

.gc-home-search-prompt span {
	max-width: 760px;
	color: var(--gc-color-text-soft);
	font-size: 0.8rem;
}

.gc-home-discovery-rail {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.gc-home-discovery-link {
	display: grid;
	gap: 6px;
	padding: 18px 16px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: 0 14px 34px rgba(43, 43, 43, 0.04);
	backdrop-filter: blur(14px);
	text-decoration: none;
}

.gc-home-discovery-link strong {
	font-size: 0.88rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.gc-home-discovery-link span {
	color: var(--gc-color-text-muted);
	font-size: 0.76rem;
	line-height: 1.5;
}

.gc-home-section {
	padding-top: 48px;
}

.gc-home-surface-section {
	padding-top: 32px;
}

.gc-home-section-head {
	margin-bottom: 22px;
}

.gc-home-section-head-compact {
	margin-bottom: 18px;
}

.gc-home-category-grid-premium,
.gc-home-search-topic-grid,
.gc-home-city-tags {
	display: grid;
	gap: 14px;
}

.gc-home-category-grid-premium {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gc-home-category-card {
	display: grid;
	gap: 10px;
	padding: 24px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 40px rgba(43, 43, 43, 0.05);
	text-decoration: none;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.gc-home-category-card:hover,
.gc-home-search-topic:hover,
.gc-home-city-tag:hover,
.gc-home-city-spotlight:hover,
.gc-home-discovery-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(43, 43, 43, 0.08);
	border-color: rgba(140, 28, 38, 0.12);
}

.gc-home-category-card-mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 15px;
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
	font-weight: 800;
}

.gc-home-category-card strong,
.gc-home-search-topic strong,
.gc-home-city-tag strong,
.gc-home-city-spotlight strong {
	font-size: 1rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.gc-home-category-card small,
.gc-home-search-topic span,
.gc-home-city-tag span,
.gc-home-city-spotlight span,
.gc-home-city-spotlight small {
	color: var(--gc-color-text-muted);
	font-size: 0.8rem;
	line-height: 1.55;
}

.gc-home-premium-grid-cards,
.gc-home-discoveries-grid,
.gc-home-catalog-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-home-search-topic-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gc-home-search-topic {
	display: grid;
	gap: 8px;
	padding: 18px 18px 16px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.76);
	text-decoration: none;
}

.gc-home-search-topic span {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gc-home-discovery-grid,
.gc-home-city-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	gap: 24px;
}

.gc-home-discovery-column,
.gc-home-city-panel {
	padding: 24px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 20px 50px rgba(43, 43, 43, 0.05);
}

.gc-home-city-tags,
.gc-home-city-spotlight-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.gc-home-city-tag,
.gc-home-city-spotlight {
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.82);
	text-decoration: none;
}

.gc-home-final-cta {
	padding: 34px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 34px;
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.14), transparent 28%),
		rgba(255, 255, 255, 0.9);
	box-shadow: 0 24px 56px rgba(43, 43, 43, 0.06);
}

.gc-home-final-copy,
.gc-home-final-side {
	display: grid;
	gap: 16px;
}

.gc-home-final-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gc-home-final-metrics div {
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.72);
}

.gc-home-final-metrics strong {
	display: block;
	font-size: 1.45rem;
	line-height: 1;
}

.gc-final-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-search-suggestions {
	top: calc(100% + 14px);
	padding: 10px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 30px 60px rgba(43, 43, 43, 0.12);
}

.gc-search-suggestion {
	border: 1px solid transparent;
}

.gc-search-suggestion:hover,
.gc-search-suggestion.is-active {
	background: rgba(246, 241, 235, 0.88);
	border-color: rgba(140, 28, 38, 0.08);
	transform: translateY(-1px);
}

.gc-results-toolbar-discovery {
	padding: 24px 26px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 46px rgba(43, 43, 43, 0.05);
}

.gc-search-results-list {
	gap: 18px;
}

.gc-discovery-card {
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 42px rgba(43, 43, 43, 0.05);
}

.gc-discovery-card-media {
	min-height: 240px;
}

.gc-discovery-card-body {
	gap: 18px;
	padding: 24px;
}

.gc-discovery-card-copy h3 {
	font-size: 1.18rem;
	line-height: 1.14;
}

.gc-discovery-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-discovery-card-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.92);
	color: var(--gc-color-text-muted);
	font-size: 0.72rem;
	font-weight: 700;
}

.gc-discovery-card-badge-featured,
.gc-discovery-card-badge-spotlight {
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
}

.gc-discovery-card-badge-premium {
	background: rgba(201, 168, 92, 0.2);
	color: #8b6930;
}

.gc-discovery-card-badge-verified {
	background: rgba(31, 122, 74, 0.12);
	color: var(--gc-color-success);
}

.gc-discovery-card-status-open {
	background: rgba(31, 122, 74, 0.12);
	color: var(--gc-color-success);
}

.gc-discovery-card-status-scheduled,
.gc-discovery-card-status-contact {
	background: rgba(201, 168, 92, 0.18);
	color: #8b6930;
}

.gc-discovery-card-status-muted {
	background: rgba(246, 241, 235, 0.84);
	color: var(--gc-color-text-muted);
}

.gc-discovery-card-footer {
	justify-content: flex-start;
}

.gc-discovery-card-footer .gc-link-button,
.gc-discovery-card-footer .gc-primary-button {
	min-height: 42px;
	padding-inline: 14px;
	border-radius: 14px;
}

.gc-promo-list-card,
.gc-event-card,
.gc-catalog-card {
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 42px rgba(43, 43, 43, 0.05);
}

.gc-promo-list-body,
.gc-event-card-body,
.gc-catalog-card-body {
	padding: 22px;
}

.gc-site-footer {
	padding-bottom: 96px;
}

@media (min-width: 1024px) {
	.gc-site-nav-premium,
	.gc-site-header-spacer {
		display: flex;
	}
}

@media (min-width: 1200px) {
	.gc-home-hero-premium-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 1099px) {
	.gc-home-discovery-rail,
	.gc-home-category-grid-premium,
	.gc-home-premium-grid-cards,
	.gc-home-discoveries-grid,
	.gc-home-catalog-grid,
	.gc-home-search-topic-grid,
	.gc-home-discovery-grid,
	.gc-home-city-grid,
	.gc-home-city-tags,
	.gc-home-city-spotlight-list,
	.gc-home-final-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gc-site-header {
		padding: 10px 0;
	}

	.gc-site-header-inner {
		grid-template-columns: auto 1fr auto;
		min-height: 64px;
	}

	.gc-site-actions .gc-primary-button {
		display: none;
	}

	.gc-mobile-toggle {
		display: inline-flex;
	}

	.gc-home-premium .gc-home-hero-premium {
		min-height: auto;
		padding: 20px 0 16px;
	}

	.gc-home-premium .gc-home-hero-copy h1 {
		font-size: 2.35rem;
	}

	.gc-home-hero-metrics,
	.gc-home-discovery-rail,
	.gc-home-category-grid-premium,
	.gc-home-premium-grid-cards,
	.gc-home-search-topic-grid,
	.gc-home-discovery-grid,
	.gc-home-discoveries-grid,
	.gc-home-catalog-grid,
	.gc-home-city-grid,
	.gc-home-city-tags,
	.gc-home-city-spotlight-list,
	.gc-home-final-metrics {
		grid-template-columns: 1fr;
	}

	.gc-home-search-card,
	.gc-home-discovery-column,
	.gc-home-city-panel,
	.gc-home-final-cta {
		padding: 20px;
		border-radius: 24px;
	}

	.gc-search-form-hero .gc-search-main {
		min-height: 64px;
		padding: 10px 10px 10px 16px;
		border-radius: 24px;
	}

	.gc-search-inline-submit {
		min-width: 104px;
		height: 44px;
		border-radius: 14px;
	}

	.gc-discovery-card,
	.gc-promo-list-card,
	.gc-event-card,
	.gc-catalog-card {
		border-radius: 24px;
	}

	.gc-discovery-card-media {
		min-height: 210px;
	}
}

@media (min-width: 768px) {
	.gc-mobile-toggle {
		display: none;
	}

	.gc-mobile-bottom-nav {
		display: none;
	}

	.gc-site-footer {
		padding-bottom: 0;
	}
}

/* Final premium home refinement */

.gc-site-header-inner {
	grid-template-columns: auto 1fr auto;
	gap: 14px;
}

.gc-site-header-spacer {
	display: block;
}

.gc-mobile-toggle {
	display: inline-flex;
	border: 0;
	background: rgba(255, 255, 255, 0.66);
	box-shadow: 0 8px 20px rgba(43, 43, 43, 0.05);
}

.gc-mobile-toggle:hover {
	background: rgba(255, 255, 255, 0.88);
}

.gc-home-premium .gc-home-hero-premium {
	min-height: min(60vh, 620px);
	max-height: 60vh;
	padding: 18px 0 10px;
}

.gc-home-hero-premium-grid {
	gap: 14px;
}

.gc-home-premium .gc-home-hero-copy {
	max-width: 620px;
}

.gc-home-premium .gc-home-hero-copy h1 {
	font-size: min(64px, 5vw);
	line-height: 0.98;
	letter-spacing: -0.06em;
	max-width: 10ch;
	margin-inline: auto;
}

.gc-home-premium .gc-home-hero-copy p {
	max-width: 420px;
	font-size: 0.94rem;
	line-height: 1.6;
	margin-top: 2px;
}

.gc-home-hero-metrics,
.gc-home-discovery-rail,
.gc-search-main-label {
	display: none !important;
}

.gc-home-search-stage {
	max-width: 860px;
}

.gc-home-search-card,
.gc-home-search-card-minimal {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.gc-search-form-hero .gc-search-shell {
	gap: 10px;
}

.gc-search-form-hero .gc-search-command {
	display: block;
}

.gc-search-form-hero .gc-search-main {
	min-height: 60px;
	padding: 8px 8px 8px 18px;
	border: 1px solid rgba(43, 43, 43, 0.05);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 10px 30px rgba(43, 43, 43, 0.05);
}

.gc-search-main-copy {
	display: flex;
	align-items: center;
}

.gc-search-main input {
	font-size: 0.98rem;
}

.gc-search-inline-submit {
	min-width: 108px;
	height: 44px;
	padding-inline: 16px;
	border-radius: 999px;
	background: rgba(43, 43, 43, 0.06);
	color: var(--gc-color-text);
	box-shadow: none;
}

.gc-search-inline-submit:hover,
.gc-search-inline-submit:focus-visible {
	background: rgba(43, 43, 43, 0.1);
	color: var(--gc-color-text);
}

.gc-home-category-chip-row {
	gap: 8px;
}

.gc-home-category-chip {
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.78rem;
}

.gc-home-live-search-shell {
	min-height: 24px;
}

.gc-home-search-prompt span {
	font-size: 0.74rem;
}

.gc-home-section {
	padding-top: 30px;
}

.gc-home-surface-section {
	padding-top: 18px;
}

.gc-home-section-head {
	margin-bottom: 16px;
}

.gc-home-section .gc-section-heading h2 {
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	line-height: 1.08;
}

.gc-home-section .gc-section-heading p {
	display: none;
}

.gc-home-category-grid-premium,
.gc-home-premium-grid-cards,
.gc-home-discoveries-grid,
.gc-home-catalog-grid {
	gap: 16px;
}

.gc-home-category-card,
.gc-discovery-card,
.gc-promo-list-card,
.gc-event-card,
.gc-catalog-card,
.gc-home-discovery-column,
.gc-home-final-cta {
	box-shadow: 0 14px 34px rgba(43, 43, 43, 0.045);
}

.gc-home-category-card {
	padding: 20px;
	border-radius: 24px;
}

.gc-discovery-card {
	border-radius: 24px;
}

.gc-discovery-card-media {
	min-height: 200px;
}

.gc-discovery-card-body,
.gc-promo-list-body,
.gc-event-card-body,
.gc-catalog-card-body {
	padding: 18px;
}

.gc-discovery-card-copy h3 {
	font-size: 1.04rem;
}

.gc-home-discovery-grid-simple {
	grid-template-columns: 1fr;
	gap: 18px;
}

.gc-home-final-cta-minimal {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	padding: 24px 26px;
}

.gc-home-final-cta-minimal .gc-home-final-copy h2 {
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	line-height: 1.08;
}

.gc-home-final-cta-minimal .gc-home-final-copy p {
	margin-top: 6px;
}

.gc-final-cta-actions {
	justify-content: flex-end;
}

.gc-search-suggestions {
	animation: gc-rise-in 0.16s ease both;
}

.gc-search-suggestions {
	max-height: min(420px, 62vh);
	overflow-y: auto;
	overflow-x: hidden;
	padding: 8px;
	border: 1px solid rgba(43, 43, 43, 0.06);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 22px 56px rgba(43, 43, 43, 0.1);
	backdrop-filter: blur(16px);
	scrollbar-width: thin;
	scrollbar-color: rgba(140, 28, 38, 0.18) transparent;
}

.gc-search-suggestion {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 72px;
	padding: 11px 13px;
	border: 1px solid transparent;
	border-radius: 18px;
	overflow: hidden;
}

.gc-search-suggestion-media {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 14px;
	overflow: hidden;
	background: rgba(246, 241, 235, 0.92);
	box-shadow: inset 0 0 0 1px rgba(43, 43, 43, 0.04);
}

.gc-search-suggestion-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-search-suggestion-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	min-width: 0;
	overflow: hidden;
}

.gc-search-suggestion-title {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #111827;
}

.gc-search-suggestion-secondary {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgba(100, 116, 139, 0.96);
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.2;
}

.gc-search-suggestion:hover,
.gc-search-suggestion.is-active {
	background: rgba(248, 244, 239, 0.88);
	border-color: rgba(140, 28, 38, 0.08);
	transform: translateY(-1px);
}

/* Keep the Home autocomplete floating above the hero and following sections. */
.gc-home-premium .gc-home-hero-premium,
.gc-home-premium .gc-home-hero-premium .gc-container,
.gc-home-hero-premium-grid,
.gc-home-search-stage,
.gc-home-search-card,
.gc-home-search-card-minimal,
.gc-search-form-hero,
.gc-search-form-hero .gc-search-shell,
.gc-search-form-hero .gc-search-command,
.gc-search-form-hero .gc-search-main {
	overflow: visible;
}

.gc-home-search-stage,
.gc-home-search-card,
.gc-search-form-hero .gc-search-main {
	position: relative;
}

.gc-home-search-stage {
	z-index: 120;
}

.gc-search-form-hero .gc-search-main {
	z-index: 140;
}

.gc-app-shell-home .gc-home-search-card .gc-search-suggestions,
.gc-home-search-card .gc-search-suggestions {
	z-index: 220;
}

@media (min-width: 768px) {
	.gc-mobile-toggle {
		display: inline-flex;
	}
}

@media (max-width: 1024px) {
	.gc-home-premium .gc-home-hero-premium {
		min-height: min(56vh, 520px);
		max-height: 56vh;
	}

	.gc-home-premium .gc-home-hero-copy h1 {
		font-size: min(48px, 7vw);
		max-width: 11ch;
	}
}

@media (max-width: 767px) {
	.gc-site-actions .gc-primary-button {
		display: inline-flex;
		min-height: 40px;
		padding-inline: 14px;
		font-size: 0.82rem;
	}

	.gc-home-premium .gc-home-hero-premium {
		min-height: auto;
		max-height: none;
		padding: 10px 0 6px;
	}

	.gc-home-premium .gc-home-hero-copy {
		max-width: 100%;
	}

	.gc-home-premium .gc-home-hero-copy h1 {
		font-size: min(34px, 9vw);
		max-width: 10ch;
	}

	.gc-home-premium .gc-home-hero-copy p {
		max-width: 320px;
		font-size: 0.88rem;
	}

	.gc-search-form-hero .gc-search-main {
		min-height: 58px;
		padding: 7px 7px 7px 16px;
	}

	.gc-search-inline-submit {
		min-width: 94px;
		height: 40px;
		padding-inline: 14px;
	}

	.gc-home-category-grid-premium,
	.gc-home-premium-grid-cards,
	.gc-home-discoveries-grid,
	.gc-home-catalog-grid {
		grid-template-columns: 1fr;
	}

	.gc-home-final-cta-minimal {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.gc-final-cta-actions {
		justify-content: stretch;
	}

	.gc-search-suggestion {
		grid-template-columns: 44px minmax(0, 1fr);
		height: 64px;
		padding: 10px;
	}

	.gc-search-suggestion-media {
		width: 44px;
		height: 44px;
		min-width: 44px;
		border-radius: 12px;
	}

	.gc-search-suggestion-title {
		font-size: 0.88rem;
	}

	.gc-search-suggestion-secondary {
		font-size: 0.73rem;
	}
}

/* Premium SaaS search surface for the Home hero. */
.gc-home-search-stage {
	max-width: 960px;
}

.gc-home-search-card,
.gc-home-search-card-minimal {
	gap: 12px;
}

.gc-search-form-hero {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gc-search-form-hero .gc-search-shell {
	gap: 12px;
}

.gc-search-form-hero .gc-search-command {
	display: block;
}

.gc-search-form-hero .gc-search-main {
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: 10px 12px 10px 20px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.985);
	box-shadow:
		0 20px 55px rgba(15, 23, 42, 0.07),
		0 2px 10px rgba(15, 23, 42, 0.03);
	backdrop-filter: none;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease,
		background-color 0.22s ease;
}

.gc-search-form-hero .gc-search-main:hover {
	transform: translateY(-1px);
	box-shadow:
		0 24px 64px rgba(15, 23, 42, 0.09),
		0 4px 16px rgba(15, 23, 42, 0.04);
	border-color: rgba(140, 28, 38, 0.08);
}

.gc-search-form-hero .gc-search-main:focus-within {
	transform: translateY(-1px);
	border-color: rgba(140, 28, 38, 0.16);
	box-shadow:
		0 24px 64px rgba(15, 23, 42, 0.1),
		0 0 0 6px rgba(140, 28, 38, 0.05);
	background: #fff;
}

.gc-search-form-hero .gc-search-main-icon {
	width: 19px;
	height: 19px;
	margin-right: 14px;
	border-width: 2px;
	border-color: rgba(15, 23, 42, 0.42);
	opacity: 0.88;
}

.gc-search-form-hero .gc-search-main-icon::after {
	right: -5px;
	bottom: -4px;
	width: 8px;
	height: 2px;
	background: rgba(15, 23, 42, 0.42);
}

.gc-search-form-hero .gc-search-main-copy {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
}

.gc-search-form-hero .gc-search-main input {
	min-height: auto;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-family: inherit;
	font-size: clamp(1rem, 1.4vw, 1.08rem);
	font-weight: 500;
	letter-spacing: -0.025em;
	color: #111827;
}

.gc-search-form-hero .gc-search-main input::placeholder {
	color: rgba(100, 116, 139, 0.9);
	font-weight: 500;
}

.gc-search-form-hero .gc-search-inline-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	align-self: center;
	min-width: 116px;
	height: 48px;
	margin-left: 6px;
	padding: 0 18px;
	border: 1px solid rgba(140, 28, 38, 0.08);
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 245, 246, 0.96));
	box-shadow:
		0 10px 22px rgba(15, 23, 42, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	color: #8c1c26;
	font-family: inherit;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.02em;
	white-space: nowrap;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}

.gc-search-form-hero .gc-search-inline-submit:hover,
.gc-search-form-hero .gc-search-inline-submit:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(140, 28, 38, 0.14);
	background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 239, 241, 0.98));
	box-shadow:
		0 14px 28px rgba(15, 23, 42, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	color: #7a1922;
}

.gc-home-search-prompt {
	padding-top: 8px;
}

.gc-home-search-prompt span {
	max-width: 720px;
	color: rgba(100, 116, 139, 0.9);
	font-size: 0.78rem;
	letter-spacing: -0.01em;
}

.gc-home-search-card .gc-search-suggestions,
.gc-app-shell-home .gc-home-search-card .gc-search-suggestions {
	top: calc(100% + 10px);
	padding: 10px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.985);
	box-shadow:
		0 24px 70px rgba(15, 23, 42, 0.09),
		0 6px 24px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(18px);
}

.gc-home-search-card .gc-search-suggestion {
	height: 70px;
	padding: 10px 12px;
	border-radius: 18px;
	transition:
		background-color 0.18s ease,
		transform 0.18s ease,
		border-color 0.18s ease;
}

.gc-home-search-card .gc-search-suggestion:hover,
.gc-home-search-card .gc-search-suggestion.is-active {
	background: rgba(248, 250, 252, 0.96);
	border-color: rgba(140, 28, 38, 0.08);
	transform: translateY(-1px);
}

.gc-home-search-card .gc-search-suggestion-media {
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(248, 250, 252, 1), rgba(241, 245, 249, 1));
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.gc-home-search-card .gc-search-suggestion-title {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #111827;
}

.gc-home-search-card .gc-search-suggestion-secondary {
	color: rgba(100, 116, 139, 0.96);
	font-size: 0.79rem;
	font-weight: 500;
}

@media (max-width: 767px) {
	.gc-home-search-stage {
		max-width: 100%;
	}

	.gc-search-form-hero .gc-search-main {
		min-height: 64px;
		padding: 8px 8px 8px 16px;
		border-radius: 26px;
	}

	.gc-search-form-hero .gc-search-main-icon {
		width: 18px;
		height: 18px;
		margin-right: 12px;
	}

	.gc-search-form-hero .gc-search-main input {
		font-size: 0.96rem;
	}

	.gc-search-form-hero .gc-search-inline-submit {
		min-width: 98px;
		height: 44px;
		margin-left: 4px;
		padding: 0 15px;
		border-radius: 18px;
		font-size: 0.88rem;
	}

	.gc-home-search-card .gc-search-suggestions,
	.gc-app-shell-home .gc-home-search-card .gc-search-suggestions {
		top: calc(100% + 8px);
		border-radius: 24px;
	}
}

/* Premium SaaS auth pages. */
.gc-auth-page {
	position: relative;
	padding: clamp(36px, 6vw, 72px) 0;
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.14), transparent 30%),
		radial-gradient(circle at bottom right, rgba(140, 28, 38, 0.08), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 235, 0.84));
}

.gc-auth-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.gc-auth-copy {
	display: grid;
	gap: 18px;
	padding-top: 12px;
}

.gc-auth-copy h1 {
	max-width: 12ch;
	margin: 0;
	font-size: clamp(2.1rem, 4.4vw, 4.2rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
}

.gc-auth-copy p {
	max-width: 58ch;
	margin: 0;
	color: var(--gc-color-text-muted);
	font-size: 1rem;
	line-height: 1.8;
}

.gc-auth-highlight-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gc-auth-highlight-card {
	display: grid;
	gap: 8px;
	padding: 18px 18px 20px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.12), transparent 34%),
		rgba(255, 255, 255, 0.74);
	box-shadow: var(--gc-shadow-xs);
}

.gc-auth-highlight-card strong {
	font-size: 0.98rem;
	letter-spacing: -0.02em;
}

.gc-auth-highlight-card span {
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.65;
}

.gc-auth-card {
	display: grid;
	gap: 20px;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 250, 0.92)),
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.12), transparent 34%);
	box-shadow: 0 24px 56px rgba(43, 43, 43, 0.08);
	backdrop-filter: blur(12px);
}

.gc-auth-card-head {
	display: grid;
	gap: 8px;
}

.gc-auth-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.88);
	color: var(--gc-color-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-auth-card-head h2 {
	margin: 0;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	letter-spacing: -0.03em;
}

.gc-auth-card-head p {
	margin: 0;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
	line-height: 1.75;
}

.gc-auth-form,
.gc-auth-register-form {
	display: grid;
	gap: 18px;
}

.gc-auth-field-grid {
	display: grid;
	gap: 14px;
}

.gc-auth-field-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-auth-form-section {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(43, 43, 43, 0.08);
	border-radius: 26px;
	background:
		radial-gradient(circle at top right, rgba(201, 168, 92, 0.08), transparent 30%),
		rgba(250, 248, 244, 0.88);
}

.gc-auth-form-section-head {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: start;
}

.gc-auth-form-step {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
	font-size: 0.76rem;
	font-weight: 700;
}

.gc-auth-form-section-head h3 {
	margin: 0;
	font-size: 1rem;
	letter-spacing: -0.02em;
}

.gc-auth-form-section-head p {
	margin: 4px 0 0;
	color: var(--gc-color-text-muted);
	font-size: 0.82rem;
	line-height: 1.65;
}

.gc-auth-field {
	gap: 8px;
}

.gc-auth-field label {
	color: rgba(43, 43, 43, 0.78);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.gc-auth-form input,
.gc-auth-form textarea {
	width: 100%;
	min-height: 58px;
	padding: 0 18px;
	border: 1px solid rgba(43, 43, 43, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 8px 18px rgba(43, 43, 43, 0.03);
	color: var(--gc-color-text);
	font-family: "Inter", "Segoe UI", sans-serif;
	font-size: 0.96rem;
	line-height: 1.4;
	transition:
		border-color var(--gc-transition-base),
		box-shadow var(--gc-transition-base),
		transform var(--gc-transition-base),
		background var(--gc-transition-base);
}

.gc-password-field {
	position: relative;
	display: flex;
	align-items: center;
}

.gc-password-field input {
	flex: 1;
	padding-right: 48px;
}

.gc-password-toggle {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--gc-color-text-muted);
	display: flex;
	align-items: center;
	border-radius: 4px;
	transition: color var(--gc-transition-fast);
}

.gc-password-toggle:hover {
	color: var(--gc-color-text);
}

.gc-password-toggle:focus-visible {
	outline: 2px solid var(--gc-color-primary);
	outline-offset: 2px;
}

.gc-password-strength {
	margin-top: var(--gc-space-2);
}

.gc-strength-bar {
	height: 4px;
	background: var(--gc-color-border);
	border-radius: 999px;
	overflow: hidden;
}

.gc-strength-fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	transition: width 0.25s ease, background-color 0.25s ease;
	width: 0%;
}

.gc-strength-1 { background: var(--gc-color-danger); }
.gc-strength-2 { background: #e07b39; }
.gc-strength-3 { background: var(--gc-color-warning); }
.gc-strength-4 { background: #5a9e6f; }
.gc-strength-5 { background: var(--gc-color-success); }

.gc-strength-label {
	font-size: var(--gc-text-caption);
	color: var(--gc-color-text-muted);
	margin-top: 4px;
	display: block;
}

.gc-auth-form textarea {
	min-height: 112px;
	padding: 16px 18px;
	resize: vertical;
}

.gc-auth-form input::placeholder,
.gc-auth-form textarea::placeholder {
	color: rgba(43, 43, 43, 0.38);
}

.gc-auth-form input:hover,
.gc-auth-form textarea:hover {
	border-color: rgba(140, 28, 38, 0.14);
	background: rgba(255, 255, 255, 0.99);
}

.gc-auth-form input:focus,
.gc-auth-form input:focus-visible,
.gc-auth-form textarea:focus,
.gc-auth-form textarea:focus-visible {
	outline: none;
	border-color: rgba(140, 28, 38, 0.3);
	box-shadow:
		0 0 0 4px rgba(140, 28, 38, 0.08),
		0 16px 30px rgba(43, 43, 43, 0.05);
	transform: translateY(-1px);
}

.gc-auth-form-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gc-auth-form-meta a,
.gc-auth-footer a {
	color: var(--gc-color-primary);
	font-weight: 700;
	text-decoration: none;
}

.gc-auth-form-meta a:hover,
.gc-auth-footer a:hover {
	text-decoration: underline;
}

.gc-auth-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

.gc-auth-checkbox input {
	width: 18px;
	height: 18px;
	min-height: 18px;
	padding: 0;
	margin: 0;
	border-radius: 6px;
	box-shadow: none;
}

.gc-auth-actions {
	padding-top: 4px;
}

.gc-field-error-msg {
	display: block;
	font-size: var(--gc-text-caption);
	color: var(--gc-color-danger);
	margin-top: var(--gc-space-1);
}

input[aria-invalid="true"] {
	border-color: var(--gc-color-danger) !important;
	box-shadow: 0 0 0 3px rgba(182, 59, 69, 0.12);
}

.gc-auth-actions .gc-primary-button {
	width: 100%;
	min-height: 58px;
	justify-content: center;
	border-radius: 18px;
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	box-shadow: 0 16px 34px rgba(140, 28, 38, 0.18);
}

.gc-auth-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 4px;
	color: var(--gc-color-text-muted);
	font-size: var(--gc-text-small);
}

/* Indicador de campo obrigatório */
.gc-form-field label.gc-required::after,
.gc-auth-field label.gc-required::after {
	content: ' *';
	color: var(--gc-color-danger);
	font-size: 0.875em;
	font-weight: 600;
	margin-left: 2px;
	aria-hidden: true;
}

.gc-form-field .gc-required-note,
.gc-auth-card .gc-required-note {
	font-size: var(--gc-text-caption);
	color: var(--gc-color-text-muted);
	margin-bottom: var(--gc-space-4);
	display: block;
}

.gc-form-field .gc-required-note::before {
	content: '* ';
	color: var(--gc-color-danger);
}

@media (max-width: 1024px) {
	.gc-auth-shell {
		grid-template-columns: 1fr;
	}

	.gc-auth-copy h1 {
		max-width: 14ch;
	}
}

@media (max-width: 767px) {
	.gc-auth-page {
		padding: 22px 0 34px;
	}

	.gc-auth-highlight-grid,
	.gc-auth-field-grid-2 {
		grid-template-columns: 1fr;
	}

	.gc-auth-card {
		padding: 20px;
		border-radius: 26px;
	}

	.gc-auth-form-section {
		padding: 16px;
		border-radius: 22px;
	}

	.gc-auth-form-section-head {
		grid-template-columns: 1fr;
	}

	.gc-auth-form-meta,
	.gc-auth-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-auth-form input,
	.gc-auth-form textarea,
	.gc-auth-actions .gc-primary-button {
		min-height: 56px;
	}
}

/* Premium category visuals */
.gc-category-svg {
	width: 24px;
	height: 24px;
}

.gc-category-pill,
.gc-home-category-chip,
.gc-home-category-card,
.gc-category-heading-badge {
	--gc-category-accent: var(--gc-color-primary);
	--gc-category-surface: rgba(255, 255, 255, 0.88);
	--gc-category-border: rgba(43, 43, 43, 0.08);
	--gc-category-shadow: rgba(140, 28, 38, 0.14);
}

.gc-home-category-chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 16px 0 10px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--gc-category-accent) 18%, rgba(255, 255, 255, 0.22));
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
		var(--gc-category-surface);
	color: inherit;
	box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08);
	backdrop-filter: blur(16px);
}

.gc-home-category-chip:hover {
	transform: translateY(-1px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12)),
		var(--gc-category-surface);
}

.gc-home-category-chip-icon,
.gc-category-icon,
.gc-home-category-card-mark,
.gc-category-heading-badge-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	background: var(--gc-category-surface);
	color: var(--gc-category-accent);
	box-shadow:
		inset 0 0 0 1px color-mix(in srgb, var(--gc-category-accent) 18%, white),
		0 10px 24px var(--gc-category-shadow);
}

.gc-home-category-chip-icon {
	width: 32px;
	height: 32px;
	border-radius: 12px;
}

.gc-category-pill {
	position: relative;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border-radius: 24px;
	border: 1px solid var(--gc-category-border);
	background:
		radial-gradient(circle at top right, var(--gc-category-shadow), transparent 42%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
	box-shadow: 0 18px 40px rgba(43, 43, 43, 0.05);
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease;
}

.gc-category-pill:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--gc-category-accent) 22%, white);
	box-shadow:
		0 24px 48px rgba(43, 43, 43, 0.08),
		0 18px 32px var(--gc-category-shadow);
}

.gc-category-icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
}

.gc-category-copy {
	flex: 1 1 auto;
	gap: 6px;
}

.gc-category-copy strong {
	font-size: 1.02rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.gc-category-copy small {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--gc-category-accent) 8%, white);
	color: color-mix(in srgb, var(--gc-category-accent) 72%, #364152);
	font-weight: 600;
}

.gc-home-category-grid-premium {
	gap: 16px;
}

.gc-home-category-card {
	position: relative;
	gap: 12px;
	padding: 24px;
	border: 1px solid var(--gc-category-border);
	background:
		radial-gradient(circle at top right, var(--gc-category-shadow), transparent 44%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 251, 248, 0.94));
	box-shadow:
		0 18px 40px rgba(43, 43, 43, 0.05),
		0 12px 28px rgba(43, 43, 43, 0.03);
}

.gc-home-category-card:hover {
	border-color: color-mix(in srgb, var(--gc-category-accent) 22%, white);
	box-shadow:
		0 24px 46px rgba(43, 43, 43, 0.08),
		0 16px 32px var(--gc-category-shadow);
}

.gc-home-category-card-mark {
	width: 52px;
	height: 52px;
	border-radius: 18px;
}

.gc-home-category-card strong {
	font-size: 1.02rem;
}

.gc-home-category-card small {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--gc-category-accent) 8%, white);
	color: color-mix(in srgb, var(--gc-category-accent) 68%, #334155);
	font-weight: 600;
}

.gc-category-heading-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid var(--gc-category-border);
	background:
		radial-gradient(circle at top right, var(--gc-category-shadow), transparent 40%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
	box-shadow: 0 14px 26px rgba(43, 43, 43, 0.04);
}

.gc-category-heading-badge-icon {
	width: 36px;
	height: 36px;
	border-radius: 14px;
}

@media (max-width: 767px) {
	.gc-home-category-chip {
		min-height: 44px;
		padding-right: 14px;
	}

	.gc-home-category-chip-icon {
		width: 30px;
		height: 30px;
	}

	.gc-category-pill {
		padding: 18px;
		border-radius: 22px;
	}

	.gc-category-icon,
	.gc-home-category-card-mark {
		width: 48px;
		height: 48px;
		border-radius: 16px;
	}

	.gc-home-category-grid-premium {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Promotions feed experience */
.gc-home-promo-gateway {
	display: grid;
	gap: 20px;
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid rgba(148, 163, 184, 0.12);
	border-radius: 32px;
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.14), transparent 36%),
		radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 250, 252, 0.94));
	box-shadow:
		0 26px 56px rgba(15, 23, 42, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gc-home-promo-gateway-copy {
	display: grid;
	gap: 16px;
	align-content: center;
}

.gc-home-promo-gateway-copy h2 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.02;
	letter-spacing: -0.05em;
}

.gc-home-promo-gateway-copy p {
	max-width: 52ch;
	margin: 0;
	color: #475569;
	font-size: 1rem;
	line-height: 1.78;
}

.gc-home-promo-gateway-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.gc-home-promo-gateway-note {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(255, 110, 64, 0.12);
	color: #0f172a;
	font-weight: 700;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.7),
		0 12px 24px rgba(255, 110, 64, 0.08);
}

.gc-home-promo-gateway-note-mark {
	font-size: 1rem;
}

.gc-home-promo-teaser {
	position: relative;
	width: min(100%, 420px);
	justify-self: end;
}

.gc-home-promo-teaser-stack {
	position: relative;
	min-height: 320px;
	padding: 14px 0;
}

.gc-home-promo-teaser-layer,
.gc-home-promo-teaser-card {
	position: absolute;
	inset: auto 0 0 auto;
	width: min(100%, 390px);
	border-radius: 28px;
}

.gc-home-promo-teaser-layer {
	height: 240px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 250, 252, 0.62));
	border: 1px solid rgba(255, 255, 255, 0.48);
	backdrop-filter: blur(16px);
}

.gc-home-promo-teaser-layer-back {
	right: 8px;
	bottom: 10px;
	transform: rotate(-7deg);
	opacity: 0.55;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.gc-home-promo-teaser-layer-middle {
	right: 0;
	bottom: 2px;
	transform: rotate(6deg);
	opacity: 0.72;
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.gc-home-promo-teaser-card {
	position: relative;
	display: grid;
	gap: 16px;
	padding: 22px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.16), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
	box-shadow:
		0 28px 54px rgba(15, 23, 42, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.7);
	transition:
		transform 0.24s ease,
		box-shadow 0.24s ease;
}

.gc-home-promo-gateway:hover .gc-home-promo-teaser-card {
	transform: translateY(-4px);
	box-shadow:
		0 34px 62px rgba(15, 23, 42, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.gc-home-promo-teaser-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	color: #334155;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gc-home-promo-teaser-list {
	display: grid;
	gap: 12px;
}

.gc-home-promo-mini {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(148, 163, 184, 0.14);
	backdrop-filter: blur(14px);
}

.gc-home-promo-mini-avatar {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border-radius: 14px;
	background: linear-gradient(135deg, #fee2e2, #ffedd5);
	color: #9a3412;
	font-weight: 800;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.gc-home-promo-mini-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gc-home-promo-mini-copy {
	display: grid;
	min-width: 0;
	gap: 4px;
}

.gc-home-promo-mini-copy strong,
.gc-home-promo-mini-copy small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gc-home-promo-mini-copy strong {
	color: #0f172a;
	font-size: 0.92rem;
	line-height: 1.2;
}

.gc-home-promo-mini-copy small {
	color: #64748b;
	font-size: 0.8rem;
}

.gc-home-promo-mini-badge {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 244, 229, 0.92);
	color: #9a3412;
	font-size: 0.78rem;
	font-weight: 800;
}

.gc-home-promo-mini-placeholder {
	grid-template-columns: minmax(0, 1fr);
	padding: 18px;
}

.gc-home-promo-floating {
	position: absolute;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(148, 163, 184, 0.14);
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
	backdrop-filter: blur(14px);
	color: #334155;
	font-size: 0.8rem;
	font-weight: 700;
}

.gc-home-promo-floating-top {
	top: 0;
	left: 12px;
}

.gc-home-promo-floating-bottom {
	right: 24px;
	bottom: -8px;
}

.gc-promotion-feed-page {
	padding-top: clamp(22px, 4vw, 42px);
}

.gc-promotion-feed-shell {
	display: grid;
	gap: 22px;
}

.gc-promotion-feed-hero {
	display: grid;
	gap: 20px;
	padding: clamp(22px, 4vw, 36px);
	border-radius: 34px;
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.16), transparent 30%),
		radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow: 0 34px 70px rgba(15, 23, 42, 0.08);
}

.gc-promotion-feed-hero-copy {
	display: grid;
	gap: 14px;
}

.gc-promotion-feed-hero-copy h1 {
	max-width: 13ch;
	margin: 0;
	font-size: clamp(2.1rem, 4vw, 4rem);
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.gc-promotion-feed-hero-copy p {
	max-width: 60ch;
	margin: 0;
	color: #475569;
	font-size: 1rem;
	line-height: 1.75;
}

.gc-promotion-feed-switch {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
	width: fit-content;
	padding: 8px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
}

.gc-promotion-feed-switch-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	color: #334155;
	font-weight: 700;
}

.gc-promotion-feed-switch-link.is-active {
	background: #0f172a;
	color: #fff;
	box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}

.gc-promotion-feed-hero-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gc-promotion-feed-stat {
	display: grid;
	gap: 4px;
	padding: 18px 20px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(148, 163, 184, 0.16);
}

.gc-promotion-feed-stat strong {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.gc-promotion-feed-stat span {
	color: #475569;
	font-weight: 600;
}

.gc-promotion-feed-list {
	display: grid;
	gap: 18px;
	max-width: 760px;
	margin: 0 auto;
}

.gc-promotion-feed-card {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	background: #fff;
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow:
		0 24px 50px rgba(15, 23, 42, 0.07),
		0 8px 22px rgba(15, 23, 42, 0.05);
	transition:
		transform 0.24s ease,
		box-shadow 0.24s ease,
		border-color 0.24s ease;
}

.gc-promotion-feed-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 110, 64, 0.2);
	box-shadow:
		0 30px 58px rgba(15, 23, 42, 0.1),
		0 14px 28px rgba(15, 23, 42, 0.08);
}

.gc-promotion-feed-card-highlight {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 244, 0.98));
}

.gc-promotion-feed-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.24), transparent 34%),
		linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.gc-promotion-feed-media img,
.gc-promotion-feed-company-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gc-promotion-feed-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 18px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.14), rgba(15, 23, 42, 0.02) 42%, rgba(15, 23, 42, 0.48));
	z-index: 1;
}

.gc-promotion-feed-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-promotion-feed-badge,
.gc-promotion-feed-expiry {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	backdrop-filter: blur(18px);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.gc-promotion-feed-badge {
	background: rgba(255, 255, 255, 0.86);
	color: #0f172a;
}

.gc-promotion-feed-badge-hot {
	background: rgba(255, 110, 64, 0.9);
	color: #fff;
}

.gc-promotion-feed-badge-price {
	background: rgba(15, 23, 42, 0.8);
	color: #fff;
}

.gc-promotion-feed-expiry {
	align-self: flex-start;
	background: rgba(255, 244, 229, 0.9);
	color: #9a3412;
}

.gc-promotion-feed-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.24), transparent 34%),
		linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.gc-promotion-feed-body {
	display: grid;
	gap: 18px;
	padding: 20px;
}

.gc-promotion-feed-company {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: inherit;
}

.gc-promotion-feed-company-mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(135deg, #fee2e2, #ffedd5);
	color: #9a3412;
	font-weight: 800;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.gc-promotion-feed-company-copy {
	display: grid;
	gap: 4px;
}

.gc-promotion-feed-company-copy strong {
	font-size: 0.95rem;
	line-height: 1.2;
}

.gc-promotion-feed-company-copy small {
	color: #64748b;
	font-size: 0.8rem;
}

.gc-promotion-feed-copy {
	display: grid;
	gap: 10px;
}

.gc-promotion-feed-copy h2 {
	margin: 0;
	font-size: clamp(1.24rem, 2vw, 1.6rem);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.gc-promotion-feed-copy p {
	margin: 0;
	color: #475569;
	line-height: 1.68;
}

.gc-promotion-feed-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.gc-promotion-feed-cta {
	min-width: 180px;
}

.gc-promotion-feed-company-link {
	font-weight: 700;
}

.gc-promotion-feed-progress {
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 8px 0 0;
}

.gc-promotion-feed-status {
	margin: 0;
	color: #64748b;
	text-align: center;
	font-weight: 600;
}

.gc-promotion-feed-sentinel,
.gc-promotion-feed-meta {
	width: 100%;
	height: 1px;
}

.gc-promotion-feed-meta {
	display: none;
}

.gc-promotion-feed-card-skeleton {
	pointer-events: none;
}

.gc-promotion-feed-card-skeleton .gc-promotion-feed-media,
.gc-promotion-feed-skeleton-line,
.gc-promotion-feed-skeleton-pill {
	background:
		linear-gradient(90deg, rgba(226, 232, 240, 0.9), rgba(248, 250, 252, 0.98), rgba(226, 232, 240, 0.9));
	background-size: 200% 100%;
	animation: gcPromotionSkeleton 1.2s ease-in-out infinite;
}

.gc-promotion-feed-skeleton-line {
	height: 14px;
	border-radius: 999px;
}

.gc-promotion-feed-skeleton-line-brand {
	width: 42%;
	height: 16px;
}

.gc-promotion-feed-skeleton-line-title {
	width: 78%;
	height: 22px;
}

.gc-promotion-feed-skeleton-line-copy {
	width: 100%;
}

.gc-promotion-feed-skeleton-line-copy.short {
	width: 68%;
}

.gc-promotion-feed-skeleton-actions {
	display: flex;
	gap: 10px;
}

.gc-promotion-feed-skeleton-pill {
	width: 142px;
	height: 44px;
	border-radius: 999px;
}

.gc-promotion-feed-skeleton-pill.muted {
	width: 110px;
	opacity: 0.7;
}

@keyframes gcPromotionSkeleton {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

@media (min-width: 900px) {
	.gc-home-promo-gateway {
		grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
		align-items: center;
	}

	.gc-promotion-feed-hero {
		grid-template-columns: minmax(0, 1.2fr) minmax(240px, 320px);
		align-items: end;
	}
}

@media (max-width: 767px) {
	.gc-home-promo-gateway {
		padding: 22px 18px;
		border-radius: 28px;
	}

	.gc-home-promo-gateway-copy h2 {
		max-width: 100%;
		font-size: 1.9rem;
	}

	.gc-home-promo-teaser {
		width: 100%;
	}

	.gc-home-promo-teaser-stack {
		min-height: 286px;
	}

	.gc-home-promo-teaser-card {
		padding: 18px;
	}

	.gc-home-promo-mini {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.gc-home-promo-mini-badge {
		grid-column: 2;
		justify-self: start;
	}

	.gc-home-promo-floating {
		font-size: 0.76rem;
	}

	.gc-promotion-feed-hero {
		padding: 22px 18px;
		border-radius: 28px;
	}

	.gc-promotion-feed-switch {
		width: 100%;
	}

	.gc-promotion-feed-switch-link {
		flex: 1 1 0;
	}

	.gc-promotion-feed-hero-stats {
		grid-template-columns: 1fr;
	}

	.gc-promotion-feed-card {
		border-radius: 26px;
	}

	.gc-promotion-feed-overlay {
		padding: 14px;
	}

	.gc-promotion-feed-body {
		padding: 18px;
	}

	.gc-promotion-feed-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-promotion-feed-cta,
	.gc-promotion-feed-company-link {
		width: 100%;
		justify-content: center;
	}
}

/* Promotion feed refresh */
.gc-promotion-feed-page {
	padding-top: clamp(8px, 2vw, 20px);
}

.gc-promotion-feed-shell {
	gap: 18px;
}

.gc-promotion-feed-hero {
	gap: 14px;
	padding: clamp(18px, 2.6vw, 26px);
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.13), transparent 28%),
		radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.1), transparent 24%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
	border: 1px solid rgba(148, 163, 184, 0.12);
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.06);
}

.gc-promotion-feed-hero-main {
	display: grid;
	gap: 14px;
}

.gc-promotion-feed-hero-copy {
	gap: 10px;
}

.gc-promotion-feed-hero-copy h1 {
	max-width: none;
	font-size: clamp(2rem, 4vw, 3.1rem);
	line-height: 0.98;
}

.gc-promotion-feed-hero-copy p {
	max-width: 46ch;
	font-size: 1rem;
	line-height: 1.68;
}

.gc-promotion-feed-hero-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.gc-promotion-feed-inline-stat,
.gc-promotion-feed-inline-stat-category {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(148, 163, 184, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gc-promotion-feed-inline-stat strong {
	font-size: 1rem;
	letter-spacing: -0.03em;
}

.gc-promotion-feed-inline-stat small,
.gc-promotion-feed-inline-stat-category small {
	color: #475569;
	font-size: 0.84rem;
	font-weight: 700;
}

.gc-promotion-feed-inline-stat-category {
	--gc-category-accent: #0f172a;
	--gc-category-surface: rgba(255, 255, 255, 0.88);
	--gc-category-border: rgba(148, 163, 184, 0.18);
	--gc-category-shadow: rgba(15, 23, 42, 0.08);
	color: var(--gc-category-accent);
	background: color-mix(in srgb, var(--gc-category-surface) 88%, white);
	border-color: color-mix(in srgb, var(--gc-category-accent) 16%, white);
}

.gc-promotion-feed-inline-icon,
.gc-promotion-feed-filter-mark,
.gc-promotion-feed-category-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
}

.gc-promotion-feed-inline-icon {
	width: 30px;
	height: 30px;
	border-radius: 11px;
	background: color-mix(in srgb, var(--gc-category-accent) 10%, white);
}

.gc-promotion-feed-inline-icon .gc-category-svg,
.gc-promotion-feed-filter-mark .gc-category-svg,
.gc-promotion-feed-category-icon .gc-category-svg {
	width: 18px;
	height: 18px;
}

.gc-promotion-feed-filters {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 2px 2px 6px;
	scrollbar-width: none;
}

.gc-promotion-feed-filters::-webkit-scrollbar {
	display: none;
}

.gc-promotion-feed-filter {
	--gc-category-accent: #334155;
	--gc-category-surface: rgba(255, 255, 255, 0.88);
	--gc-category-border: rgba(148, 163, 184, 0.16);
	--gc-category-shadow: rgba(15, 23, 42, 0.08);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	min-height: 46px;
	padding: 0 15px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(148, 163, 184, 0.16);
	color: #334155;
	font-weight: 700;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}

.gc-promotion-feed-filter:hover {
	transform: translateY(-1px);
	border-color: color-mix(in srgb, var(--gc-category-accent) 16%, white);
	box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.gc-promotion-feed-filter-mark {
	width: 30px;
	height: 30px;
	border-radius: 11px;
	background: color-mix(in srgb, var(--gc-category-accent) 10%, white);
	color: var(--gc-category-accent);
}

.gc-promotion-feed-filter.is-active {
	background: color-mix(in srgb, var(--gc-category-surface) 86%, white);
	border-color: color-mix(in srgb, var(--gc-category-accent) 22%, white);
	color: #0f172a;
	box-shadow:
		0 18px 28px var(--gc-category-shadow),
		inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.gc-promotion-feed-list {
	max-width: 1120px;
	margin: 0 auto;
	gap: 16px;
}

.gc-promotion-feed-card {
	display: grid;
	overflow: hidden;
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 250, 252, 0.98));
	border: 1px solid rgba(148, 163, 184, 0.14);
	box-shadow:
		0 24px 48px rgba(15, 23, 42, 0.06),
		0 10px 24px rgba(15, 23, 42, 0.04);
}

.gc-promotion-feed-card:hover {
	transform: translateY(-2px);
	box-shadow:
		0 30px 56px rgba(15, 23, 42, 0.08),
		0 14px 28px rgba(15, 23, 42, 0.05);
}

.gc-promotion-feed-card-highlight {
	background:
		radial-gradient(circle at top right, rgba(255, 110, 64, 0.13), transparent 30%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 249, 245, 0.98));
}

.gc-promotion-feed-media {
	aspect-ratio: 16 / 11;
	min-height: 280px;
}

.gc-promotion-feed-overlay {
	padding: 16px;
}

.gc-promotion-feed-body {
	gap: 16px;
	padding: 20px;
}

.gc-promotion-feed-copy {
	gap: 10px;
}

.gc-promotion-feed-copy h2 {
	font-size: clamp(1.34rem, 2vw, 1.8rem);
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.gc-promotion-feed-copy p {
	max-width: 54ch;
	font-size: 0.97rem;
	line-height: 1.68;
}

.gc-promotion-feed-brand-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.gc-promotion-feed-company {
	gap: 14px;
}

.gc-promotion-feed-company-mark {
	width: 54px;
	height: 54px;
	border-radius: 18px;
}

.gc-promotion-feed-company-copy strong {
	font-size: 1rem;
}

.gc-promotion-feed-company-copy small {
	font-size: 0.82rem;
}

.gc-promotion-feed-category {
	--gc-category-accent: #334155;
	--gc-category-surface: rgba(255, 255, 255, 0.86);
	--gc-category-border: rgba(148, 163, 184, 0.16);
	--gc-category-shadow: rgba(15, 23, 42, 0.08);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 40px;
	padding: 0 12px 0 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--gc-category-surface) 88%, white);
	border: 1px solid color-mix(in srgb, var(--gc-category-accent) 18%, white);
	color: var(--gc-category-accent);
	font-size: 0.84rem;
	font-weight: 700;
}

.gc-promotion-feed-category-icon {
	width: 28px;
	height: 28px;
	border-radius: 10px;
	background: color-mix(in srgb, var(--gc-category-accent) 10%, white);
}

.gc-promotion-feed-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.gc-promotion-feed-meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.gc-promotion-feed-deadline {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 244, 229, 0.88);
	color: #9a3412;
	font-size: 0.82rem;
	font-weight: 800;
}

.gc-promotion-feed-actions {
	gap: 10px;
}

.gc-promotion-feed-cta {
	min-width: 164px;
}

.gc-promotion-feed-company-link {
	color: #334155;
}

.gc-promotion-feed-progress {
	padding-top: 2px;
}

.gc-promotion-feed-status {
	font-size: 0.92rem;
}

.gc-promotion-feed-card-skeleton {
	display: grid;
}

.gc-promotion-feed-card-skeleton .gc-promotion-feed-media {
	min-height: 260px;
}

@media (min-width: 860px) {
	.gc-promotion-feed-hero-main {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
	}

	.gc-promotion-feed-card {
		grid-template-columns: minmax(320px, 1.02fr) minmax(0, 1fr);
	}

	.gc-promotion-feed-media {
		aspect-ratio: auto;
		height: 100%;
		min-height: 100%;
	}

	.gc-promotion-feed-body {
		padding: 22px;
	}
}

@media (max-width: 767px) {
	.gc-promotion-feed-page {
		padding-top: 0;
	}

	.gc-promotion-feed-hero {
		padding: 18px 16px;
		border-radius: 26px;
	}

	.gc-promotion-feed-switch {
		padding: 6px;
	}

	.gc-promotion-feed-switch-link {
		min-height: 38px;
		padding: 0 12px;
	}

	.gc-promotion-feed-filters {
		margin-right: -4px;
		padding-bottom: 4px;
	}

	.gc-promotion-feed-card {
		border-radius: 26px;
	}

	.gc-promotion-feed-media {
		min-height: 220px;
	}

	.gc-promotion-feed-body {
		padding: 18px;
	}

	.gc-promotion-feed-brand-row,
	.gc-promotion-feed-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-promotion-feed-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-promotion-feed-cta,
	.gc-promotion-feed-company-link {
		width: 100%;
		justify-content: center;
	}
}

@media (min-width: 900px) {
	.gc-promotion-feed-hero {
		grid-template-columns: minmax(0, 1fr);
		align-items: stretch;
	}

	.gc-promotion-feed-switch {
		justify-self: start;
	}

	.gc-promotion-feed-hero-main {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.gc-promotion-feed-hero-copy {
		max-width: 760px;
	}

	.gc-promotion-feed-hero-meta {
		justify-content: flex-end;
		align-self: center;
	}
}

/* Header logo responsiveness */
.gc-site-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	max-width: 100%;
}

.gc-site-brand-logo,
.gc-site-brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 auto;
}

.gc-site-brand-logo {
	overflow: visible;
}

.gc-site-brand-logo-full {
	width: auto;
	height: clamp(42px, 5vw, 62px);
	max-width: min(280px, 28vw);
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-site-brand-logo-mark,
.gc-site-brand-mark {
	width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--gc-shadow-sm);
}

.gc-site-brand-image,
.gc-site-brand-logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.gc-site-brand-copy {
	min-width: 0;
	flex: 1 1 auto;
}

.gc-site-header-inner {
	grid-template-columns: auto minmax(0, 1fr) auto;
}

.gc-site-header-spacer {
	display: none;
}

.gc-site-brand-copy strong,
.gc-site-brand-copy small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (min-width: 1024px) {
	.gc-site-header-inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 20px;
	}

	.gc-site-brand-logo-full {
		max-width: min(360px, 30vw);
		height: clamp(46px, 4.4vw, 66px);
	}
}

@media (max-width: 767px) {
	.gc-site-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 12px;
		min-height: 64px;
	}

	.gc-site-brand {
		gap: 10px;
	}

	.gc-site-brand-logo-full {
		max-width: min(190px, 48vw);
		height: 40px;
	}

	.gc-site-brand-logo-mark,
	.gc-site-brand-mark {
		width: 42px;
		height: 42px;
		border-radius: 14px;
	}

	.gc-site-brand-copy small {
		display: none;
	}
}

/* Premium visual system refinements */
.gc-app-shell,
.gc-public-page,
.gc-results-page {
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.12), transparent 24%),
		radial-gradient(circle at top right, rgba(140, 28, 38, 0.08), transparent 28%),
		linear-gradient(180deg, #fcfaf7 0%, #f6f1eb 58%, #f3ede5 100%);
}

.gc-site-header {
	padding: 14px 0;
	background: rgba(246, 241, 235, 0.74);
	backdrop-filter: blur(22px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.gc-site-header-inner,
.gc-site-footer-grid,
.gc-page-shell,
.gc-hero-shell,
.gc-single-grid,
.gc-search-page-head,
.gc-search-page-form-shell,
.gc-promotion-feed-shell {
	gap: clamp(18px, 2vw, 28px);
}

.gc-site-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.gc-site-actions .gc-primary-button,
.gc-site-actions .gc-secondary-button,
.gc-mobile-actions .gc-primary-button,
.gc-mobile-actions .gc-secondary-button {
	min-width: 138px;
}

.gc-mobile-toggle,
.gc-mobile-close {
	border-radius: 16px;
	box-shadow: var(--gc-shadow-xs);
}

.gc-mobile-menu {
	padding: 22px;
	border-left-color: rgba(226, 232, 240, 0.88);
	box-shadow: -22px 0 56px rgba(15, 23, 42, 0.12);
}

.gc-breadcrumb-bar,
.gc-app-feedback {
	position: relative;
	z-index: 1;
}

.gc-home-hero,
.gc-company-hero {
	padding-block: clamp(44px, 8vw, 92px);
}

.gc-home-hero-premium-grid,
.gc-hero-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: center;
}

.gc-home-hero-copy,
.gc-hero-copy {
	display: grid;
	gap: 16px;
}

.gc-home-hero-copy p,
.gc-hero-copy p,
.gc-section-heading p {
	max-width: 62ch;
}

.gc-home-search-card,
.gc-search-form,
.gc-search-page-form-shell,
.gc-home-promo-gateway,
.gc-final-cta-card,
.gc-auth-card,
.gc-auth-aside,
.gc-company-sidebar-card {
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 249, 245, 0.96));
	box-shadow: var(--gc-shadow-soft);
	border-color: rgba(226, 232, 240, 0.9);
}

.gc-search-form,
.gc-search-page-form-shell,
.gc-home-search-card {
	padding: clamp(16px, 2vw, 24px);
}

.gc-search-shell,
.gc-search-command,
.gc-search-main,
.gc-search-filters-panel,
.gc-search-grid {
	gap: 14px;
}

.gc-search-main,
.gc-search-side select,
.gc-search-main input {
	border-radius: 18px;
}

.gc-search-main {
	padding-inline: 6px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(226, 232, 240, 0.92);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.gc-search-main:focus-within,
.gc-search-main:hover {
	border-color: rgba(140, 28, 38, 0.18);
	box-shadow:
		0 0 0 4px rgba(140, 28, 38, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gc-search-inline-submit,
.gc-header-search-button {
	min-width: 120px;
	border-radius: 16px;
	box-shadow: 0 12px 24px rgba(140, 28, 38, 0.14);
}

.gc-search-suggestions {
	border-radius: 22px;
	border-color: rgba(226, 232, 240, 0.96);
	box-shadow: var(--gc-shadow-soft);
}

.gc-search-suggestion {
	border-radius: 18px;
}

.gc-section-heading,
.gc-home-section-head,
.gc-panel-heading,
.gc-panel-heading-inline {
	margin-bottom: clamp(16px, 2.4vw, 26px);
}

.gc-results-grid,
.gc-home-premium-grid-cards,
.gc-home-category-grid-premium,
.gc-home-featured-grid,
.gc-plan-grid,
.gc-promotion-feed-grid,
.gc-search-results-list {
	gap: clamp(16px, 2vw, 24px);
}

.gc-card,
.gc-catalog-card,
.gc-promotion-card,
.gc-promo-list-card,
.gc-event-card,
.gc-plan-card,
.gc-company-review-card,
.gc-review-card {
	border-radius: 26px;
	overflow: clip;
	box-shadow: var(--gc-shadow);
}

.gc-card-body,
.gc-plan-card-body,
.gc-promo-list-card-body,
.gc-promotion-card-body,
.gc-event-card-body {
	padding: clamp(18px, 2vw, 24px);
}

.gc-card-cover,
.gc-promotion-feed-media,
.gc-event-card-cover {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.gc-card h3,
.gc-catalog-card h3,
.gc-promotion-card h3,
.gc-promo-list-card h3,
.gc-event-card h3 {
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.gc-card p,
.gc-catalog-card p,
.gc-promotion-card p,
.gc-promo-list-card p,
.gc-event-card p {
	color: var(--gc-color-text-muted);
}

.gc-card-actions,
.gc-company-actions,
.gc-final-cta-actions,
.gc-home-promo-gateway-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gc-home-category-card,
.gc-home-category-chip {
	border-radius: 22px;
	box-shadow: var(--gc-shadow-xs);
}

.gc-home-promo-gateway,
.gc-site-footer {
	position: relative;
	overflow: hidden;
}

.gc-site-footer {
	margin-top: clamp(40px, 6vw, 72px);
	padding: clamp(32px, 5vw, 56px) 0 calc(88px + env(safe-area-inset-bottom, 0px));
	background:
		radial-gradient(circle at top left, rgba(201, 168, 92, 0.1), transparent 20%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(247, 242, 236, 0.94));
	border-top: 1px solid rgba(226, 232, 240, 0.88);
}

.gc-site-footer-grid > div,
.gc-site-footer-brand {
	display: grid;
	gap: 12px;
}

.gc-site-footer h3 {
	margin: 0;
	font-size: 1rem;
}

.gc-site-footer-list {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.gc-mobile-bottom-nav {
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 252, 250, 0.94);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(226, 232, 240, 0.94);
	box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.08);
}

.gc-mobile-bottom-nav a {
	min-height: 62px;
	padding: 10px 8px;
}

.gc-mobile-bottom-nav-icon {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--gc-shadow-xs);
}

.gc-auth-shell,
.gc-company-hero-inner,
.gc-company-body-grid,
.gc-results-shell,
.gc-results-shell-discovery {
	gap: clamp(20px, 3vw, 32px);
}

@media (max-width: 1024px) {
	.gc-home-hero-premium-grid,
	.gc-hero-shell,
	.gc-site-footer-grid {
		grid-template-columns: 1fr;
	}

	.gc-site-actions .gc-primary-button,
	.gc-site-actions .gc-secondary-button {
		min-width: 0;
	}
}

@media (max-width: 767px) {
	.gc-site-header {
		padding: 10px 0;
	}

	.gc-home-hero,
	.gc-company-hero {
		padding-block: 32px 20px;
	}

	.gc-home-search-card,
	.gc-search-form,
	.gc-search-page-form-shell {
		padding: 14px;
		border-radius: 24px;
	}

	.gc-card,
	.gc-catalog-card,
	.gc-promotion-card,
	.gc-promo-list-card,
	.gc-event-card,
	.gc-plan-card {
		border-radius: 22px;
	}

	.gc-card-actions,
	.gc-company-actions,
	.gc-final-cta-actions,
	.gc-home-promo-gateway-actions {
		flex-direction: column;
	}

	.gc-card-actions .gc-primary-button,
	.gc-card-actions .gc-secondary-button,
	.gc-company-actions .gc-primary-button,
	.gc-company-actions .gc-secondary-button,
	.gc-final-cta-actions .gc-primary-button,
	.gc-final-cta-actions .gc-secondary-button,
	.gc-home-promo-gateway-actions .gc-primary-button,
	.gc-home-promo-gateway-actions .gc-secondary-button {
		width: 100%;
	}

	.gc-mobile-bottom-nav a {
		min-height: 58px;
	}
}

/* Home premium v2 */
.gc-home-premium .gc-home-section {
	position: relative;
	z-index: 1;
}

.gc-home-premium .gc-home-hero {
	padding-block: clamp(22px, 4.5vw, 56px);
}

.gc-home-hero-premium-grid-focused {
	display: block;
}

.gc-home-hero-stack-v2 {
	display: grid;
	gap: clamp(14px, 2vw, 22px);
	justify-items: center;
	max-width: 980px;
	margin: 0 auto;
}

.gc-home-hero-copy-centered {
	display: grid;
	gap: 10px;
	width: 100%;
	max-width: 980px;
	text-align: center;
	justify-items: center;
}

.gc-home-hero-copy-centered h1 {
	max-width: 14ch;
	margin: 0;
	font-size: clamp(2.35rem, 5.4vw, 4.35rem);
	font-weight: 800;
	line-height: 0.94;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.gc-home-hero-copy-centered p {
	max-width: 50ch;
	margin: 0;
	font-size: clamp(0.94rem, 1.45vw, 1.02rem);
	line-height: 1.58;
	color: rgba(30, 30, 30, 0.66);
}

.gc-home-search-stage-focused {
	width: min(100%, 940px);
}

.gc-home-search-card-focused {
	display: grid;
	gap: 16px;
	padding: clamp(14px, 1.8vw, 20px);
	border: 1px solid rgba(229, 231, 235, 0.96);
	border-radius: 32px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 239, 0.96));
	box-shadow:
		0 28px 72px rgba(43, 43, 43, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.gc-home-search-card-focused .gc-search-form {
	padding: 0;
}

.gc-home-search-card-focused .gc-search-shell {
	gap: 16px;
}

.gc-home-search-card-focused .gc-search-main {
	min-height: 80px;
	padding: 8px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(226, 232, 240, 0.98);
	box-shadow:
		0 16px 36px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.gc-home-search-card-focused .gc-search-main-copy input {
	font-size: 1.04rem;
}

.gc-home-search-card-focused .gc-search-inline-submit {
	min-width: 136px;
	min-height: 58px;
	padding-inline: 20px;
	border-radius: 18px;
}

.gc-home-category-chip-row-hero,
.gc-home-city-strip-scroller {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.gc-home-category-chip-row-hero {
	justify-content: center;
}

.gc-home-search-prompt-strong {
	display: flex;
	justify-content: center;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(107, 114, 128, 0.88);
}

.gc-home-search-topic-grid-hero {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-home-search-topic-grid-hero .gc-home-search-topic {
	min-height: 82px;
	padding: 16px 18px;
	border: 1px solid rgba(229, 231, 235, 0.88);
	background: rgba(255, 255, 255, 0.72);
}

.gc-home-search-topic-grid-hero .gc-home-search-topic strong {
	font-size: 0.96rem;
}

.gc-home-search-topic-grid-hero .gc-home-search-topic span {
	font-size: 0.78rem;
	color: rgba(107, 114, 128, 0.92);
}

.gc-home-hero-actions-discreet {
	justify-content: center;
	padding-top: 2px;
}

.gc-home-hero-actions-discreet .gc-link-button {
	min-height: 42px;
	padding-inline: 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(229, 231, 235, 0.86);
}

.gc-home-city-strip {
	display: grid;
	gap: 14px;
	margin-top: clamp(20px, 3vw, 28px);
	padding: 18px 20px;
	border: 1px solid rgba(229, 231, 235, 0.88);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.7);
}

.gc-home-city-strip-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(107, 114, 128, 0.92);
}

.gc-home-trend-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid rgba(226, 232, 240, 0.96);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
	color: inherit;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gc-home-trend-pill:hover,
.gc-home-trend-pill:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(140, 28, 38, 0.16);
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.gc-home-trend-pill small {
	color: rgba(107, 114, 128, 0.9);
}

.gc-home-premium .gc-search-suggestions {
	top: calc(100% + 10px);
	padding: 10px;
	border: 1px solid rgba(229, 231, 235, 0.96);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.gc-home-premium .gc-search-suggestion {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	padding: 12px;
	border-radius: 18px;
}

.gc-home-premium .gc-search-suggestion:hover,
.gc-home-premium .gc-search-suggestion.is-active {
	background: rgba(246, 241, 235, 0.72);
}

.gc-home-premium .gc-search-suggestion-media {
	width: 52px;
	height: 52px;
	border-radius: 16px;
}

.gc-home-premium .gc-search-suggestion-copy {
	gap: 8px;
}

.gc-home-premium .gc-search-suggestion-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.gc-home-premium .gc-search-suggestion-title {
	min-width: 0;
	font-size: 0.96rem;
	line-height: 1.3;
}

.gc-home-premium .gc-search-suggestion-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.gc-home-premium .gc-search-suggestion-meta {
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(30, 30, 30, 0.72);
}

.gc-home-premium .gc-search-suggestion-type,
.gc-home-premium .gc-search-suggestion-detail {
	min-height: 24px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
}

.gc-home-premium .gc-search-suggestion-type {
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-primary, #8C1C26);
}

.gc-home-premium .gc-search-suggestion-detail {
	background: rgba(246, 241, 235, 0.94);
	color: rgba(107, 114, 128, 0.94);
}

.gc-home-premium-grid-cards .gc-discovery-card {
	height: 100%;
	border: 1px solid rgba(229, 231, 235, 0.88);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 20px 52px rgba(15, 23, 42, 0.07);
}

.gc-home-premium-grid-cards .gc-discovery-card-media {
	min-height: 224px;
	aspect-ratio: 16 / 10;
}

.gc-home-premium-grid-cards .gc-discovery-card-body {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
}

.gc-home-premium-grid-cards .gc-discovery-card-copy h3 {
	font-size: 1.12rem;
}

.gc-home-premium-grid-cards .gc-discovery-card-body p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gc-home-premium-grid-cards .gc-discovery-card-footer {
	margin-top: 2px;
}

.gc-home-premium-grid-cards .gc-discovery-card-footer .gc-link-button,
.gc-home-premium-grid-cards .gc-discovery-card-footer .gc-primary-button {
	flex: 1 1 0;
	justify-content: center;
}

.gc-home-promo-gateway {
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	align-items: center;
}

.gc-home-promo-gateway-copy h2 {
	max-width: 12ch;
}

.gc-home-promo-gateway-copy p {
	max-width: 44ch;
}

.gc-home-promo-gateway-note-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(140, 28, 38, 0.1);
	color: var(--gc-primary, #8C1C26);
	font-size: 0.96rem;
	font-weight: 700;
}

.gc-home-promo-teaser-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 239, 0.94));
}

@media (max-width: 1024px) {
	.gc-home-search-topic-grid-hero {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-home-promo-gateway {
		grid-template-columns: 1fr;
	}

	.gc-home-promo-teaser {
		width: min(100%, 440px);
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.gc-home-hero-copy-centered h1 {
		max-width: 12ch;
		font-size: clamp(2rem, 9vw, 2.8rem);
		line-height: 0.98;
	}

	.gc-home-search-card-focused {
		padding: 13px;
		border-radius: 26px;
	}

	.gc-home-search-card-focused .gc-search-main {
		min-height: 70px;
		border-radius: 22px;
	}

	.gc-home-search-card-focused .gc-search-inline-submit {
		min-width: 108px;
		min-height: 52px;
	}

	.gc-home-category-chip-row-hero,
	.gc-home-city-strip-scroller {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 4px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.gc-home-category-chip-row-hero::-webkit-scrollbar,
	.gc-home-city-strip-scroller::-webkit-scrollbar {
		display: none;
	}

	.gc-home-search-topic-grid-hero {
		grid-template-columns: 1fr;
	}

	.gc-home-city-strip {
		padding: 16px;
		border-radius: 20px;
	}

	.gc-home-trend-pill {
		flex: 0 0 auto;
	}

	.gc-home-premium .gc-search-suggestions {
		padding: 8px;
		border-radius: 20px;
	}

	.gc-home-premium .gc-search-suggestion {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		padding: 11px;
	}

	.gc-home-premium .gc-search-suggestion-media {
		width: 44px;
		height: 44px;
		border-radius: 14px;
	}

	.gc-home-premium .gc-search-suggestion-top {
		align-items: flex-start;
		flex-direction: column;
	}

	.gc-home-premium-grid-cards .gc-discovery-card-footer {
		display: grid;
		grid-template-columns: 1fr;
	}
}

/* Hero definitive structure fix */
.gc-home-premium .gc-home-hero-premium {
	min-height: auto;
	max-height: none;
	padding-block: clamp(20px, 4vw, 48px);
}

.gc-home-premium .gc-home-hero-premium > .gc-container {
	width: min(1240px, calc(100% - clamp(20px, 4vw, 40px)));
}

.gc-home-premium .gc-home-hero-premium .gc-home-hero-premium-grid.gc-home-hero-premium-grid-focused {
	width: 100%;
}

.gc-home-premium .gc-home-hero-premium .gc-home-hero-stack-v2 {
	width: min(100%, 1200px);
	gap: clamp(12px, 1.8vw, 20px);
}

.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered {
	width: 100%;
	max-width: 980px;
	margin-inline: auto;
	gap: 8px;
}

.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered h1 {
	width: min(100%, 900px);
	max-width: 900px;
	margin-inline: auto;
	font-size: clamp(40px, 6vw, 78px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered p {
	width: min(100%, 680px);
	max-width: 680px;
	margin-inline: auto;
	font-size: clamp(0.92rem, 1.25vw, 1rem);
	line-height: 1.55;
	color: rgba(30, 30, 30, 0.64);
}

.gc-home-premium .gc-home-hero-premium .gc-home-search-stage.gc-home-search-stage-focused {
	width: min(100%, 1080px);
	margin-inline: auto;
}

.gc-home-premium .gc-home-hero-premium .gc-home-search-card.gc-home-search-card-focused {
	gap: 14px;
	padding: clamp(14px, 1.6vw, 18px);
	border-radius: 30px;
	box-shadow:
		0 30px 80px rgba(15, 23, 42, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.gc-home-premium .gc-home-hero-premium .gc-home-search-card.gc-home-search-card-focused .gc-search-shell {
	gap: 14px;
}

.gc-home-premium .gc-home-hero-premium .gc-home-search-card.gc-home-search-card-focused .gc-search-main {
	min-height: 78px;
	padding-inline: 10px;
	box-shadow:
		0 18px 40px rgba(15, 23, 42, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

@media (max-width: 1024px) {
	.gc-home-premium .gc-home-hero-premium {
		padding-block: clamp(18px, 3.6vw, 34px);
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered {
		max-width: 860px;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered h1 {
		width: min(100%, 760px);
		max-width: 760px;
		font-size: clamp(36px, 5.9vw, 60px);
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-search-stage.gc-home-search-stage-focused {
		width: min(100%, 980px);
	}
}

@media (max-width: 767px) {
	.gc-home-premium .gc-home-hero-premium > .gc-container {
		width: min(100%, calc(100% - 24px));
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-hero-stack-v2 {
		gap: 12px;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered {
		max-width: 100%;
		gap: 8px;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered h1 {
		width: 100%;
		max-width: 100%;
		font-size: clamp(30px, 8.8vw, 44px);
		line-height: 0.98;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-hero-copy.gc-home-hero-copy-centered p {
		width: min(100%, 34ch);
		max-width: 34ch;
		font-size: 0.92rem;
		line-height: 1.5;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-search-stage.gc-home-search-stage-focused {
		width: 100%;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-search-card.gc-home-search-card-focused {
		padding: 12px;
		border-radius: 24px;
	}

	.gc-home-premium .gc-home-hero-premium .gc-home-search-card.gc-home-search-card-focused .gc-search-main {
		min-height: 68px;
	}
}

/* Company profile premium v2 */
.gc-app-shell-company {
	--gc-company-surface: rgba(255, 255, 255, 0.94);
}

.gc-app-shell-company .gc-breadcrumb-bar {
	padding-top: 6px;
	padding-bottom: 0;
}

.gc-app-shell-company .gc-app-feedback {
	padding-top: 0;
}

.gc-app-shell-company .gc-company-hero {
	padding-top: 0;
	padding-bottom: clamp(2px, 0.7vw, 6px);
	position: relative;
	isolation: isolate;
	overflow: clip;
	background: none;
	margin-top: 0;
}

.gc-app-shell-company .gc-company-hero::before {
	display: none;
}

.gc-app-shell-company .gc-company-cover {
	position: relative;
	display: block;
	width: 100%;
	height: clamp(160px, 18vw, 260px);
	min-height: 0;
	max-height: 260px;
	aspect-ratio: auto;
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.1) 32%, rgba(15, 23, 42, 0.38) 100%),
		var(--gc-company-cover-image, linear-gradient(135deg, #3f332f 0%, #8c1c26 100%));
	background-size: cover, cover;
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	border-radius: 0 0 28px 28px;
	overflow: hidden;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.gc-app-shell-company .gc-company-cover::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(15, 23, 42, 0.06) 34%, rgba(15, 23, 42, 0.18) 72%, rgba(15, 23, 42, 0.3) 100%);
	pointer-events: none;
}

.gc-app-shell-company .gc-company-hero-inner {
	grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
	margin-top: clamp(-54px, -4vw, -28px);
	gap: clamp(12px, 1.4vw, 20px);
	align-items: start;
	position: relative;
	z-index: 1;
	padding: clamp(15px, 1.5vw, 22px);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 243, 237, 0.94));
	box-shadow:
		0 24px 60px rgba(15, 23, 42, 0.12),
		0 1px 0 rgba(255, 255, 255, 0.72) inset;
	backdrop-filter: blur(20px);
	animation: gc-company-hero-float-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gc-app-shell-company .gc-company-hero-main {
	display: grid;
	gap: 16px;
	min-width: 0;
}

.gc-app-shell-company .gc-company-brand {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: clamp(14px, 1.8vw, 22px);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-app-shell-company .gc-company-brand-copy {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.gc-app-shell-company .gc-company-brand h1 {
	margin: 0;
	font-size: clamp(1.8rem, 3.7vw, 3rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.gc-app-shell-company .gc-company-hero-pills,
.gc-app-shell-company .gc-company-service-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-app-shell-company .gc-company-hero-pill {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.92);
	color: var(--gc-color-text);
	font-size: 0.84rem;
	font-weight: 700;
	box-shadow: inset 0 0 0 1px rgba(43, 43, 43, 0.06);
}

.gc-app-shell-company .gc-company-hero-pill-open {
	background: rgba(31, 122, 74, 0.12);
	color: var(--gc-color-success);
}

.gc-app-shell-company .gc-company-hero-pill-scheduled,
.gc-app-shell-company .gc-company-hero-pill-contact {
	background: rgba(201, 168, 92, 0.18);
	color: #8b6930;
}

.gc-app-shell-company .gc-company-hero-pill-muted {
	color: var(--gc-color-text-muted);
}

.gc-app-shell-company .gc-company-brand-meta {
	margin: 0;
	max-width: 60ch;
	font-size: 0.94rem;
	line-height: 1.58;
	color: rgba(43, 43, 43, 0.62);
}

.gc-app-shell-company .gc-company-trust-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gc-app-shell-company .gc-company-trust-card {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(246, 241, 235, 0.68);
	border: 1px solid rgba(43, 43, 43, 0.05);
}

.gc-app-shell-company .gc-company-trust-card strong {
	font-size: 1.05rem;
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.gc-app-shell-company .gc-company-trust-card span {
	color: var(--gc-color-text-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.gc-app-shell-company .gc-company-action-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-content: start;
	min-width: 0;
}

.gc-app-shell-company .gc-company-action-card {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 84px;
	padding: 14px 16px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	transform-origin: center;
	transition:
		transform 240ms ease,
		background 240ms ease,
		box-shadow 240ms ease,
		border-color 240ms ease,
		color 240ms ease;
}

.gc-app-shell-company .gc-company-action-card::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
	transition: opacity 0.24s ease;
	pointer-events: none;
}

.gc-app-shell-company .gc-company-action-card:hover::before,
.gc-app-shell-company .gc-company-action-card:focus-visible::before {
	opacity: 1;
}

.gc-app-shell-company .gc-company-action-title {
	font-size: 0.92rem;
	line-height: 1.18;
}

.gc-app-shell-company .gc-company-action-meta {
	font-size: 0.76rem;
	line-height: 1.45;
}

.gc-app-shell-company .gc-company-action-card-primary {
	border-color: rgba(140, 28, 38, 0.28);
	box-shadow:
		0 16px 36px rgba(140, 28, 38, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gc-app-shell-company .gc-company-action-card-primary:hover,
.gc-app-shell-company .gc-company-action-card-primary:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(140, 28, 38, 0.34);
	background: linear-gradient(135deg, rgba(151, 31, 43, 0.98), rgba(124, 24, 35, 0.98));
	box-shadow:
		0 22px 46px rgba(140, 28, 38, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.gc-app-shell-company .gc-company-action-card-whatsapp {
	border-color: rgba(23, 145, 79, 0.22);
	background:
		linear-gradient(135deg, #1f9d57 0%, #17874a 100%);
	box-shadow:
		0 16px 36px rgba(23, 135, 74, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gc-app-shell-company .gc-company-action-card-whatsapp .gc-company-action-icon {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.gc-app-shell-company .gc-company-action-card-whatsapp .gc-company-action-title,
.gc-app-shell-company .gc-company-action-card-whatsapp .gc-company-action-arrow {
	color: #fff;
}

.gc-app-shell-company .gc-company-action-card-whatsapp .gc-company-action-meta {
	color: rgba(255, 255, 255, 0.84);
}

.gc-app-shell-company .gc-company-action-card-whatsapp:hover,
.gc-app-shell-company .gc-company-action-card-whatsapp:focus-visible {
	transform: translate3d(0, -2px, 0);
	border-color: rgba(26, 168, 92, 0.34);
	background:
		linear-gradient(135deg, #21a960 0%, #189454 100%);
	box-shadow:
		0 22px 44px rgba(23, 135, 74, 0.24),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.gc-app-shell-company .gc-company-action-card-whatsapp:hover .gc-company-action-arrow,
.gc-app-shell-company .gc-company-action-card-whatsapp:focus-visible .gc-company-action-arrow {
	transform: translate3d(2px, 0, 0);
	color: rgba(255, 255, 255, 0.96);
}

.gc-app-shell-company .gc-company-action-card-primary:hover .gc-company-action-meta,
.gc-app-shell-company .gc-company-action-card-primary:focus-visible .gc-company-action-meta {
	color: rgba(255, 255, 255, 0.88);
}

.gc-app-shell-company .gc-company-action-card-primary:hover .gc-company-action-arrow,
.gc-app-shell-company .gc-company-action-card-primary:focus-visible .gc-company-action-arrow {
	color: rgba(255, 255, 255, 0.92);
	transform: translateX(3px);
}

.gc-app-shell-company .gc-company-body-section {
	padding-top: clamp(4px, 1vw, 10px);
}

.gc-app-shell-company .gc-company-action-icon {
	width: 50px;
	height: 50px;
	border-radius: 16px;
}

.gc-app-shell-company .gc-company-action-arrow {
	font-size: 0.94rem;
	align-self: center;
}

@keyframes gc-company-hero-float-in {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.gc-app-shell-company .gc-company-hero-inner {
		animation: none;
	}
}

.gc-app-shell-company .gc-single-grid {
	gap: 26px;
}

.gc-app-shell-company .gc-single-main,
.gc-app-shell-company .gc-single-sidebar,
.gc-app-shell-company .gc-company-sidebar-stack,
.gc-app-shell-company .gc-company-service-groups {
	display: grid;
	gap: 20px;
}

.gc-app-shell-company .gc-single-sidebar {
	align-content: start;
}

.gc-app-shell-company .gc-panel-card {
	border: 1px solid rgba(229, 231, 235, 0.84);
	border-radius: 28px;
	background: var(--gc-company-surface);
	box-shadow: 0 22px 54px rgba(15, 23, 42, 0.06);
}

.gc-app-shell-company .gc-company-overview-card,
.gc-app-shell-company .gc-company-services-card,
.gc-app-shell-company .gc-company-gallery-panel,
.gc-app-shell-company .gc-company-events-panel,
.gc-app-shell-company .gc-company-reviews-panel,
.gc-app-shell-company .gc-company-promotions-panel,
.gc-app-shell-company .gc-company-catalog-panel,
.gc-app-shell-company .gc-company-sidebar-card {
	padding: clamp(20px, 2.3vw, 28px);
}

.gc-app-shell-company .gc-panel-heading-inline > div {
	display: grid;
	gap: 6px;
}

.gc-app-shell-company .gc-panel-heading-inline h2 {
	margin: 0;
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	line-height: 1.06;
	letter-spacing: -0.04em;
}

.gc-app-shell-company .gc-panel-heading-inline p,
.gc-app-shell-company .gc-panel-heading-inline span {
	color: var(--gc-color-text-muted);
	font-size: 0.9rem;
	line-height: 1.6;
}

.gc-app-shell-company .gc-company-overview-facts {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-app-shell-company .gc-company-description {
	max-width: 72ch;
	font-size: 0.98rem;
	line-height: 1.85;
}

.gc-app-shell-company .gc-company-service-group {
	display: grid;
	gap: 12px;
}

.gc-app-shell-company .gc-company-service-group > strong {
	font-size: 0.84rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(43, 43, 43, 0.56);
}

.gc-app-shell-company .gc-company-service-chip {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.9);
	border: 1px solid rgba(43, 43, 43, 0.06);
	font-size: 0.88rem;
	font-weight: 600;
}

.gc-app-shell-company .gc-company-gallery-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.gc-app-shell-company .gc-company-gallery-item {
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: transparent;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gc-app-shell-company .gc-company-gallery-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.gc-app-shell-company .gc-company-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-app-shell-company .gc-company-gallery-item-overlay {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.58);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.gc-app-shell-company .gc-company-gallery-item:hover .gc-company-gallery-item-overlay,
.gc-app-shell-company .gc-company-gallery-item:focus-visible .gc-company-gallery-item-overlay {
	opacity: 1;
	transform: translateY(0);
}

.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-card {
	height: 100%;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-card-media {
	aspect-ratio: 16 / 10;
	min-height: 0;
}

.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-card-body {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-card h3 {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.2;
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-filters {
	padding: 16px;
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 22px;
	background: rgba(246, 241, 235, 0.58);
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-card {
	height: 100%;
	border: 1px solid rgba(229, 231, 235, 0.9);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-card-media {
	aspect-ratio: 1 / 1;
	min-height: 0;
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-card-body {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	gap: 12px;
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-card h3 {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.2;
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-card p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-add-button {
	min-width: 0;
	width: 100%;
	justify-content: center;
}

.gc-app-shell-company .gc-company-sidebar-card {
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.gc-app-shell-company .gc-company-detail-list {
	gap: 12px;
}

.gc-app-shell-company .gc-company-detail-item {
	padding: 18px;
	border-radius: 20px;
	background: rgba(246, 241, 235, 0.58);
	border: 1px solid rgba(43, 43, 43, 0.06);
}

.gc-app-shell-company .gc-company-social-shell {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

.gc-app-shell-company .gc-company-social-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.gc-app-shell-company .gc-company-social-link {
	justify-content: flex-start;
	min-height: 58px;
	padding: 12px 14px;
	border-radius: 18px;
}

.gc-gallery-viewer {
	position: fixed;
	inset: 0;
	z-index: 220;
	display: grid;
	place-items: center;
	padding: 18px;
}

.gc-gallery-viewer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.82);
	backdrop-filter: blur(8px);
}

.gc-gallery-viewer-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	width: min(1120px, 100%);
}

.gc-gallery-viewer-figure {
	display: grid;
	gap: 12px;
	margin: 0;
}

.gc-gallery-viewer-figure img {
	width: 100%;
	max-height: min(78vh, 900px);
	object-fit: contain;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.04);
}

.gc-gallery-viewer-figure figcaption {
	color: rgba(255, 255, 255, 0.82);
	text-align: center;
	font-size: 0.92rem;
}

.gc-gallery-viewer-close,
.gc-gallery-viewer-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.gc-gallery-viewer-close {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-64px);
	font-size: 1.6rem;
}

.gc-gallery-viewer-close:hover,
.gc-gallery-viewer-nav:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-1px);
}

body.gc-gallery-viewer-open {
	overflow: hidden;
}

@media (max-width: 1023px) {
	.gc-app-shell-company .gc-single-sidebar {
		order: -1;
	}
}

@media (max-width: 767px) {
	.gc-app-shell-company .gc-breadcrumb-bar {
		padding-top: 4px;
	}

	.gc-app-shell-company .gc-company-cover {
		height: clamp(160px, 42vw, 190px);
		max-height: 190px;
	}

	.gc-app-shell-company .gc-company-hero-inner {
		grid-template-columns: 1fr;
		margin-top: -26px;
		padding: 13px;
		border-radius: 26px;
	}

	.gc-app-shell-company .gc-company-brand {
		grid-template-columns: 72px minmax(0, 1fr);
		align-items: center;
	}

	.gc-app-shell-company .gc-company-brand h1 {
		font-size: clamp(1.55rem, 7vw, 2.2rem);
	}

	.gc-app-shell-company .gc-company-trust-row,
	.gc-app-shell-company .gc-company-overview-facts,
	.gc-app-shell-company .gc-company-action-grid,
	.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-grid,
	.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-grid,
	.gc-app-shell-company .gc-company-social-links {
		grid-template-columns: 1fr;
	}

	.gc-app-shell-company .gc-company-trust-card {
		padding: 12px 14px;
	}

	.gc-app-shell-company .gc-company-action-card {
		grid-template-columns: 46px minmax(0, 1fr) auto;
		min-height: 78px;
		padding: 14px;
	}

	.gc-app-shell-company .gc-company-action-icon {
		width: 46px;
		height: 46px;
		border-radius: 14px;
	}

	.gc-app-shell-company .gc-company-gallery-grid {
		grid-template-columns: 1fr;
	}

	.gc-app-shell-company .gc-company-gallery-grid .gc-gallery-item:first-child {
		min-height: 240px;
	}

	.gc-gallery-viewer {
		padding: 10px;
	}

	.gc-gallery-viewer-dialog {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.gc-gallery-viewer-close {
		top: 12px;
		right: 12px;
		transform: none;
	}

	.gc-gallery-viewer-nav {
		width: 46px;
		height: 46px;
	}

	.gc-gallery-viewer-prev {
		justify-self: start;
	}

	.gc-gallery-viewer-next {
		justify-self: end;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.gc-app-shell-company .gc-company-cover {
		height: clamp(190px, 18vw, 230px);
		max-height: 230px;
	}

	.gc-app-shell-company .gc-company-hero-inner {
		grid-template-columns: minmax(0, 1fr);
		margin-top: -40px;
	}

	.gc-app-shell-company .gc-company-action-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.gc-app-shell-company .gc-single-grid {
		grid-template-columns: minmax(0, 1fr) 360px;
	}

	.gc-app-shell-company .gc-company-hero-inner {
		grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
	}
}

@media (min-width: 1400px) {
	.gc-app-shell-company .gc-company-catalog-panel .gc-catalog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-app-shell-company .gc-company-promotions-panel .gc-promotion-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
.gc-plan-grid-premium {
	align-items: stretch;
}

.gc-plan-kicker {
	display: inline-flex;
	margin-top: 0.35rem;
	padding: 0.28rem 0.62rem;
	border-radius: 999px;
	background: rgba(138, 111, 63, 0.12);
	color: #705222;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-plan-comparison {
	margin-top: 2.25rem;
	padding: 1.75rem;
	border: 1px solid rgba(122, 92, 48, 0.12);
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(250, 244, 235, 0.92));
	box-shadow: 0 24px 48px rgba(73, 45, 17, 0.08);
}

.gc-plan-comparison-table-wrap {
	overflow-x: auto;
}

.gc-plan-comparison-table {
	width: 100%;
	border-collapse: collapse;
}

.gc-plan-comparison-table th,
.gc-plan-comparison-table td {
	padding: 0.95rem 1rem;
	border-bottom: 1px solid rgba(122, 92, 48, 0.1);
	text-align: left;
	vertical-align: top;
}

.gc-plan-comparison-table thead th {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #75542e;
}

.gc-card-plan-pro,
.gc-card-plan-premium {
	border-color: rgba(157, 113, 49, 0.18);
	box-shadow: 0 24px 48px rgba(62, 41, 18, 0.1);
}

.gc-card-plan-premium {
	background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 241, 228, 0.98));
}

.gc-discovery-card-plan-pro,
.gc-discovery-card-plan-premium {
	border-color: rgba(157, 113, 49, 0.16);
	box-shadow: 0 22px 46px rgba(72, 47, 22, 0.1);
}

.gc-discovery-card-badge-pro,
.gc-discovery-card-badge-premium,
.gc-discovery-card-badge-partner {
	background: rgba(130, 96, 44, 0.1);
	color: #6c4d21;
}

.gc-discovery-card-badge-partner {
	background: rgba(88, 127, 106, 0.12);
	color: #355d4a;
}

.gc-promotion-feed-card-plan-premium {
	border-color: rgba(165, 127, 60, 0.26);
	box-shadow: 0 32px 56px rgba(71, 48, 24, 0.14);
}
.gc-card,
.gc-discovery-card,
.gc-promo-list-card,
.gc-promotion-card,
.gc-promotion-feed-media,
.gc-company-brand-tools {
	position: relative;
}

.gc-company-brand-tools {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.gc-favorite-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: rgba(255, 255, 255, 0.92);
	color: #0f172a;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
	cursor: pointer;
}

.gc-favorite-toggle:hover,
.gc-favorite-toggle:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
	outline: none;
}

.gc-favorite-toggle:focus-visible {
	border-color: rgba(15, 23, 42, 0.32);
}

.gc-favorite-toggle.is-active {
	background: #0f172a;
	border-color: #0f172a;
	color: #ffffff;
}

.gc-favorite-toggle.is-loading {
	opacity: 0.72;
	pointer-events: none;
}

.gc-favorite-toggle-overlay {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 4;
}

.gc-favorite-toggle-inline {
	position: static;
	width: auto;
	min-width: 2.8rem;
	padding: 0 0.9rem;
	gap: 0.5rem;
}

.gc-favorite-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
}

.gc-favorite-toggle-copy {
	display: none;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.gc-favorite-toggle-inline .gc-favorite-toggle-copy {
	display: inline-block;
}

.gc-favorite-toggle-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.gc-app-ready .gc-card,
.gc-app-ready .gc-discovery-card,
.gc-app-ready .gc-promo-list-card,
.gc-app-ready .gc-promotion-card {
	touch-action: manipulation;
}

.gc-discovery-chip-shell,
.gc-search-fallback-panel {
	margin: 0 0 1.5rem;
	padding: 1.2rem 1.3rem;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 1.35rem;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.gc-discovery-chip-label {
	display: inline-block;
	margin: 0 0 0.8rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(15, 23, 42, 0.64);
}

.gc-discovery-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.gc-discovery-chip {
	display: inline-flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.8rem 1rem;
	border-radius: 1rem;
	text-decoration: none;
	background: rgba(248, 250, 252, 0.9);
	border: 1px solid rgba(15, 23, 42, 0.06);
	color: #0f172a;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gc-discovery-chip:hover,
.gc-discovery-chip:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(15, 23, 42, 0.18);
	box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
	outline: none;
}

.gc-discovery-chip strong {
	font-size: 0.92rem;
	font-weight: 700;
}

.gc-discovery-chip span {
	font-size: 0.78rem;
	color: rgba(15, 23, 42, 0.62);
}

.gc-search-discovery-stack {
	display: grid;
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.gc-search-discovery-grid,
.gc-company-related-grid {
	margin-top: 1rem;
}

.gc-search-section-panel {
	padding: 1.3rem;
}

.gc-company-discovery-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 0.9rem;
}

.gc-company-discovery-tag {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.gc-company-related-panel {
	margin-top: 1.25rem;
}

@media (max-width: 767px) {
	.gc-favorite-toggle-overlay {
		top: 0.8rem;
		right: 0.8rem;
	}

	.gc-favorite-toggle-inline {
		width: 2.8rem;
		padding: 0;
	}

	.gc-favorite-toggle-inline .gc-favorite-toggle-copy {
		display: none;
	}

	.gc-discovery-chip {
		width: 100%;
	}
}

/* Mobile app-like premium shell */

body.gc-mobile-menu-open,
body.gc-mobile-search-open {
	overflow: hidden;
	overscroll-behavior: none;
}

[data-gc-touch-feedback] {
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

[data-gc-touch-feedback].is-pressed {
	transform: scale(0.985);
}

.gc-site-actions-desktop {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gc-site-actions-mobile,
.gc-mobile-quick-search,
.gc-mobile-search-overlay,
.gc-mobile-bottom-nav {
	display: none;
}

.gc-site-header {
	will-change: transform, background-color, box-shadow;
}

.gc-site-header.is-hidden {
	transform: translateY(calc(-100% - 18px));
}

.gc-site-header.is-revealed {
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
	.gc-site-actions-desktop {
		display: flex;
	}

	.gc-site-actions-mobile,
	.gc-mobile-quick-search,
	.gc-mobile-search-overlay,
	.gc-mobile-bottom-nav,
	.gc-mobile-toggle {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gc-site-header,
	.gc-mobile-bottom-nav,
	.gc-mobile-bottom-nav-track,
	.gc-mobile-bottom-nav-item,
	.gc-mobile-search-sheet,
	.gc-mobile-search-overlay,
	.gc-mobile-quick-search,
	.gc-mobile-toggle,
	[data-gc-touch-feedback] {
		transition: none !important;
		animation: none !important;
	}
}

@media (max-width: 767px) {
	.gc-site-header {
		top: 0;
		padding: calc(7px + env(safe-area-inset-top, 0px)) 0 7px;
		background:
			linear-gradient(180deg, rgba(252, 249, 245, 0.98), rgba(248, 243, 237, 0.9)),
			rgba(255, 255, 255, 0.82);
		backdrop-filter: blur(22px);
		-webkit-backdrop-filter: blur(22px);
		border-bottom: 1px solid rgba(226, 232, 240, 0.84);
		box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
		transition:
			transform 0.2s ease,
			background-color 0.18s ease,
			box-shadow 0.18s ease,
			padding 0.18s ease;
	}

	.gc-site-header.is-scrolled {
		padding: calc(5px + env(safe-area-inset-top, 0px)) 0 5px;
		background:
			linear-gradient(180deg, rgba(252, 249, 245, 0.99), rgba(248, 243, 237, 0.95)),
			rgba(255, 255, 255, 0.9);
	}

	.gc-site-header-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 10px;
		min-height: 54px;
		align-items: center;
	}

	.gc-site-brand {
		min-width: 0;
		max-width: min(62vw, 220px);
	}

	.gc-site-brand-logo,
	.gc-site-brand-mark {
		flex: 0 0 auto;
	}

	.gc-site-brand-copy {
		min-width: 0;
		gap: 1px;
	}

	.gc-site-brand-copy strong {
		font-size: 0.9rem;
		line-height: 1.15;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.gc-site-brand-copy small {
		display: none;
	}

	.gc-site-actions {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		min-width: 0;
	}

	.gc-site-actions-desktop {
		display: none !important;
	}

	.gc-site-actions-mobile {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 48px;
		gap: 8px;
		align-items: center;
	}

	.gc-mobile-quick-search,
	.gc-mobile-toggle,
	.gc-mobile-search-close {
		appearance: none;
		display: inline-grid;
		place-items: center;
		width: 48px;
		min-width: 48px;
		height: 48px;
		padding: 0;
		border: 1px solid rgba(226, 232, 240, 0.92);
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.94);
		box-shadow:
			0 10px 24px rgba(15, 23, 42, 0.06),
			inset 0 1px 0 rgba(255, 255, 255, 0.96);
		color: #0f172a;
		transition:
			transform 0.14s ease,
			border-color 0.18s ease,
			background-color 0.18s ease,
			box-shadow 0.18s ease;
	}

	.gc-mobile-quick-search[aria-expanded="true"] {
		border-color: rgba(140, 28, 38, 0.18);
		background: rgba(255, 255, 255, 0.98);
		box-shadow:
			0 14px 30px rgba(15, 23, 42, 0.08),
			0 0 0 4px rgba(140, 28, 38, 0.05);
	}

	.gc-mobile-quick-search-icon,
	.gc-mobile-search-close span {
		display: inline-flex;
		width: 18px;
		height: 18px;
		align-items: center;
		justify-content: center;
	}

	.gc-mobile-quick-search-icon svg,
	.gc-mobile-search-close svg {
		width: 100%;
		height: 100%;
	}

	.gc-mobile-toggle span {
		display: block;
		width: 17px;
		height: 2px;
		margin: 1.5px 0;
		border-radius: 999px;
		background: currentColor;
	}

	.gc-mobile-menu {
		width: min(90vw, 360px);
		padding: calc(18px + env(safe-area-inset-top, 0px)) 18px calc(20px + env(safe-area-inset-bottom, 0px));
		border-left: 1px solid rgba(226, 232, 240, 0.9);
		background:
			radial-gradient(circle at top right, rgba(201, 168, 92, 0.14), transparent 32%),
			linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 240, 0.98));
		box-shadow: -24px 0 52px rgba(15, 23, 42, 0.14);
		-webkit-overflow-scrolling: touch;
	}

	.gc-mobile-menu-head,
	.gc-mobile-actions {
		gap: 12px;
	}

	.gc-mobile-menu-search .gc-primary-button,
	.gc-mobile-actions .gc-primary-button,
	.gc-mobile-actions .gc-secondary-button {
		min-height: 50px;
		justify-content: center;
	}

	.gc-mobile-search-overlay {
		position: fixed;
		inset: 0;
		z-index: 112;
		display: grid;
		align-items: end;
		opacity: 0;
		pointer-events: none;
		background: rgba(15, 23, 42, 0.26);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		transition: opacity 0.18s ease;
	}

	.gc-mobile-search-overlay.is-open {
		opacity: 1;
		pointer-events: auto;
	}

	.gc-mobile-search-overlay-backdrop {
		position: absolute;
		inset: 0;
	}

	.gc-mobile-search-sheet {
		position: relative;
		display: grid;
		gap: 18px;
		width: 100%;
		max-height: min(88vh, 760px);
		padding: 16px 16px calc(22px + env(safe-area-inset-bottom, 0px));
		background:
			radial-gradient(circle at top right, rgba(201, 168, 92, 0.12), transparent 34%),
			linear-gradient(180deg, rgba(252, 249, 245, 0.98), rgba(248, 243, 237, 0.98));
		border-radius: 30px 30px 0 0;
		box-shadow: 0 -22px 54px rgba(15, 23, 42, 0.16);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateY(calc(28px + var(--gc-mobile-search-swipe-offset, 0px)));
		transition: transform 0.22s ease;
	}

	.gc-mobile-search-overlay.is-open .gc-mobile-search-sheet {
		transform: translateY(var(--gc-mobile-search-swipe-offset, 0px));
	}

	.gc-mobile-search-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding-bottom: 4px;
	}

	.gc-mobile-search-heading {
		display: grid;
		gap: 6px;
		min-width: 0;
	}

	.gc-mobile-search-kicker,
	.gc-mobile-search-section-label {
		font-size: 0.74rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: rgba(100, 116, 139, 0.92);
	}

	.gc-mobile-search-heading h2 {
		margin: 0;
		font-size: 1.18rem;
		line-height: 1.16;
		color: #0f172a;
	}

	.gc-mobile-search-body,
	.gc-mobile-search-discovery,
	.gc-mobile-search-shortcuts {
		display: grid;
		gap: 14px;
		min-width: 0;
	}

	.gc-mobile-search-form-shell .gc-search-form {
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.gc-mobile-search-form-shell .gc-search-shell,
	.gc-mobile-search-form-shell .gc-search-command,
	.gc-mobile-search-form-shell .gc-search-command-actions {
		display: grid;
		gap: 12px;
		min-width: 0;
	}

	.gc-mobile-search-form-shell .gc-search-main {
		min-height: 64px;
		padding: 0 10px 0 16px;
		border: 1px solid rgba(226, 232, 240, 0.95);
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow:
			0 16px 34px rgba(15, 23, 42, 0.07),
			inset 0 1px 0 rgba(255, 255, 255, 0.98);
	}

	.gc-mobile-search-form-shell .gc-search-main:focus-within {
		border-color: rgba(140, 28, 38, 0.16);
		box-shadow:
			0 16px 34px rgba(15, 23, 42, 0.08),
			0 0 0 4px rgba(140, 28, 38, 0.05);
	}

	.gc-mobile-search-form-shell .gc-search-main input {
		min-width: 0;
		font-size: 1rem;
	}

	.gc-mobile-search-form-shell .gc-search-command-actions {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	}

	.gc-mobile-search-form-shell .gc-search-filters-toggle,
	.gc-mobile-search-form-shell .gc-search-command-actions .gc-primary-button,
	.gc-mobile-search-form-shell .gc-search-filter-actions .gc-link-button {
		min-height: 48px;
		border-radius: 16px;
	}

	.gc-mobile-search-form-shell .gc-search-filters-panel {
		padding: 14px;
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.68);
		border: 1px solid rgba(226, 232, 240, 0.9);
	}

	.gc-mobile-search-form-shell .gc-search-grid-advanced {
		gap: 12px;
	}

	.gc-mobile-search-form-shell .gc-search-suggestions {
		max-height: min(52vh, 340px);
		border-radius: 20px;
	}

	.gc-mobile-search-chip-row {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}

	.gc-mobile-search-chip {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding: 0 16px;
		border-radius: 999px;
		background: rgba(140, 28, 38, 0.08);
		border: 1px solid rgba(140, 28, 38, 0.08);
		color: var(--gc-color-primary);
		font-size: 0.84rem;
		font-weight: 700;
		text-decoration: none;
		transition:
			transform 0.14s ease,
			background-color 0.18s ease,
			border-color 0.18s ease;
	}

	.gc-mobile-search-chip-soft {
		background: rgba(255, 255, 255, 0.76);
		border-color: rgba(226, 232, 240, 0.9);
		color: #1e293b;
	}

	.gc-app-main {
		padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
		scroll-padding-top: 82px;
	}

	.gc-site-footer {
		padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
	}

	.gc-mobile-bottom-nav {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 104;
		display: block;
		padding:
			0 max(10px, calc(env(safe-area-inset-right, 0px) + 10px))
			max(10px, calc(env(safe-area-inset-bottom, 0px) + 10px))
			max(10px, calc(env(safe-area-inset-left, 0px) + 10px));
		pointer-events: none;
		box-sizing: border-box;
	}

	.gc-mobile-bottom-nav-track {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 6px;
		width: min(100%, 540px);
		margin: 0 auto;
		padding: 8px;
		border: 1px solid rgba(226, 232, 240, 0.9);
		border-radius: 26px;
		background:
			linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 245, 240, 0.98)),
			rgba(255, 255, 255, 0.88);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		box-shadow:
			0 18px 42px rgba(15, 23, 42, 0.12),
			inset 0 1px 0 rgba(255, 255, 255, 0.95);
		pointer-events: auto;
		box-sizing: border-box;
	}

	.gc-mobile-bottom-nav-item {
		appearance: none;
		display: grid;
		grid-template-rows: 38px minmax(11px, auto);
		align-items: center;
		justify-items: center;
		align-content: center;
		gap: 4px;
		min-width: 0;
		min-height: 60px;
		padding: 6px 3px 7px;
		border: 0;
		border-radius: 18px;
		background: transparent;
		color: rgba(71, 85, 105, 0.96);
		text-decoration: none;
		text-align: center;
		font: inherit;
		font-size: 0.69rem;
		font-weight: 700;
		letter-spacing: 0.01em;
		line-height: 1;
		box-sizing: border-box;
		transition:
			transform 0.16s ease,
			color 0.18s ease,
			background-color 0.18s ease,
			box-shadow 0.18s ease;
	}

	.gc-mobile-bottom-nav-item.is-active,
	.gc-mobile-bottom-nav-item[aria-expanded="true"] {
		background: rgba(140, 28, 38, 0.08);
		color: var(--gc-color-primary);
		box-shadow: inset 0 0 0 1px rgba(140, 28, 38, 0.08);
	}

	.gc-mobile-bottom-nav-icon {
		display: inline-grid;
		place-items: center;
		width: 38px;
		height: 38px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow:
			0 8px 18px rgba(15, 23, 42, 0.08),
			inset 0 1px 0 rgba(255, 255, 255, 0.95);
		color: currentColor;
	}

	.gc-mobile-bottom-nav-icon svg {
		width: 19px;
		height: 19px;
		flex: 0 0 auto;
	}

	.gc-mobile-bottom-nav-label {
		display: block;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 0.66rem;
		line-height: 1.08;
	}

	.gc-mobile-bottom-nav-item.is-active .gc-mobile-bottom-nav-icon,
	.gc-mobile-bottom-nav-item[aria-expanded="true"] .gc-mobile-bottom-nav-icon {
		background: rgba(140, 28, 38, 0.12);
		color: var(--gc-color-primary);
	}

	.gc-mobile-bottom-nav-item:focus-visible,
	.gc-mobile-quick-search:focus-visible,
	.gc-mobile-toggle:focus-visible,
	.gc-mobile-search-close:focus-visible {
		outline: 0;
		box-shadow:
			0 0 0 3px rgba(140, 28, 38, 0.14),
			0 14px 30px rgba(15, 23, 42, 0.08);
	}

	.gc-primary-button,
	.gc-secondary-button,
	.gc-link-button,
	.gc-card-actions .gc-primary-button,
	.gc-card-actions .gc-secondary-button,
	.gc-company-actions .gc-primary-button,
	.gc-company-actions .gc-secondary-button,
	.gc-discovery-card-footer .gc-link-button,
	.gc-discovery-card-footer .gc-primary-button {
		min-height: 48px;
	}

	.gc-card,
	.gc-discovery-card,
	.gc-catalog-card,
	.gc-promo-list-card,
	.gc-promotion-card,
	.gc-event-card {
		border-radius: 24px;
	}

	.gc-card-body,
	.gc-discovery-card-body,
	.gc-catalog-card-body,
	.gc-promo-list-body,
	.gc-promotion-card-body,
	.gc-event-card-body {
		gap: 14px;
		padding: 18px;
	}

	.gc-results-grid,
	.gc-promotion-grid,
	.gc-event-grid,
	.gc-home-premium-grid-cards,
	.gc-home-featured-grid {
		gap: 14px;
	}

	.gc-card-actions,
	.gc-company-actions,
	.gc-discovery-card-footer {
		gap: 10px;
	}

	.gc-card-meta,
	.gc-discovery-card-meta,
	.gc-discovery-card-footer {
		row-gap: 8px;
	}
}

@media (max-width: 359px) {
	.gc-site-brand {
		max-width: min(56vw, 176px);
	}

	.gc-site-brand-copy strong {
		font-size: 0.84rem;
	}

	.gc-site-actions-mobile {
		gap: 6px;
	}

	.gc-mobile-bottom-nav-track {
		gap: 4px;
		padding: 7px;
	}

	.gc-mobile-bottom-nav-item {
		padding-inline: 2px;
	}

	.gc-mobile-bottom-nav-label {
		font-size: 0.62rem;
	}
}

/* Stage 1 premium app-like refinement */

:root {
	--gc-premium-shadow-soft:
		0 10px 22px rgba(15, 23, 42, 0.04),
		0 2px 8px rgba(15, 23, 42, 0.02);
	--gc-premium-shadow-card:
		0 14px 30px rgba(15, 23, 42, 0.05),
		0 4px 14px rgba(15, 23, 42, 0.028);
	--gc-premium-shadow-card-hover:
		0 20px 40px rgba(15, 23, 42, 0.06),
		0 8px 20px rgba(15, 23, 42, 0.032);
	--gc-premium-shadow-glass:
		0 16px 42px rgba(15, 23, 42, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.86);
	--gc-premium-surface:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 241, 0.96));
	--gc-premium-surface-soft:
		linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 244, 238, 0.72));
	--gc-premium-ring: 0 0 0 5px rgba(140, 28, 38, 0.05);
}

.gc-site-header {
	padding: 12px 0;
	background:
		linear-gradient(180deg, rgba(249, 245, 239, 0.94), rgba(246, 241, 235, 0.82)),
		rgba(255, 255, 255, 0.76);
	border-bottom-color: rgba(226, 232, 240, 0.72);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.gc-site-header.is-scrolled {
	padding: 10px 0;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.gc-site-header-inner {
	min-height: 64px;
	gap: 14px;
}

.gc-site-brand-copy strong {
	font-weight: 730;
	letter-spacing: -0.028em;
}

.gc-site-brand-copy small {
	color: rgba(71, 85, 105, 0.74);
	letter-spacing: 0;
}

.gc-app-shell-home .gc-home-search-card,
.gc-home-search-card-focused,
.gc-app-shell-home .gc-home-hero-aside,
.gc-results-toolbar-discovery {
	border-color: rgba(226, 232, 240, 0.72);
	background: var(--gc-premium-surface-soft);
	box-shadow: var(--gc-premium-shadow-glass);
}

.gc-app-shell-home .gc-home-search-card,
.gc-home-search-card-focused {
	gap: 14px;
}

.gc-app-shell-home .gc-home-search-card-head h2,
.gc-app-shell-home .gc-home-categories-intro h2,
.gc-app-shell-home .gc-home-final-copy h2 {
	font-size: clamp(1.68rem, 2.6vw, 2.38rem);
	line-height: 1.02;
}

.gc-app-shell-home .gc-home-search-card-head p,
.gc-app-shell-home .gc-home-categories-intro p,
.gc-app-shell-home .gc-home-final-copy p {
	max-width: 58ch;
	font-size: 0.96rem;
	line-height: 1.58;
	color: rgba(71, 85, 105, 0.82);
}

.gc-search-main {
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 244, 0.96));
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow:
		0 14px 32px rgba(15, 23, 42, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease,
		background-color 180ms ease;
}

.gc-search-main:hover {
	transform: translateY(-1px);
	border-color: rgba(140, 28, 38, 0.12);
	box-shadow:
		0 18px 36px rgba(15, 23, 42, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.gc-search-main:focus-within {
	transform: translateY(-1px);
	border-color: rgba(140, 28, 38, 0.18);
	box-shadow:
		0 18px 38px rgba(15, 23, 42, 0.07),
		var(--gc-premium-ring),
		inset 0 1px 0 rgba(255, 255, 255, 0.98);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 249, 246, 0.98));
}

.gc-search-main-icon {
	width: 18px;
	height: 18px;
	margin-right: 12px;
	border-width: 2px;
	border-color: rgba(51, 65, 85, 0.44);
	opacity: 0.86;
}

.gc-search-main-icon::after {
	width: 8px;
	height: 2px;
	right: -5px;
	bottom: -4px;
	background: rgba(51, 65, 85, 0.44);
}

.gc-search-main input {
	font-size: 0.98rem;
	font-weight: 500;
	letter-spacing: -0.012em;
}

.gc-search-main input::placeholder {
	color: rgba(100, 116, 139, 0.84);
	font-weight: 500;
}

.gc-search-inline-submit,
.gc-search-command-actions .gc-primary-button {
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gc-search-suggestions {
	border: 1px solid rgba(226, 232, 240, 0.78);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 244, 0.97));
	box-shadow:
		0 18px 36px rgba(15, 23, 42, 0.07),
		0 4px 18px rgba(15, 23, 42, 0.03);
}

.gc-search-suggestion {
	padding-block: 12px;
}

.gc-search-suggestion:hover,
.gc-search-suggestion.is-active {
	background: rgba(140, 28, 38, 0.05);
}

.gc-card,
.gc-discovery-card,
.gc-promotion-card,
.gc-promo-list-card,
.gc-promotion-feed-card,
.gc-event-card {
	border-color: rgba(226, 232, 240, 0.78);
	background: var(--gc-premium-surface);
	box-shadow: var(--gc-premium-shadow-card);
}

.gc-card:hover,
.gc-discovery-card:hover,
.gc-promotion-card:hover,
.gc-promo-list-card:hover,
.gc-promotion-feed-card:hover,
.gc-event-card:hover {
	border-color: rgba(226, 232, 240, 0.92);
	box-shadow: var(--gc-premium-shadow-card-hover);
}

.gc-card-body,
.gc-discovery-card-body,
.gc-promotion-card-body,
.gc-promo-list-body,
.gc-promotion-feed-body,
.gc-event-card-body {
	gap: 12px;
}

.gc-card h3,
.gc-discovery-card-copy h3,
.gc-promotion-card h3,
.gc-promo-list-card h3,
.gc-promotion-feed-copy h3,
.gc-event-card h3 {
	font-weight: 720;
	letter-spacing: -0.026em;
}

.gc-card p,
.gc-discovery-card-body p,
.gc-promotion-card p,
.gc-promo-list-card p,
.gc-promotion-feed-copy p,
.gc-event-card p {
	color: rgba(71, 85, 105, 0.78);
}

.gc-card-logo,
.gc-discovery-card-logo {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 235, 0.92));
	box-shadow:
		0 8px 18px rgba(15, 23, 42, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.gc-card-logo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-weight: 700;
	font-size: 1.25rem;
	border-radius: inherit;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.gc-card-tag,
.gc-card-meta span,
.gc-discovery-card-category,
.gc-discovery-card-rating,
.gc-discovery-card-status,
.gc-promotion-price,
.gc-promotion-expiry {
	border-color: rgba(226, 232, 240, 0.82);
	background: rgba(255, 255, 255, 0.76);
	color: rgba(51, 65, 85, 0.82);
}

.gc-card-meta span {
	padding: 6px 10px;
}

.gc-card-actions,
.gc-company-actions,
.gc-discovery-card-footer,
.gc-promotion-feed-actions {
	gap: 10px;
}

.gc-card-actions .gc-secondary-button,
.gc-discovery-card-footer .gc-link-button,
.gc-promotion-feed-company-link {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(226, 232, 240, 0.88);
	color: rgba(51, 65, 85, 0.9);
}

.gc-discovery-card-logo {
	width: 54px;
	height: 54px;
	border-radius: 18px;
}

.gc-discovery-card-copy {
	gap: 6px;
}

.gc-discovery-card-copy h3 {
	font-size: 1.08rem;
	line-height: 1.14;
}

.gc-discovery-card-meta {
	font-size: 0.81rem;
	color: rgba(100, 116, 139, 0.82);
}

.gc-discovery-card-badge {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(226, 232, 240, 0.82);
	color: rgba(51, 65, 85, 0.82);
}

.gc-discovery-card-badge-premium,
.gc-discovery-card-badge-pro,
.gc-discovery-card-badge-partner {
	background: color-mix(in srgb, var(--gc-color-accent) 9%, white);
	border-color: color-mix(in srgb, var(--gc-color-accent) 18%, white);
	color: color-mix(in srgb, var(--gc-color-accent) 72%, #364152);
}

.gc-discovery-card-status-open {
	background: rgba(31, 122, 74, 0.08);
	border-color: rgba(31, 122, 74, 0.14);
	color: var(--gc-color-success);
}

.gc-discovery-card-status-scheduled,
.gc-discovery-card-status-contact {
	background: rgba(201, 168, 92, 0.1);
	border-color: rgba(201, 168, 92, 0.16);
	color: #8b6930;
}

.gc-discovery-card-status-muted {
	background: rgba(248, 244, 239, 0.88);
}

.gc-discovery-card-status-warning {
	background: rgba(191, 135, 24, 0.12);
	border-color: rgba(191, 135, 24, 0.18);
	color: #8a650f;
}

.gc-discovery-card-status-info {
	background: rgba(28, 100, 242, 0.08);
	border-color: rgba(28, 100, 242, 0.14);
	color: #1d4ed8;
}

.gc-discovery-card-status-closed {
	background: rgba(185, 28, 28, 0.08);
	border-color: rgba(185, 28, 28, 0.14);
	color: #b42318;
}

.gc-promotion-card-media,
.gc-promo-list-media,
.gc-promotion-feed-media {
	background:
		linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.16)),
		linear-gradient(135deg, rgba(140, 28, 38, 0.84), rgba(201, 168, 92, 0.64));
}

.gc-promotion-card-top,
.gc-promo-list-footer,
.gc-promotion-feed-footer {
	gap: 10px;
}

.gc-promotion-feed-card {
	border-radius: 28px;
}

.gc-promotion-feed-badge,
.gc-promotion-feed-expiry {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.gc-promotion-feed-badge {
	background: rgba(255, 255, 255, 0.8);
}

.gc-promotion-feed-badge-hot {
	background: rgba(140, 28, 38, 0.88);
}

.gc-promotion-feed-badge-price {
	background: rgba(15, 23, 42, 0.72);
}

.gc-promotion-feed-company-mark {
	box-shadow:
		0 8px 18px rgba(15, 23, 42, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gc-promotion-feed-category,
.gc-category-pill,
.gc-home-category-card,
.gc-home-category-chip,
.gc-category-heading-badge {
	--gc-category-surface: color-mix(in srgb, var(--gc-category-surface) 84%, white);
	--gc-category-border: color-mix(in srgb, var(--gc-category-accent) 14%, white);
	--gc-category-shadow: color-mix(in srgb, var(--gc-category-accent) 10%, transparent);
}

.gc-home-category-chip,
.gc-category-pill,
.gc-home-category-card {
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.gc-home-category-chip {
	min-height: 36px;
	padding-inline: 12px;
	background: color-mix(in srgb, var(--gc-category-surface) 88%, white);
	color: color-mix(in srgb, var(--gc-category-accent) 62%, #475569);
}

.gc-home-category-chip:hover {
	background: color-mix(in srgb, var(--gc-category-accent) 8%, white);
	color: color-mix(in srgb, var(--gc-category-accent) 78%, #364152);
}

.gc-category-pill,
.gc-home-category-card {
	background:
		radial-gradient(circle at top right, var(--gc-category-shadow), transparent 42%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 247, 0.95));
}

.gc-category-pill:hover,
.gc-home-category-card:hover {
	box-shadow:
		0 18px 34px rgba(15, 23, 42, 0.06),
		0 6px 18px var(--gc-category-shadow);
}

.gc-category-icon,
.gc-home-category-card-mark,
.gc-category-heading-badge-icon {
	background: color-mix(in srgb, var(--gc-category-accent) 9%, white);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.gc-home-category-card strong,
.gc-category-pill strong {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.gc-home-category-card small,
.gc-category-pill small {
	color: color-mix(in srgb, var(--gc-category-accent) 58%, #64748b);
}

.gc-results-toolbar-discovery {
	padding: 20px 22px;
	border-radius: 24px;
}

.gc-results-toolbar-copy strong {
	font-size: 1.34rem;
	line-height: 1;
}

.gc-home-premium-grid-cards,
.gc-home-featured-grid,
.gc-promotion-grid,
.gc-results-grid {
	row-gap: 18px;
}

.gc-home-premium .gc-home-section,
.gc-app-shell-home .gc-home-section {
	position: relative;
}

.gc-home-premium .gc-home-section::after,
.gc-app-shell-home .gc-home-section::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.9), transparent);
	opacity: 0.6;
	pointer-events: none;
}

.gc-home-premium .gc-home-section:last-child::after,
.gc-app-shell-home .gc-home-section:last-child::after {
	display: none;
}

.gc-skeleton-card,
.gc-skeleton-line,
.gc-promotion-feed-card-skeleton .gc-promotion-feed-media,
.gc-promotion-feed-skeleton-line,
.gc-promotion-feed-skeleton-pill {
	border-radius: 20px;
	filter: saturate(0.92);
}

.gc-mobile-bottom-nav-track {
	border-color: rgba(226, 232, 240, 0.74);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 239, 0.96)),
		rgba(255, 255, 255, 0.88);
	box-shadow:
		0 14px 30px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.gc-mobile-bottom-nav-item {
	position: relative;
	gap: 3px;
	color: rgba(71, 85, 105, 0.9);
}

.gc-mobile-bottom-nav-item::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 4px;
	width: 16px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	opacity: 0;
	transform: translateX(-50%) scaleX(0.7);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.gc-mobile-bottom-nav-item.is-active::after,
.gc-mobile-bottom-nav-item[aria-expanded="true"]::after {
	opacity: 0.34;
	transform: translateX(-50%) scaleX(1);
}

.gc-mobile-bottom-nav-icon {
	box-shadow:
		0 8px 18px rgba(15, 23, 42, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.gc-mobile-bottom-nav-item.is-active .gc-mobile-bottom-nav-icon,
.gc-mobile-bottom-nav-item[aria-expanded="true"] .gc-mobile-bottom-nav-icon {
	background: rgba(140, 28, 38, 0.1);
	box-shadow:
		0 10px 20px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

@media (max-width: 767px) {
	.gc-site-header {
		padding: calc(6px + env(safe-area-inset-top, 0px)) 0 6px;
	}

	.gc-site-header.is-scrolled {
		padding: calc(4px + env(safe-area-inset-top, 0px)) 0 4px;
	}

	.gc-site-header-inner {
		min-height: 50px;
		gap: 8px;
	}

	.gc-home-hero,
	.gc-company-hero {
		padding-block: 26px 16px;
	}

	.gc-app-shell-home .gc-home-search-card,
	.gc-home-search-card-focused,
	.gc-results-toolbar-discovery {
		padding: 16px;
		border-radius: 22px;
	}

	.gc-home-search-card-focused .gc-search-main,
	.gc-home-premium .gc-home-hero-premium .gc-home-search-card.gc-home-search-card-focused .gc-search-main,
	.gc-mobile-search-form-shell .gc-search-main {
		min-height: 62px;
		border-radius: 22px;
	}

	.gc-home-search-card-focused .gc-search-inline-submit,
	.gc-search-inline-submit {
		min-height: 50px;
		border-radius: 16px;
	}

	.gc-card-body,
	.gc-discovery-card-body,
	.gc-promotion-card-body,
	.gc-promo-list-body,
	.gc-promotion-feed-body,
	.gc-event-card-body {
		padding: 16px;
	}

	.gc-discovery-card-copy h3,
	.gc-card h3,
	.gc-promotion-card h3,
	.gc-promo-list-card h3,
	.gc-promotion-feed-copy h3 {
		font-size: 1.02rem;
	}

	.gc-home-premium-grid-cards,
	.gc-home-featured-grid,
	.gc-promotion-grid,
	.gc-results-grid {
		row-gap: 14px;
	}

	.gc-mobile-bottom-nav-track {
		padding: 7px;
	}

	.gc-mobile-bottom-nav-item {
		min-height: 58px;
		padding-block: 5px 6px;
	}

	.gc-mobile-bottom-nav-label {
		font-size: 0.64rem;
	}
}

/* Stage 2 home component refinement */

.gc-site-brand-visual {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.gc-site-brand-copy {
	gap: 2px;
}

.gc-site-brand-copy strong {
	font-size: 0.92rem;
	line-height: 1.05;
	letter-spacing: -0.028em;
}

.gc-site-brand-copy small {
	font-size: 0.68rem;
	line-height: 1.2;
	color: rgba(71, 85, 105, 0.72);
}

.gc-site-actions-mobile-shell {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px;
	border: 1px solid rgba(226, 232, 240, 0.82);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.gc-mobile-quick-search {
	gap: 8px;
	padding-inline: 12px;
	min-width: auto;
	border-radius: 14px;
}

.gc-mobile-quick-search-label {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--gc-color-text);
}

.gc-mobile-toggle {
	width: 46px;
	height: 46px;
	border-radius: 14px;
}

.gc-home-hero-premium-grid-app {
	grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
	gap: 22px;
	align-items: stretch;
}

.gc-home-hero-stack-app,
.gc-home-search-stage-app {
	display: grid;
	gap: 18px;
}

.gc-home-hero-copy-app {
	align-content: start;
	text-align: left;
	padding: 16px 4px 8px;
}

.gc-home-hero-copy-app .gc-eyebrow {
	display: inline-flex;
	margin-bottom: 12px;
}

.gc-home-hero-copy-app h1 {
	max-width: 9.2ch;
	margin: 0;
	font-size: clamp(2.8rem, 4.9vw, 4.9rem);
	line-height: 0.92;
	letter-spacing: -0.075em;
}

.gc-home-hero-copy-app p {
	max-width: 50ch;
	margin: 16px 0 0;
	font-size: 1.02rem;
	line-height: 1.72;
}

.gc-home-hero-metrics-app {
	margin: 22px 0 0;
	max-width: none;
}

.gc-home-hero-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.gc-home-search-stage-app {
	grid-template-columns: minmax(0, 1fr) minmax(248px, 0.54fr);
	align-items: stretch;
}

.gc-home-search-card-app {
	align-content: start;
	padding: 22px;
	border-radius: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 246, 241, 0.9)),
		rgba(255, 255, 255, 0.84);
	box-shadow:
		0 28px 64px rgba(15, 23, 42, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.gc-home-search-card-head-app {
	text-align: left;
	gap: 6px;
}

.gc-home-search-card-head-app strong {
	font-size: 0.96rem;
	font-weight: 500;
	line-height: 1.55;
	color: rgba(71, 85, 105, 0.92);
}

.gc-home-search-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2px;
}

.gc-home-search-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(71, 85, 105, 0.78);
}

.gc-search-form-hero .gc-search-command {
	display: block;
}

.gc-search-form-hero .gc-search-main {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 78px;
	padding: 12px 14px 12px 18px;
	border-radius: 28px;
	border-color: rgba(203, 213, 225, 0.92);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.95));
	box-shadow:
		0 18px 44px rgba(15, 23, 42, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease;
}

.gc-search-form-hero .gc-search-main:hover,
.gc-search-form-hero .gc-search-main:focus-within {
	transform: translateY(-1px);
	border-color: rgba(140, 28, 38, 0.18);
	box-shadow:
		0 22px 52px rgba(15, 23, 42, 0.08),
		0 0 0 4px rgba(140, 28, 38, 0.06);
}

.gc-search-form-hero .gc-search-main-copy {
	display: grid;
	gap: 2px;
}

.gc-search-main-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(100, 116, 139, 0.84);
}

.gc-search-form-hero .gc-search-main input {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: -0.022em;
}

.gc-search-form-hero .gc-search-main input::placeholder {
	color: rgba(100, 116, 139, 0.88);
}

.gc-search-form-hero .gc-search-inline-submit {
	min-height: 52px;
	padding-inline: 18px;
	border-radius: 18px;
	font-size: 0.88rem;
	font-weight: 700;
	box-shadow: 0 14px 26px rgba(140, 28, 38, 0.16);
}

.gc-home-search-topic-grid-hero {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-home-search-topic-grid-hero .gc-home-search-topic {
	gap: 6px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(247, 243, 238, 0.72);
}

.gc-home-search-topic-grid-hero .gc-home-search-topic strong {
	font-size: 0.92rem;
}

.gc-home-hero-side-panel {
	display: grid;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(226, 232, 240, 0.82);
	border-radius: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 241, 235, 0.84));
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.06);
}

.gc-home-hero-side-kicker {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(100, 116, 139, 0.78);
}

.gc-home-hero-side-list {
	display: grid;
	gap: 10px;
}

.gc-home-hero-side-card {
	display: grid;
	gap: 4px;
	padding: 14px 14px 13px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.82);
}

.gc-home-hero-side-card strong {
	font-size: 0.9rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.gc-home-hero-side-card p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: rgba(71, 85, 105, 0.84);
}

.gc-home-category-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: 18px;
	align-items: stretch;
}

.gc-home-category-grid-premium-app {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-home-category-card-featured {
	align-content: space-between;
	min-height: 100%;
	padding: 28px;
	border-radius: 32px;
	background:
		radial-gradient(circle at top right, var(--gc-category-shadow, rgba(140, 28, 38, 0.14)), transparent 42%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.94));
}

.gc-home-category-card-hero-head,
.gc-home-category-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gc-home-category-card-copy {
	display: grid;
	gap: 8px;
}

.gc-home-category-card-copy p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.62;
	color: rgba(71, 85, 105, 0.86);
}

.gc-home-category-card-badge,
.gc-home-category-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.gc-home-category-card-badge {
	background: rgba(140, 28, 38, 0.08);
	color: var(--gc-color-primary);
}

.gc-home-category-card-action {
	background: rgba(255, 255, 255, 0.86);
	color: var(--gc-category-accent, var(--gc-color-primary));
	box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.gc-home-category-card-compact {
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	padding: 18px;
	border-radius: 24px;
}

.gc-home-category-card-compact .gc-home-category-card-copy {
	gap: 4px;
}

.gc-home-category-card-arrow {
	font-size: 1rem;
	font-weight: 700;
	color: rgba(71, 85, 105, 0.62);
}

.gc-home-city-strip {
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px solid rgba(226, 232, 240, 0.74);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.gc-home-promo-surface {
	display: grid;
	gap: 18px;
	padding: 24px;
	border: 1px solid rgba(226, 232, 240, 0.74);
	border-radius: 34px;
	background:
		radial-gradient(circle at top right, rgba(140, 28, 38, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 246, 241, 0.92));
	box-shadow: 0 24px 56px rgba(15, 23, 42, 0.06);
}

.gc-home-section-head-split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 0;
}

.gc-home-promo-intro {
	display: grid;
	gap: 10px;
	max-width: 420px;
}

.gc-home-promo-intro p {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.64;
	color: rgba(71, 85, 105, 0.88);
}

.gc-home-promo-list-app {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.gc-promo-list-card {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	border: 1px solid rgba(226, 232, 240, 0.78);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 241, 0.94));
	box-shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease;
}

.gc-promo-list-card:hover {
	transform: translateY(-3px);
	border-color: rgba(140, 28, 38, 0.14);
	box-shadow: 0 26px 56px rgba(15, 23, 42, 0.08);
}

.gc-promo-list-media {
	position: relative;
	min-height: 214px;
}

.gc-promo-list-media-link {
	display: block;
	height: 100%;
	color: inherit;
}

.gc-promo-list-media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 56%;
	background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.44));
	pointer-events: none;
}

.gc-promo-list-body {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 18px;
}

.gc-home-promo-brand-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gc-home-promo-brand-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	text-decoration: none;
	color: inherit;
}

.gc-home-promo-brand-logo {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(246, 241, 235, 0.96);
	box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.82);
	overflow: hidden;
	font-weight: 800;
}

.gc-home-promo-brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-home-promo-brand-copy {
	display: grid;
	min-width: 0;
}

.gc-home-promo-brand-copy strong {
	font-size: 0.88rem;
	line-height: 1.14;
	letter-spacing: -0.018em;
}

.gc-home-promo-brand-copy small {
	font-size: 0.74rem;
	line-height: 1.3;
	color: rgba(100, 116, 139, 0.84);
}

.gc-home-promo-category,
.gc-home-promo-meta-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.96);
	color: rgba(71, 85, 105, 0.9);
	font-size: 0.72rem;
	font-weight: 700;
}

.gc-home-promo-copy h3 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.18;
	letter-spacing: -0.032em;
}

.gc-home-promo-copy p {
	margin: 8px 0 0;
	font-size: 0.9rem;
	line-height: 1.62;
	color: rgba(71, 85, 105, 0.88);
}

.gc-home-promo-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-home-promo-expiry {
	min-height: 32px;
}

.gc-home-promo-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.gc-home-promo-footer .gc-primary-button,
.gc-home-promo-footer .gc-link-button {
	min-height: 46px;
}

.gc-home-featured-grid .gc-discovery-card,
.gc-home-discoveries-grid .gc-discovery-card {
	height: 100%;
}

.gc-discovery-card-heading {
	align-items: flex-start;
}

.gc-discovery-card-logo {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	box-shadow:
		0 10px 24px rgba(15, 23, 42, 0.08),
		inset 0 0 0 1px rgba(226, 232, 240, 0.78);
}

.gc-discovery-card-copy {
	gap: 10px;
}

.gc-discovery-card-copy h3 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.15;
	letter-spacing: -0.03em;
}

.gc-discovery-card-meta-primary,
.gc-discovery-card-meta-secondary {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-discovery-card-meta-primary span,
.gc-discovery-card-meta-secondary span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(246, 241, 235, 0.9);
	font-size: 0.74rem;
	font-weight: 600;
	color: rgba(71, 85, 105, 0.88);
}

.gc-discovery-card-summary {
	display: grid;
	gap: 12px;
}

.gc-discovery-card-summary p {
	margin: 0;
}

.gc-discovery-card-footer {
	gap: 10px;
	align-items: center;
}

.gc-discovery-card-link {
	font-weight: 700;
}

.gc-discovery-card-actions {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-left: auto;
}

.gc-mobile-bottom-nav {
	left: 12px;
	right: 12px;
	bottom: 10px;
	padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.gc-mobile-bottom-nav-track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	padding: 8px;
	border-radius: 28px;
}

.gc-mobile-bottom-nav-item::after {
	display: none;
}

.gc-mobile-bottom-nav-hit {
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 4px;
	width: 100%;
	min-height: 60px;
	padding: 6px 2px 4px;
}

.gc-mobile-bottom-nav-indicator {
	width: 18px;
	height: 3px;
	border-radius: 999px;
	background: currentColor;
	opacity: 0;
	transform: scaleX(0.7);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.gc-mobile-bottom-nav-item.is-active .gc-mobile-bottom-nav-indicator,
.gc-mobile-bottom-nav-item[aria-expanded="true"] .gc-mobile-bottom-nav-indicator {
	opacity: 0.38;
	transform: scaleX(1);
}

.gc-mobile-bottom-nav-icon {
	width: 36px;
	height: 36px;
	border-radius: 14px;
}

.gc-mobile-bottom-nav-label {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1;
}

.gc-mobile-bottom-nav-item.is-pressed .gc-mobile-bottom-nav-hit,
.gc-mobile-bottom-nav-item:active .gc-mobile-bottom-nav-hit,
.gc-promo-list-card.is-pressed,
.gc-home-category-card.is-pressed,
.gc-discovery-card.is-pressed {
	transform: scale(0.985);
}

@media (max-width: 1199px) {
	.gc-home-hero-premium-grid-app,
	.gc-home-category-layout,
	.gc-home-search-stage-app {
		grid-template-columns: 1fr;
	}

	.gc-home-promo-list-app {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gc-site-header {
		padding: calc(4px + env(safe-area-inset-top, 0px)) 0 4px;
	}

	.gc-site-header-inner {
		min-height: 46px;
	}

	.gc-site-brand {
		gap: 10px;
	}

	.gc-site-brand-copy small,
	.gc-mobile-quick-search-label {
		display: none;
	}

	.gc-site-actions-mobile-shell {
		gap: 6px;
		padding: 3px;
		border-radius: 16px;
	}

	.gc-mobile-quick-search,
	.gc-mobile-toggle {
		width: 42px;
		height: 42px;
		padding: 0;
	}

	.gc-home-premium .gc-home-hero-premium {
		min-height: auto;
		padding: 18px 0 14px;
	}

	.gc-home-hero-copy-app {
		padding: 2px 0 0;
		text-align: left;
	}

	.gc-home-hero-copy-app h1 {
		max-width: 11ch;
		font-size: clamp(2.2rem, 10vw, 3.2rem);
	}

	.gc-home-hero-copy-app p {
		margin-top: 12px;
		font-size: 0.94rem;
		line-height: 1.6;
	}

	.gc-home-hero-metrics-app {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.gc-home-hero-metrics-app div {
		padding: 14px 10px 12px;
		border-radius: 18px;
	}

	.gc-home-hero-inline-actions {
		gap: 8px;
	}

	.gc-home-search-card-app,
	.gc-home-hero-side-panel,
	.gc-home-promo-surface {
		padding: 16px;
		border-radius: 24px;
	}

	.gc-search-form-hero .gc-search-main {
		grid-template-columns: 1fr;
		gap: 10px;
		min-height: auto;
		padding: 14px;
		border-radius: 24px;
	}

	.gc-search-form-hero .gc-search-main-icon {
		display: none;
	}

	.gc-search-form-hero .gc-search-inline-submit {
		width: 100%;
	}

	.gc-home-search-topic-grid-hero,
	.gc-home-category-grid-premium-app,
	.gc-home-promo-list-app {
		grid-template-columns: 1fr;
	}

	.gc-home-category-card-featured {
		padding: 20px;
		border-radius: 26px;
	}

	.gc-home-category-card-compact {
		padding: 16px;
	}

	.gc-home-section-head-split {
		align-items: stretch;
	}

	.gc-home-promo-brand-row,
	.gc-home-promo-footer,
	.gc-discovery-card-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.gc-home-promo-category {
		align-self: flex-start;
	}

	.gc-discovery-card-actions {
		margin-left: 0;
	}

	.gc-mobile-bottom-nav-hit {
		min-height: 56px;
	}
}

@media (max-width: 389px) {
	.gc-home-hero-metrics-app {
		grid-template-columns: 1fr;
	}

	.gc-mobile-bottom-nav-track {
		gap: 4px;
		padding: 6px;
	}

	.gc-mobile-bottom-nav-icon {
		width: 34px;
		height: 34px;
	}

	.gc-mobile-bottom-nav-label {
		font-size: 0.61rem;
	}
}

/* App-like home reconstruction */

.gc-app-shell-home,
.gc-app-shell-home .gc-app-main,
.gc-app-shell-home .gc-site-footer {
	background: #ffffff;
}

.gc-app-shell-home {
	--gc-home-accent: #2563eb;
	--gc-home-accent-strong: #1d4ed8;
	--gc-home-text: #111111;
	--gc-home-text-soft: #555555;
	--gc-home-muted: #6b7280;
	--gc-home-line: #eaeaea;
	--gc-home-surface: #f8f9fb;
	--gc-home-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
	--gc-home-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);
	--gc-home-radius: 28px;
	--gc-home-card-radius: 30px;
	--gc-home-pill-radius: 999px;
}

.gc-app-shell-home .gc-app-main {
	padding-bottom: calc(106px + env(safe-area-inset-bottom, 0px));
}

.gc-app-shell-home .gc-site-footer {
	border-top: 1px solid rgba(226, 232, 240, 0.88);
}

.gc-app-shell-home .gc-site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(226, 232, 240, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gc-mobile-header-leading {
	display: none;
}

.gc-site-brand-mobile-mark {
	display: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--gc-home-accent);
}

.gc-mobile-notification {
	display: none;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 15px;
	background: #ffffff;
	color: #1f2937;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
	text-decoration: none;
}

.gc-mobile-notification-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 8px;
	height: 8px;
	border: 2px solid #ffffff;
	border-radius: 999px;
	background: #ef4444;
}

.gc-mobile-notification-icon svg,
.gc-site-brand-mobile-mark svg {
	width: 18px;
	height: 18px;
}

.gc-home-discovery-app {
	display: grid;
	gap: 26px;
	padding: 22px 0 40px;
	background: #ffffff;
	color: var(--gc-home-text);
}

.gc-home-discovery-app h1,
.gc-home-discovery-app h2,
.gc-home-discovery-app h3 {
	margin: 0;
	color: var(--gc-home-text);
	font-family: "Inter", "SF Pro Display", "Poppins", sans-serif;
}

.gc-home-discovery-app h1 {
	font-size: clamp(2rem, 6vw, 3.8rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.06em;
}

.gc-home-discovery-app h2 {
	font-size: clamp(1.5rem, 3vw, 2.15rem);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.gc-home-discovery-app h3 {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.gc-home-discovery-app p {
	margin: 0;
	color: var(--gc-home-text-soft);
	font-size: 0.95rem;
	line-height: 1.68;
}

.gc-home-mobile-search,
.gc-home-mobile-categories,
.gc-home-city-activity,
.gc-home-feed,
.gc-home-promote {
	padding: 0;
}

.gc-home-mobile-search-shell,
.gc-home-city-activity-card,
.gc-home-promote-card {
	border: 1px solid rgba(226, 232, 240, 0.88);
	background: #ffffff;
	box-shadow: var(--gc-home-shadow-soft);
}

.gc-home-mobile-search-shell {
	display: grid;
	gap: 18px;
	padding: 22px;
	border-radius: var(--gc-home-radius);
}

.gc-home-mobile-search-copy {
	display: grid;
	gap: 10px;
}

.gc-home-mobile-search-kicker,
.gc-home-promote-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: fit-content;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--gc-home-accent);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-search-form-discovery {
	padding: 0;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.gc-search-form-discovery .gc-search-shell {
	gap: 0;
}

.gc-home-mobile-search-field {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	padding: 0 16px;
	border: 1px solid var(--gc-home-line);
	border-radius: var(--gc-home-pill-radius);
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	transition:
		transform 220ms ease,
		box-shadow 220ms ease,
		border-color 220ms ease;
}

.gc-home-mobile-search-field:focus-within {
	transform: translateY(-1px);
	border-color: rgba(37, 99, 235, 0.26);
	box-shadow:
		0 12px 32px rgba(15, 23, 42, 0.08),
		0 0 0 4px rgba(37, 99, 235, 0.06);
}

.gc-home-mobile-search-leading,
.gc-home-mobile-search-voice {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #777777;
}

.gc-home-mobile-search-leading svg,
.gc-home-mobile-search-voice svg {
	width: 19px;
	height: 19px;
}

.gc-home-mobile-search-voice {
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: rgba(248, 250, 252, 0.96);
	cursor: pointer;
}

.gc-home-mobile-search-field input {
	min-height: 56px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #111111;
	font-size: 0.98rem;
	font-weight: 600;
}

.gc-home-mobile-search-field input::placeholder {
	color: #999999;
	font-weight: 500;
}

.gc-home-mobile-search-field .gc-search-suggestions {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	z-index: 12;
}

.gc-home-mobile-search-topics {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.gc-home-mobile-search-topics::-webkit-scrollbar,
.gc-home-category-scroll::-webkit-scrollbar,
.gc-home-offer-track::-webkit-scrollbar {
	display: none;
}

.gc-home-mobile-search-topic {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: #f8fafc;
	color: #1f2937;
	font-size: 0.84rem;
	font-weight: 600;
	text-decoration: none;
	scroll-snap-align: start;
	transition:
		transform 220ms ease,
		background-color 220ms ease,
		box-shadow 220ms ease;
}

.gc-home-mobile-search-topic:hover {
	background: #eff6ff;
	transform: translateY(-1px);
}

.gc-home-section-bar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.gc-home-section-bar p {
	max-width: 56ch;
}

.gc-home-section-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--gc-home-accent);
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.gc-home-section-link svg {
	width: 16px;
	height: 16px;
}

.gc-home-category-scroll {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 2px 2px 4px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.gc-home-category-orb {
	flex: 0 0 72px;
	display: grid;
	justify-items: center;
	gap: 10px;
	text-decoration: none;
	color: #1f2937;
	scroll-snap-align: start;
}

.gc-home-category-orb-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: linear-gradient(180deg, var(--gc-category-accent, #2563eb), var(--gc-category-color, #60a5fa));
	color: #ffffff;
	box-shadow: 0 12px 24px color-mix(in srgb, var(--gc-category-accent, #2563eb) 22%, transparent);
	transition:
		transform 220ms ease,
		box-shadow 220ms ease;
}

.gc-home-category-orb:hover .gc-home-category-orb-icon {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 16px 30px color-mix(in srgb, var(--gc-category-accent, #2563eb) 28%, transparent);
}

.gc-home-category-orb-icon svg {
	width: 26px;
	height: 26px;
}

.gc-home-category-orb-label {
	text-align: center;
	font-size: 0.81rem;
	font-weight: 600;
	line-height: 1.35;
}

.gc-home-city-activity-card {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 14px;
	border-radius: 24px;
	background: var(--gc-home-surface);
}

.gc-home-city-activity-item {
	display: grid;
	justify-items: center;
	gap: 6px;
	padding: 14px 10px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.76);
	text-align: center;
}

.gc-home-city-activity-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 14px;
}

.gc-home-city-activity-item-warm .gc-home-city-activity-icon {
	background: rgba(249, 115, 22, 0.12);
	color: #f97316;
}

.gc-home-city-activity-item-cool .gc-home-city-activity-icon {
	background: rgba(37, 99, 235, 0.1);
	color: var(--gc-home-accent);
}

.gc-home-city-activity-item-fresh .gc-home-city-activity-icon {
	background: rgba(16, 185, 129, 0.12);
	color: #10b981;
}

.gc-home-city-activity-icon svg {
	width: 18px;
	height: 18px;
}

.gc-home-city-activity-item strong {
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
	color: #111111;
}

.gc-home-city-activity-item small {
	font-size: 0.76rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--gc-home-muted);
}

.gc-home-offer-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 2px 2px 6px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.gc-home-offer-card,
.gc-home-featured-card,
.gc-home-activity-card {
	transition:
		transform 200ms ease,
		box-shadow 200ms ease,
		border-color 200ms ease;
}

.gc-home-offer-card:hover,
.gc-home-featured-card:hover,
.gc-home-activity-card:hover {
	transform: scale(1.01);
}

.gc-home-offer-card {
	flex: 0 0 min(82vw, 280px);
	display: grid;
	grid-template-rows: 168px 1fr;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: var(--gc-home-card-radius);
	background: #ffffff;
	box-shadow: var(--gc-home-shadow);
	overflow: hidden;
	scroll-snap-align: start;
}

.gc-home-offer-media {
	position: relative;
	display: block;
	background: linear-gradient(180deg, #dbeafe, #eff6ff);
}

.gc-home-offer-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-home-offer-media-fallback,
.gc-home-featured-cover-fallback,
.gc-home-activity-media-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 22% 18%, rgba(37, 99, 235, 0.2), transparent 28%),
		linear-gradient(135deg, #dbeafe, #eff6ff 55%, #f8fafc);
	background-size: 180% 100%;
	animation: gc-home-feed-shimmer 1.8s linear infinite;
}

.gc-home-offer-badge {
	position: absolute;
	left: 14px;
	top: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: #ef4444;
	color: #ffffff;
	font-size: 0.74rem;
	font-weight: 700;
	box-shadow: 0 10px 22px rgba(239, 68, 68, 0.22);
}

.gc-home-offer-body {
	display: grid;
	gap: 14px;
	padding: 16px;
}

.gc-home-offer-brand {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.gc-home-offer-brand strong {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	color: #111111;
}

.gc-home-offer-brand span {
	display: block;
	margin-top: 2px;
	font-size: 0.76rem;
	font-weight: 500;
	color: var(--gc-home-muted);
}

.gc-home-offer-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #22c55e;
	color: #ffffff;
	box-shadow: 0 10px 24px rgba(34, 197, 94, 0.24);
}

.gc-home-offer-whatsapp svg {
	width: 20px;
	height: 20px;
}

.gc-home-offer-card h3 a,
.gc-home-featured-card h3 a,
.gc-home-activity-card a {
	text-decoration: none;
}

.gc-home-offer-pricing {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.gc-home-offer-pricing strong {
	font-size: 1rem;
	font-weight: 700;
	color: #111111;
}

.gc-home-offer-pricing span {
	font-size: 0.76rem;
	font-weight: 600;
	color: #94a3b8;
}

.gc-home-offer-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
}

.gc-home-offer-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--gc-home-accent);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}

.gc-home-offer-link-muted {
	background: #f8fafc;
	color: #475569;
}

.gc-home-featured-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.gc-home-featured-card {
	display: grid;
	grid-template-rows: 188px 1fr;
	border: 1px solid rgba(226, 232, 240, 0.88);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: var(--gc-home-shadow-soft);
	overflow: hidden;
}

.gc-home-featured-cover {
	display: block;
	background: linear-gradient(180deg, #dbeafe, #f8fafc);
}

.gc-home-featured-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-home-featured-content {
	display: grid;
	gap: 14px;
	padding: 0 18px 18px;
	margin-top: -22px;
}

.gc-home-featured-brand {
	display: flex;
	align-items: center;
	gap: 14px;
}

.gc-home-featured-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border: 4px solid #ffffff;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.gc-home-featured-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gc-home-featured-logo span {
	font-size: 1.1rem;
	font-weight: 800;
	color: #111111;
}

.gc-home-featured-copy {
	display: grid;
	gap: 4px;
}

.gc-home-featured-copy p {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gc-home-muted);
}

.gc-home-featured-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-home-featured-rating,
.gc-home-featured-status,
.gc-home-featured-seal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
}

.gc-home-featured-rating {
	gap: 6px;
	background: #fff7ed;
	color: #f59e0b;
}

.gc-home-featured-rating svg {
	width: 13px;
	height: 13px;
}

.gc-home-featured-status {
	background: #eff6ff;
	color: var(--gc-home-accent);
}

.gc-home-featured-seal {
	background: #f8fafc;
	color: #475569;
}

.gc-home-activity-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	padding: 2px 2px 8px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.gc-home-activity-track::-webkit-scrollbar {
	display: none;
}

.gc-home-activity-card {
	flex: 0 0 min(86vw, 320px);
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	min-height: 136px;
	padding: 12px;
	border: 1px solid #f1f1f1;
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	overflow: hidden;
	scroll-snap-align: start;
}

.gc-home-activity-card:hover {
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.gc-home-activity-media {
	position: relative;
	display: block;
	border-radius: 18px;
	overflow: hidden;
	background: #f8fafc;
}

.gc-home-activity-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-home-activity-body {
	display: grid;
	gap: 10px;
	align-content: center;
	min-width: 0;
	padding: 2px 0;
}

.gc-home-activity-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.gc-home-activity-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: #eff6ff;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.gc-home-activity-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-home-activity-avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #dbeafe, #eff6ff);
	color: #1d4ed8;
	font-size: 0.88rem;
	font-weight: 800;
}

.gc-home-activity-brand-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.gc-home-activity-brand-copy strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.1;
	color: #111111;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gc-home-activity-brand-copy time {
	display: block;
	font-size: 0.74rem;
	font-weight: 600;
	color: #94a3b8;
}

.gc-home-activity-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	max-width: 100%;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.2;
}

.gc-home-activity-action-hot {
	background: #fff1f2;
	color: #dc2626;
}

.gc-home-activity-action-event {
	background: #eff6ff;
	color: #2563eb;
}

.gc-home-activity-action-catalog {
	background: #ecfeff;
	color: #0f766e;
}

.gc-home-activity-action-new {
	background: #fffbeb;
	color: #b45309;
}

.gc-home-activity-action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
}

.gc-home-activity-action-icon svg {
	width: 16px;
	height: 16px;
}

.gc-home-activity-description {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: #475569;
	font-size: 0.84rem;
	line-height: 1.5;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.gc-home-activity-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	min-width: 0;
}

.gc-home-activity-context {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.76rem;
	font-weight: 600;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.gc-home-activity-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--gc-home-accent);
	font-size: 0.78rem;
	font-weight: 700;
}

@keyframes gc-home-feed-shimmer {
	from {
		background-position: 100% 0;
	}

	to {
		background-position: -100% 0;
	}
}

.gc-home-feed-empty {
	display: grid;
	gap: 12px;
	align-content: center;
	min-height: 224px;
	padding: 24px;
	border: 1px solid rgba(226, 232, 240, 0.88);
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%),
		linear-gradient(180deg, #ffffff, #f8fafc);
	box-shadow: var(--gc-home-shadow-soft);
}

.gc-home-feed-empty-kicker {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 28px;
	padding: 0 11px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: var(--gc-home-accent);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gc-home-feed-empty h3 {
	font-size: 1.05rem;
}

.gc-home-feed-empty p {
	max-width: 56ch;
	font-size: 0.9rem;
}

.gc-home-feed-empty-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.1);
	color: var(--gc-home-accent);
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
}

.gc-home-promote-card {
	display: grid;
	gap: 18px;
	padding: 22px;
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 28%),
		linear-gradient(180deg, #ffffff, #f8fafc);
}

.gc-home-promote-copy {
	display: grid;
	gap: 10px;
}

.gc-home-promote-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-app-shell-home .gc-mobile-bottom-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0 12px calc(8px + env(safe-area-inset-bottom, 0px));
	background: transparent;
	border: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.gc-app-shell-home .gc-mobile-bottom-nav-track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	padding: 8px 6px;
	border-top: 1px solid rgba(226, 232, 240, 0.96);
	border-radius: 22px 22px 0 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.08);
}

.gc-app-shell-home .gc-mobile-bottom-nav-item {
	color: #94a3b8;
	min-height: 62px;
}

.gc-app-shell-home .gc-mobile-bottom-nav-hit {
	gap: 4px;
	min-height: 58px;
	padding: 6px 0 0;
}

.gc-app-shell-home .gc-mobile-bottom-nav-indicator {
	display: none;
}

.gc-app-shell-home .gc-mobile-bottom-nav-icon {
	width: 28px;
	height: 28px;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.gc-app-shell-home .gc-mobile-bottom-nav-icon svg {
	width: 20px;
	height: 20px;
}

.gc-app-shell-home .gc-mobile-bottom-nav-label {
	font-size: 0.68rem;
	font-weight: 600;
	color: inherit;
}

.gc-app-shell-home .gc-mobile-bottom-nav-item.is-active,
.gc-app-shell-home .gc-mobile-bottom-nav-item[aria-expanded="true"] {
	color: var(--gc-home-accent);
}

.gc-app-shell-home .gc-mobile-bottom-nav-item.is-active .gc-mobile-bottom-nav-icon,
.gc-app-shell-home .gc-mobile-bottom-nav-item[aria-expanded="true"] .gc-mobile-bottom-nav-icon {
	background: transparent;
	box-shadow: none;
}

.gc-app-shell-home .gc-site-footer {
	padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
	.gc-home-discovery-app {
		gap: 32px;
		padding-top: 26px;
	}

	.gc-home-mobile-search-shell {
		grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
		align-items: center;
		gap: 24px;
		padding: 26px;
	}

	.gc-home-mobile-search-copy {
		max-width: 50ch;
	}

	.gc-home-mobile-search-topics {
		grid-column: 1 / -1;
	}

	.gc-home-offer-track {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		overflow: visible;
	}

	.gc-home-offer-card {
		flex-basis: auto;
	}

	.gc-home-activity-card {
		flex-basis: 312px;
	}

	.gc-home-promote-card {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.gc-home-feed-empty {
		min-height: 260px;
		padding: 28px;
	}
}

@media (min-width: 1200px) {
	.gc-home-mobile-search-shell {
		padding: 30px;
	}

	.gc-home-featured-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-home-activity-card {
		flex-basis: 320px;
	}
}

@media (max-width: 1023px) {
	.gc-home-featured-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.gc-app-shell-home .gc-site-header {
		padding: calc(12px + env(safe-area-inset-top, 0px)) 0 10px;
	}

	.gc-app-shell-home .gc-site-header-inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 12px;
		min-height: 66px;
	}

	.gc-app-shell-home .gc-site-header-spacer,
	.gc-app-shell-home .gc-site-actions-desktop,
	.gc-app-shell-home .gc-site-brand-visual > .gc-site-brand-logo,
	.gc-app-shell-home .gc-site-brand-visual > .gc-site-brand-mark,
	.gc-app-shell-home .gc-site-brand-copy small {
		display: none;
	}

	.gc-app-shell-home .gc-mobile-header-leading,
	.gc-app-shell-home .gc-mobile-notification,
	.gc-app-shell-home .gc-site-brand-mobile-mark {
		display: inline-flex;
	}

	.gc-app-shell-home .gc-site-brand {
		justify-self: center;
		gap: 10px;
	}

	.gc-app-shell-home .gc-site-brand-copy strong {
		font-size: 0.98rem;
		font-weight: 700;
		color: #111111;
	}

	.gc-app-shell-home .gc-site-actions-mobile {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}

	.gc-app-shell-home .gc-mobile-toggle-leading {
		display: inline-flex;
		width: 42px;
		height: 42px;
		border: 1px solid rgba(226, 232, 240, 0.9);
		border-radius: 15px;
		background: #ffffff;
		box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
	}

	.gc-app-shell-home .gc-mobile-toggle-leading span {
		width: 16px;
		background: #1f2937;
	}

	.gc-home-discovery-app {
		gap: 22px;
		padding-top: 6px;
	}

	.gc-home-mobile-search-shell,
	.gc-home-promote-card {
		padding: 18px;
	}

	.gc-home-section-bar {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 14px;
	}

	.gc-home-city-activity-card {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		padding: 10px;
	}

	.gc-home-city-activity-item {
		padding: 12px 8px;
	}

	.gc-home-offer-track,
	.gc-home-featured-grid,
	.gc-home-activity-track {
		display: flex;
		overflow-x: auto;
		padding-bottom: 4px;
		scroll-snap-type: x proximity;
		-webkit-overflow-scrolling: touch;
	}

	.gc-home-featured-grid::-webkit-scrollbar,
	.gc-home-activity-track::-webkit-scrollbar {
		display: none;
	}

	.gc-home-featured-card {
		flex: 0 0 min(78vw, 280px);
		scroll-snap-align: start;
	}

	.gc-home-activity-card {
		flex-basis: min(86vw, 320px);
	}

	.gc-home-feed-empty {
		min-height: auto;
		padding: 20px;
	}
}

@media (max-width: 479px) {
	.gc-home-city-activity-card {
		grid-template-columns: 1fr;
	}

	.gc-home-offer-card,
	.gc-home-featured-card {
		flex-basis: 84vw;
	}

	.gc-home-activity-card {
		flex-basis: 86vw;
		grid-template-columns: 104px minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.gc-home-offer-card,
	.gc-home-featured-card,
	.gc-home-activity-card,
	.gc-home-activity-media-fallback,
	.gc-home-mobile-search-field,
	.gc-home-mobile-search-topic {
		transition: none;
		animation: none;
	}

	.gc-home-offer-card:hover,
	.gc-home-featured-card:hover,
	.gc-home-activity-card:hover,
	.gc-home-mobile-search-topic:hover,
	.gc-home-mobile-search-field:focus-within {
		transform: none;
	}
}

/* Company profile reconstruction */

.gc-app-shell-company {
	--gc-company-accent: #2563eb;
	--gc-company-text: #111111;
	--gc-company-text-soft: #666666;
	--gc-company-line: #f1f1f1;
	--gc-company-surface: #ffffff;
	--gc-company-surface-soft: #f8f9fb;
	--gc-company-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	--gc-company-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.gc-app-shell-company,
.gc-app-shell-company .gc-app-main,
.gc-app-shell-company .gc-site-footer {
	background: #ffffff;
}

.gc-app-shell-company .gc-app-main {
	padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
}

.gc-app-shell-company .gc-site-header {
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.gc-app-shell-company .gc-site-footer {
	padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
}

.gc-app-shell-company .gc-mobile-bottom-nav {
	display: none;
}

.gc-company-app {
	display: grid;
	gap: 24px;
	padding-bottom: 28px;
	color: var(--gc-company-text);
	font-family: "Inter", "SF Pro Display", sans-serif;
}

.gc-company-app h1,
.gc-company-app h2,
.gc-company-app h3 {
	margin: 0;
	font-family: inherit;
	letter-spacing: -0.03em;
}

.gc-company-app h2 {
	font-size: clamp(1.45rem, 3vw, 1.95rem);
	font-weight: 700;
	color: #111111;
}

.gc-company-app p {
	margin: 0;
	color: var(--gc-company-text-soft);
	font-size: 0.92rem;
	line-height: 1.72;
}

.gc-company-app a {
	text-decoration: none;
}

.gc-company-app-hero {
	position: relative;
	min-height: clamp(260px, 48vw, 320px);
	background:
		var(--gc-company-hero-image, linear-gradient(135deg, #304155, #0f172a 70%)),
		linear-gradient(135deg, #334155, #0f172a);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.gc-company-app-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1));
}

.gc-company-app-hero-top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
	padding-top: calc(16px + env(safe-area-inset-top, 0px));
}

.gc-company-app-hero-top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gc-company-app-hero-tools {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gc-company-app-hero-float,
.gc-app-shell-company .gc-favorite-toggle-hero {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
	transition:
		transform 220ms ease,
		background-color 220ms ease,
		box-shadow 220ms ease;
}

.gc-company-app-hero-float:hover,
.gc-app-shell-company .gc-favorite-toggle-hero:hover,
.gc-company-app-hero-float:focus-visible,
.gc-app-shell-company .gc-favorite-toggle-hero:focus-visible {
	transform: scale(1.02);
	background: rgba(255, 255, 255, 0.24);
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

.gc-company-app-hero-float svg,
.gc-app-shell-company .gc-favorite-toggle-hero .gc-favorite-toggle-icon svg {
	width: 18px;
	height: 18px;
}

.gc-app-shell-company .gc-favorite-toggle-hero {
	padding: 0;
}

.gc-app-shell-company .gc-favorite-toggle-hero .gc-favorite-toggle-copy {
	display: none;
}

.gc-app-shell-company .gc-favorite-toggle-hero .screen-reader-text {
	position: absolute;
}

.gc-app-shell-company .gc-favorite-toggle-hero.is-active {
	background: rgba(255, 255, 255, 0.28);
}

.gc-company-app-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	min-height: clamp(260px, 48vw, 320px);
	padding-top: 94px;
	padding-bottom: 22px;
}

.gc-company-app-hero-brand {
	display: flex;
	align-items: flex-end;
	gap: 18px;
}

.gc-company-app-hero-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 92px;
	height: 92px;
	margin-bottom: -22px;
	overflow: hidden;
	border: 4px solid #ffffff;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.gc-company-app-hero-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-company-app-hero-logo span {
	font-size: 1.8rem;
	font-weight: 800;
	color: #111111;
}

.gc-company-app-hero-copy {
	display: grid;
	gap: 10px;
	align-content: end;
}

.gc-company-app-hero-badges,
.gc-company-app-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-company-app-hero-badge,
.gc-company-app-hero-tag {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.96);
	font-size: 0.76rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.gc-company-app-hero-badge-premium,
.gc-company-app-hero-badge-partner {
	background: rgba(255, 209, 102, 0.18);
}

.gc-company-app-hero-badge-verified {
	background: rgba(59, 130, 246, 0.18);
}

.gc-company-app-hero-copy h1 {
	font-size: clamp(1.9rem, 5vw, 2.5rem);
	font-weight: 700;
	line-height: 0.98;
	color: #ffffff;
}

.gc-company-app-hero-category {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	font-weight: 600;
}

.gc-company-app-hero-rating {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffd166;
	font-size: 0.92rem;
	font-weight: 700;
}

.gc-company-app-hero-rating-star svg {
	width: 16px;
	height: 16px;
}

.gc-company-app-actions {
	margin-top: -6px;
}

.gc-company-app-action-track,
.gc-company-app-fact-track,
.gc-company-app-feed-track,
.gc-company-app-product-track,
.gc-company-app-gallery-track,
.gc-company-app-related-track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
}

.gc-company-app-action-track::-webkit-scrollbar,
.gc-company-app-fact-track::-webkit-scrollbar,
.gc-company-app-feed-track::-webkit-scrollbar,
.gc-company-app-product-track::-webkit-scrollbar,
.gc-company-app-gallery-track::-webkit-scrollbar,
.gc-company-app-related-track::-webkit-scrollbar {
	display: none;
}

.gc-copy-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px 6px;
	color: var(--gc-color-text-muted);
	border-radius: var(--gc-radius-button);
	transition: color var(--gc-transition-fast), background var(--gc-transition-fast);
	vertical-align: middle;
}

.gc-copy-btn:hover { background: var(--gc-color-surface-muted); color: var(--gc-color-text); }
.gc-copy-btn.is-copied { color: var(--gc-color-success); }

.gc-company-app-action-pill-shell {
	position: relative;
	flex: 0 0 min(76vw, 220px);
	scroll-snap-align: start;
}

.gc-company-app-action-pill-shell .gc-company-app-action-pill {
	width: 100%;
}

.gc-company-app-action-pill-shell.has-copy .gc-company-app-action-pill {
	padding-right: 46px;
}

.gc-company-app-copy-btn {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gc-company-app-action-pill-shell.has-copy .gc-company-app-action-pill.is-primary + .gc-copy-btn {
	color: rgba(255, 255, 255, 0.84);
}

.gc-company-app-action-pill-shell.has-copy .gc-company-app-action-pill.is-primary + .gc-copy-btn:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

.gc-company-app-action-pill {
	flex: 0 0 min(76vw, 220px);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 52px;
	padding: 12px 14px;
	border-radius: 999px;
	background: #f8f8f8;
	box-shadow: var(--gc-company-shadow);
	scroll-snap-align: start;
	transition:
		transform 220ms ease,
		box-shadow 220ms ease,
		background-color 220ms ease;
}

.gc-company-app-action-pill:hover,
.gc-company-app-action-pill:focus-visible {
	transform: translateY(-1px) scale(1.01);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.gc-company-app-action-pill.is-primary {
	background: #22c55e;
	color: #ffffff;
}

.gc-company-app-action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	color: #1f2937;
}

.gc-company-app-action-pill.is-primary .gc-company-app-action-icon {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.gc-company-app-action-icon svg {
	width: 18px;
	height: 18px;
}

.gc-company-app-action-copy {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.gc-company-app-action-copy strong {
	font-size: 0.88rem;
	font-weight: 700;
	color: inherit;
}

.gc-company-app-action-copy small {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: rgba(51, 65, 85, 0.68);
	font-size: 0.76rem;
}

.gc-company-app-action-pill.is-primary .gc-company-app-action-copy small {
	color: rgba(255, 255, 255, 0.84);
}

.gc-company-app-section {
	padding: 0;
}

.gc-company-app-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.gc-company-app-section-head p {
	max-width: 56ch;
}

.gc-company-app-section-chip,
.gc-company-app-section-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f8f9fb;
	color: var(--gc-company-accent);
	font-size: 0.76rem;
	font-weight: 700;
	white-space: nowrap;
}

.gc-company-app-fact-card,
.gc-company-app-about-card,
.gc-company-app-review-summary,
.gc-company-app-review-card,
.gc-company-app-review-form-card,
.gc-company-app-map-card,
.gc-company-app-location-card,
.gc-company-app-empty {
	border: 1px solid var(--gc-company-line);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--gc-company-shadow);
}

.gc-company-app-fact-card {
	flex: 0 0 min(76vw, 230px);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 16px;
	scroll-snap-align: start;
}

.gc-company-app-fact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 16px;
}

.gc-company-app-fact-card-success .gc-company-app-fact-icon {
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
}

.gc-company-app-fact-card-info .gc-company-app-fact-icon {
	background: rgba(37, 99, 235, 0.1);
	color: #2563eb;
}

.gc-company-app-fact-card-warm .gc-company-app-fact-icon {
	background: rgba(249, 115, 22, 0.12);
	color: #f97316;
}

.gc-company-app-fact-card-violet .gc-company-app-fact-icon {
	background: rgba(147, 51, 234, 0.12);
	color: #9333ea;
}

.gc-company-app-fact-icon svg {
	width: 18px;
	height: 18px;
}

.gc-company-app-fact-copy {
	display: grid;
	gap: 3px;
}

.gc-company-app-fact-copy strong {
	font-size: 0.84rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-fact-copy small {
	color: #666666;
	font-size: 0.76rem;
	line-height: 1.45;
}

.gc-company-app-about-card {
	display: grid;
	gap: 18px;
	padding: 22px;
}

.gc-company-app-about-copy {
	display: grid;
	gap: 12px;
}

.gc-company-app-about-text {
	color: #444444;
	font-size: 0.95rem;
	line-height: 1.8;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.gc-company-app-about-card.is-expanded .gc-company-app-about-text {
	display: block;
	-webkit-line-clamp: unset;
}

.gc-company-app-about-toggle {
	width: fit-content;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--gc-company-accent);
	font-size: 0.86rem;
	font-weight: 700;
	cursor: pointer;
}

.gc-company-app-about-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-company-app-about-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f8f9fb;
	color: #334155;
	font-size: 0.8rem;
	font-weight: 600;
}

.gc-company-app-about-badge svg {
	width: 14px;
	height: 14px;
	color: #2563eb;
}

.gc-company-app-about-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.gc-company-app-metric-card {
	display: grid;
	gap: 4px;
	padding: 16px;
	border-radius: 20px;
	background: #f8f9fb;
}

.gc-company-app-metric-card strong {
	font-size: 1.3rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-metric-card span {
	color: #64748b;
	font-size: 0.76rem;
	font-weight: 600;
	line-height: 1.5;
}

.gc-company-app-feed-card,
.gc-company-app-product-card,
.gc-company-app-related-card {
	transition:
		transform 240ms ease,
		box-shadow 240ms ease,
		border-color 240ms ease;
}

.gc-company-app-feed-card:hover,
.gc-company-app-product-card:hover,
.gc-company-app-related-card:hover {
	transform: translateY(-2px) scale(1.01);
}

.gc-company-app-feed-card {
	flex: 0 0 min(76vw, 252px);
	display: grid;
	grid-template-rows: 146px 1fr;
	overflow: hidden;
	border: 1px solid var(--gc-company-line);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--gc-company-shadow);
	scroll-snap-align: start;
}

.gc-company-app-feed-media,
.gc-company-app-product-media,
.gc-company-app-related-media {
	position: relative;
	display: block;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 32%),
		linear-gradient(135deg, #dbeafe, #f8fafc);
}

.gc-company-app-feed-media img,
.gc-company-app-product-media img,
.gc-company-app-related-media img,
.gc-company-app-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gc-company-app-feed-media-fallback,
.gc-company-app-product-fallback,
.gc-company-app-related-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(90deg, rgba(226, 232, 240, 0.9), rgba(248, 250, 252, 0.98), rgba(226, 232, 240, 0.9));
	background-size: 200% 100%;
	animation: gcCompanySkeleton 1.25s ease-in-out infinite;
}

.gc-company-app-feed-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: #ef4444;
	color: #ffffff;
	font-size: 0.74rem;
	font-weight: 700;
	box-shadow: 0 10px 18px rgba(239, 68, 68, 0.18);
}

.gc-company-app-feed-body {
	display: grid;
	gap: 12px;
	padding: 16px;
}

.gc-company-app-feed-brand {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gc-company-app-feed-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
	background: #f8fafc;
	border: 2px solid #ffffff;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.gc-company-app-feed-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-company-app-feed-mark span {
	font-size: 0.9rem;
	font-weight: 800;
	color: #111111;
}

.gc-company-app-feed-brand-copy {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.gc-company-app-feed-brand-copy strong {
	font-size: 0.84rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-feed-brand-copy small {
	color: #94a3b8;
	font-size: 0.74rem;
}

.gc-company-app-feed-card h3 {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.15;
}

.gc-company-app-feed-card h3 a,
.gc-company-app-related-card h3 a {
	color: #111111;
}

.gc-company-app-feed-card p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 0.84rem;
	line-height: 1.6;
}

.gc-company-app-feed-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
}

.gc-company-app-feed-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
	font-size: 0.78rem;
	font-weight: 700;
}

.gc-company-app-feed-whatsapp svg,
.gc-company-app-feed-meta svg,
.gc-company-app-related-rating svg,
.gc-company-app-review-score svg,
.gc-company-app-review-stars svg {
	width: 14px;
	height: 14px;
}

.gc-company-app-feed-meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #94a3b8;
	font-size: 0.76rem;
	font-weight: 700;
}

.gc-company-app-feed-meta span {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.gc-company-app-product-card {
	flex: 0 0 min(68vw, 210px);
	display: grid;
	grid-template-rows: 150px 1fr;
	overflow: hidden;
	border: 1px solid var(--gc-company-line);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: var(--gc-company-shadow);
	scroll-snap-align: start;
}

.gc-company-app-product-body {
	display: grid;
	gap: 10px;
	padding: 16px;
}

.gc-company-app-product-body h3 {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.3;
}

.gc-company-app-product-body strong {
	font-size: 1rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-product-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	border-radius: 999px;
	background: #f8f8f8;
	color: #16a34a;
	font-size: 0.8rem;
	font-weight: 700;
}

.gc-company-app-review-grid {
	display: grid;
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
	gap: 18px;
	align-items: start;
}

.gc-company-app-review-summary,
.gc-company-app-review-form-card {
	padding: 22px;
}

.gc-company-app-review-summary {
	display: grid;
	gap: 12px;
	align-content: start;
}

.gc-company-app-review-summary strong {
	font-size: clamp(2.6rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 0.9;
	color: #111111;
}

.gc-company-app-review-stars {
	display: flex;
	gap: 6px;
	color: #e2e8f0;
}

.gc-company-app-review-stars .is-active {
	color: #ffd166;
}

.gc-company-app-review-list {
	display: grid;
	gap: 14px;
}

.gc-company-app-review-card {
	padding: 16px;
}

.gc-company-app-review-card-top {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

.gc-company-app-review-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #eff6ff;
	color: #2563eb;
	font-size: 0.88rem;
	font-weight: 700;
}

.gc-company-app-review-meta {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.gc-company-app-review-meta strong {
	font-size: 0.86rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-review-meta span {
	color: #94a3b8;
	font-size: 0.74rem;
}

.gc-company-app-review-score {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #f59e0b;
	font-size: 0.76rem;
	font-weight: 700;
}

.gc-company-app-review-form-card {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.gc-company-app-review-form-card h3 {
	font-size: 1.05rem;
	font-weight: 700;
}

.gc-review-form-actions {
	display: flex;
}

.gc-review-form-status {
	min-height: 1.25rem;
	margin: 0;
	color: #777777;
	font-size: 0.875rem;
	line-height: 1.5;
}

.gc-review-form-status.is-success {
	color: #166534;
}

.gc-review-form-status.is-error {
	color: #b91c1c;
}

.gc-company-app-gallery-item {
	position: relative;
	flex: 0 0 min(84vw, 420px);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 0;
	border-radius: 18px;
	background: #f8fafc;
	padding: 0;
	box-shadow: var(--gc-company-shadow);
	scroll-snap-align: start;
	cursor: pointer;
}

.gc-company-app-gallery-overlay {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(17, 24, 39, 0.52);
	color: #ffffff;
	font-size: 0.78rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.gc-company-app-location-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	gap: 18px;
}

.gc-company-app-map-card,
.gc-company-app-location-card {
	overflow: hidden;
}

.gc-company-app-map-card iframe,
.gc-company-app-map-fallback {
	width: 100%;
	min-height: 260px;
	border: 0;
}

.gc-company-app-map-fallback {
	display: grid;
	place-items: center;
	gap: 10px;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 30%),
		linear-gradient(135deg, #eff6ff, #f8fafc);
	color: #111111;
}

.gc-company-app-map-fallback svg {
	width: 22px;
	height: 22px;
	color: #2563eb;
}

.gc-company-app-location-card {
	display: grid;
	gap: 16px;
	padding: 22px;
}

.gc-company-app-location-copy {
	display: grid;
	gap: 16px;
}

.gc-company-app-location-item {
	display: grid;
	gap: 5px;
}

.gc-company-app-location-item strong {
	font-size: 0.84rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-location-item p {
	color: #555555;
	font-size: 0.86rem;
	line-height: 1.7;
}

.gc-company-app-location-actions {
	display: grid;
	gap: 12px;
}

.gc-company-app-route-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 0 16px;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 999px;
	background: #ffffff;
	color: #2563eb;
	font-size: 0.84rem;
	font-weight: 700;
}

.gc-company-app-location-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gc-company-app-location-socials a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: #f8f9fb;
	color: #475569;
	font-size: 0.76rem;
	font-weight: 700;
}

.gc-company-app-related-card {
	flex: 0 0 min(86vw, 290px);
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--gc-company-line);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: var(--gc-company-shadow);
	scroll-snap-align: start;
}

.gc-company-app-related-media {
	height: 94px;
	overflow: hidden;
	border-radius: 16px;
}

.gc-company-app-related-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.gc-company-app-related-copy h3 {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.25;
}

.gc-company-app-related-copy p {
	font-size: 0.78rem;
	line-height: 1.5;
}

.gc-company-app-related-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #f59e0b;
	font-size: 0.78rem;
	font-weight: 700;
}

.gc-company-app-empty {
	display: grid;
	gap: 8px;
	padding: 22px;
}

.gc-company-app-empty p {
	margin: 0;
	color: #777777;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.6;
}

.gc-company-app-empty strong {
	font-size: 0.98rem;
	font-weight: 700;
	color: #111111;
}

.gc-company-app-bottom-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
	background: transparent;
}

.gc-company-app-bottom-bar-inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	padding: 10px;
	border-top: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 24px 24px 0 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.08);
}

.gc-company-app-bottom-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	border-radius: 999px;
	background: #f8f8f8;
	color: #334155;
	font-size: 0.82rem;
	font-weight: 700;
}

.gc-company-app-bottom-action.is-primary {
	background: #22c55e;
	color: #ffffff;
}

.gc-company-app-bottom-action svg {
	width: 16px;
	height: 16px;
}

@keyframes gcCompanySkeleton {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

@media (min-width: 768px) {
	.gc-company-app {
		gap: 28px;
		padding-bottom: 40px;
	}

	.gc-company-app-action-track,
	.gc-company-app-fact-track,
	.gc-company-app-feed-track,
	.gc-company-app-product-track,
	.gc-company-app-gallery-track,
	.gc-company-app-related-track {
		overflow: visible;
	}

	.gc-company-app-action-track {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gc-company-app-fact-track {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gc-company-app-feed-track {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-company-app-product-track {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gc-company-app-gallery-track {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gc-company-app-related-track {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-company-app-action-pill,
	.gc-company-app-fact-card,
	.gc-company-app-feed-card,
	.gc-company-app-product-card,
	.gc-company-app-gallery-item,
	.gc-company-app-related-card {
		flex-basis: auto;
	}
}

@media (min-width: 1200px) {
	.gc-company-app-feed-track {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gc-company-app-gallery-track {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gc-company-app-related-track {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1023px) {
	.gc-company-app-location-grid,
	.gc-company-app-review-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.gc-app-shell-company .gc-site-header {
		display: none;
	}

	.gc-app-shell-company .gc-site-footer {
		padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
	}

	.gc-company-app {
		gap: 22px;
	}

	.gc-company-app-hero-inner {
		padding-bottom: 18px;
	}

	.gc-company-app-hero-brand {
		align-items: flex-end;
		gap: 14px;
	}

	.gc-company-app-hero-logo {
		width: 88px;
		height: 88px;
	}

	.gc-company-app-hero-copy h1 {
		font-size: 1.78rem;
	}

	.gc-company-app-hero-category {
		font-size: 0.92rem;
	}

	.gc-company-app-section-head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 14px;
	}

	.gc-company-app-about-card,
	.gc-company-app-review-summary,
	.gc-company-app-review-form-card,
	.gc-company-app-location-card,
	.gc-company-app-empty {
		padding: 18px;
		border-radius: 22px;
	}

	.gc-company-app-about-metrics {
		grid-template-columns: 1fr;
	}

	.gc-company-app-feed-card {
		flex-basis: 76vw;
	}

	.gc-company-app-product-card {
		flex-basis: 70vw;
	}

	.gc-company-app-related-card {
		flex-basis: 86vw;
	}

	.gc-company-app-bottom-bar {
		display: block;
	}
}

@media (max-width: 479px) {
	.gc-company-app-hero-top-inner {
		gap: 8px;
	}

	.gc-company-app-hero-tools {
		gap: 8px;
	}

	.gc-company-app-hero-float,
	.gc-app-shell-company .gc-favorite-toggle-hero {
		width: 42px;
		height: 42px;
	}

	.gc-company-app-hero-brand {
		grid-template-columns: 1fr;
	}

	.gc-company-app-hero-copy h1 {
		font-size: 1.66rem;
	}

	.gc-company-app-bottom-bar-inner {
		gap: 8px;
		padding: 8px;
	}

	.gc-company-app-bottom-action {
		min-height: 46px;
		font-size: 0.76rem;
	}
}

@media (min-width: 768px) {
	.gc-company-app-bottom-bar {
		display: none;
	}

	.gc-app-shell-company .gc-app-main,
	.gc-app-shell-company .gc-site-footer {
		padding-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gc-company-app-action-pill,
	.gc-company-app-feed-card,
	.gc-company-app-product-card,
	.gc-company-app-related-card,
	.gc-company-app-hero-float,
	.gc-app-shell-company .gc-favorite-toggle-hero {
		transition: none;
	}

	.gc-company-app-action-pill:hover,
	.gc-company-app-feed-card:hover,
	.gc-company-app-product-card:hover,
	.gc-company-app-related-card:hover,
	.gc-company-app-hero-float:hover,
	.gc-app-shell-company .gc-favorite-toggle-hero:hover {
		transform: none;
	}
}
.gc-company-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 8px 12px;
	border: 1px solid rgba(226, 232, 240, 0.82);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.84);
	color: rgba(51, 65, 85, 0.88);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1;
}

.gc-company-status-inline {
	margin-top: 8px;
	padding: 6px 10px;
	font-size: 0.75rem;
}

.gc-company-status-hero {
	margin-top: 10px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.gc-company-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 16%, transparent);
}

.gc-company-status-open {
	background: rgba(31, 122, 74, 0.08);
	border-color: rgba(31, 122, 74, 0.16);
	color: var(--gc-color-success);
}

.gc-company-status-warning {
	background: rgba(191, 135, 24, 0.12);
	border-color: rgba(191, 135, 24, 0.18);
	color: #8a650f;
}

.gc-company-status-info {
	background: rgba(28, 100, 242, 0.08);
	border-color: rgba(28, 100, 242, 0.14);
	color: #1d4ed8;
}

.gc-company-status-closed {
	background: rgba(185, 28, 28, 0.08);
	border-color: rgba(185, 28, 28, 0.16);
	color: #b42318;
}

.gc-company-status-muted {
	background: rgba(248, 244, 239, 0.88);
	color: rgba(71, 85, 105, 0.86);
}

.gc-preview-status-detail {
	display: block;
	margin-top: -2px;
	color: var(--gc-color-text-muted);
	font-size: 0.78rem;
	line-height: 1.55;
}

.gc-company-hours-list {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.gc-company-hours-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 12px;
	border-radius: 16px;
	background: rgba(246, 241, 235, 0.62);
	font-size: 0.9rem;
}

.gc-company-hours-row span {
	color: rgba(71, 85, 105, 0.88);
	font-weight: 600;
}

.gc-company-hours-row strong {
	font-size: 0.88rem;
}

.gc-company-hours-row.is-today {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: inset 0 0 0 1px rgba(31, 122, 74, 0.12);
}

.gc-company-app-fact-card-open .gc-company-app-fact-icon {
	background: rgba(31, 122, 74, 0.12);
	color: var(--gc-color-success);
}

.gc-company-app-fact-card-warning .gc-company-app-fact-icon {
	background: rgba(191, 135, 24, 0.14);
	color: #8a650f;
}

.gc-company-app-fact-card-closed .gc-company-app-fact-icon {
	background: rgba(185, 28, 28, 0.12);
	color: #b42318;
}
