/**
 * Public CSS for Contato Guia Comercial.
 * Directory, Single Company Profile & Auth Forms.
 */

:root {
	/* Paleta Oficial Você Aqui */
	--gc-p-primary: #0052CC;
	--gc-p-primary-hover: #003E99;
	--gc-p-accent: #FF6D00;
	--gc-p-accent-hover: #E65100;
	--gc-p-wa: #009E49;
	--gc-p-wa-hover: #007A37;
	--gc-p-bg: #F8FAFC;
	--gc-p-surface: #FFFFFF;
	--gc-p-border: #E2E8F0;
	--gc-p-text: #0F172A;
	--gc-p-text-muted: #64748B;
	--gc-p-radius: 12px;
	--gc-p-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
}

.gc-public-directory-container,
.gc-single-company-container,
.gc-auth-container {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	color: var(--gc-p-text);
	line-height: 1.6;
	box-sizing: border-box;
}

.gc-public-directory-container *,
.gc-single-company-container *,
.gc-auth-container * {
	box-sizing: border-box;
}

/* Hero Section */
.gc-directory-hero {
	text-align: center;
	padding: 40px 20px;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border-radius: var(--gc-p-radius);
	color: #fff;
	margin-bottom: 30px;
}

.gc-hero-title {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 10px 0;
	color: #ffffff;
}

.gc-hero-subtitle {
	font-size: 16px;
	color: #94a3b8;
	margin: 0 0 30px 0;
}

/* Live Search Box */
.gc-search-box-card {
	background: #ffffff;
	padding: 12px;
	border-radius: 14px;
	max-width: 1050px;
	margin: 0 auto;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

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

.gc-input-group {
	display: flex;
	align-items: center;
	background: #f1f5f9;
	border-radius: 8px;
	padding: 4px 12px;
	border: 1px solid transparent;
}

.gc-input-group:focus-within {
	border-color: var(--gc-p-primary);
	background: #fff;
}

.gc-input-group .dashicons {
	color: #94a3b8;
	font-size: 18px;
	margin-right: 6px;
}

.gc-input-group input, .gc-input-group select {
	border: none !important;
	background: transparent !important;
	padding: 10px 6px !important;
	font-size: 14px !important;
	outline: none !important;
	width: 100%;
	color: #1e293b;
}

.gc-input-search   { flex: 2 1 200px; }
.gc-input-category { flex: 1.2 1 140px; }
.gc-input-state    { flex: 1 1 130px; }
.gc-input-city     { flex: 1.2 1 140px; }

@media (max-width: 900px) {
	.gc-search-box-card {
		padding: 12px !important;
		box-sizing: border-box !important;
	}

	.gc-search-fields-row {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 10px !important;
		width: 100% !important;
	}

	.gc-input-group {
		width: 100% !important;
		flex: 1 1 auto !important;
		box-sizing: border-box !important;
		min-width: 100% !important;
	}

	.gc-input-search,
	.gc-input-category,
	.gc-input-state,
	.gc-input-city {
		width: 100% !important;
		flex: 1 1 auto !important;
	}

	.gc-btn-search {
		width: 100% !important;
		padding: 14px 20px !important;
		font-size: 16px !important;
		justify-content: center !important;
		box-sizing: border-box !important;
	}
}

/* Category Pills Carousel */
.gc-category-pills-wrap {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 10px 0 20px 0;
	margin-bottom: 20px;
	scrollbar-width: thin;
}

.gc-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #ffffff;
	border: 1px solid var(--gc-p-border);
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 500;
	color: var(--gc-p-text);
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.gc-cat-pill:hover, .gc-cat-pill.active {
	background: var(--gc-p-primary);
	color: #ffffff;
	border-color: var(--gc-p-primary);
}

.gc-cat-pill .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

/* Toolbar */
.gc-directory-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	padding: 12px 16px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid var(--gc-p-border);
	font-size: 14px;
	flex-wrap: wrap;
	gap: 12px;
}

.gc-toolbar-count {
	font-weight: 600;
	color: var(--gc-p-text-muted);
}

.gc-toolbar-sorting select {
	padding: 6px 10px;
	border-radius: 6px;
	border: 1px solid var(--gc-p-border);
}

/* Directory Cards Grid */
.gc-directory-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
	position: relative;
	min-height: 200px;
}

.gc-directory-card {
	background: var(--gc-p-surface);
	border: 1px solid var(--gc-p-border);
	border-radius: var(--gc-p-radius);
	overflow: hidden;
	box-shadow: var(--gc-p-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gc-directory-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gc-featured-card {
	border: 2px solid #f59e0b;
}

.gc-card-cover {
	height: 140px;
	background-color: #334155;
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 12px;
}

.gc-featured-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: #f59e0b;
	color: #fff;
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
}

.gc-open-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 3px 8px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
}

.gc-open-badge.is-open   { background: #dcfce7; color: #15803d; }
.gc-open-badge.is-closed { background: #fee2e2; color: #b91c1c; }

.gc-card-body-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
}

.gc-card-avatar {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: #ffffff;
	border: 3px solid #ffffff;
	box-shadow: 0 2px 5px rgba(0,0,0,0.15);
	position: absolute;
	top: -28px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.gc-card-meta {
	margin-top: 18px;
	flex: 1;
}

.gc-card-cat {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--gc-p-primary);
	letter-spacing: 0.05em;
}

.gc-card-title {
	margin: 6px 0;
	font-size: 17px;
	font-weight: 700;
}

.gc-card-title a {
	color: var(--gc-p-text);
	text-decoration: none;
}

.gc-card-title a:hover {
	color: var(--gc-p-primary);
}

.gc-card-loc {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--gc-p-text-muted);
	margin-bottom: 8px;
}

.gc-card-excerpt {
	font-size: 13px;
	color: var(--gc-p-text-muted);
	margin: 8px 0 16px 0;
}

/* Card Actions */
.gc-card-footer-actions {
	display: flex;
	gap: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--gc-p-border);
}

.gc-btn-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}

.gc-btn-wa   { background: #dcfce7; color: #15803d; }
.gc-btn-wa:hover { background: var(--gc-p-wa); color: #fff; }
.gc-btn-tel  { background: #f1f5f9; color: var(--gc-p-text); }
.gc-btn-tel:hover { background: #e2e8f0; }
.gc-btn-view { background: var(--gc-p-primary); color: #fff; margin-left: auto; }
.gc-btn-view:hover { background: var(--gc-p-primary-hover); color: #fff; }

/* Single Company Profile */
.gc-single-company-container {
	max-width: 1140px;
	margin: 30px auto;
	padding: 0 16px;
}

.gc-company-hero {
	background-color: #0f172a;
	background-size: cover;
	background-position: center;
	border-radius: var(--gc-p-radius);
	padding: 40px 30px;
	color: #fff;
	margin-bottom: 20px;
}

.gc-hero-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.gc-hero-avatar {
	width: 100px;
	height: 100px;
	border-radius: 16px;
	background: #fff;
	border: 3px solid rgba(255,255,255,0.2);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.gc-hero-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-hero-avatar .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: #0f172a;
}

.gc-company-name {
	font-size: 28px;
	font-weight: 800;
	margin: 8px 0;
	color: #ffffff;
}

.gc-hero-address {
	color: #cbd5e1;
	font-size: 14px;
	margin: 0;
}

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

.gc-badge-cat { background: rgba(255,255,255,0.15); color: #fff; }
.gc-badge-featured { background: #f59e0b; color: #fff; }
.gc-badge-open { background: #22c55e; color: #fff; }
.gc-badge-closed { background: #ef4444; color: #fff; }

/* CTAs Bar */
.gc-company-cta-bar {
	background: #ffffff;
	border: 1px solid var(--gc-p-border);
	border-radius: var(--gc-p-radius);
	padding: 16px;
	margin-bottom: 24px;
	box-shadow: var(--gc-p-shadow);
}

.gc-cta-bar-inner {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.gc-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.2s;
}

.gc-cta-wa  { background: var(--gc-p-wa); color: #fff; flex: 1; justify-content: center; min-width: 180px; }
.gc-cta-wa:hover { background: var(--gc-p-wa-hover); color: #fff; }
.gc-cta-tel { background: #0f172a; color: #fff; }
.gc-cta-tel:hover { background: #1e293b; }
.gc-cta-web { background: var(--gc-p-primary); color: #fff; }
.gc-cta-web:hover { background: var(--gc-p-primary-hover); }
.gc-cta-map { background: #f1f5f9; color: var(--gc-p-text); border: 1px solid var(--gc-p-border); }

/* Layout Grid */
.gc-company-content-layout {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.gc-content-main-col { flex: 1 1 68%; }
.gc-content-side-col { flex: 1 1 32%; }

.gc-section-card {
	background: #ffffff;
	border: 1px solid var(--gc-p-border);
	border-radius: var(--gc-p-radius);
	padding: 24px;
	margin-bottom: 24px;
	box-shadow: var(--gc-p-shadow);
}

.gc-section-card h2 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px 0;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid var(--gc-p-border);
	padding-bottom: 12px;
}

.gc-side-card {
	background: #ffffff;
	border: 1px solid var(--gc-p-border);
	border-radius: var(--gc-p-radius);
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: var(--gc-p-shadow);
}

.gc-side-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 14px 0;
	display: flex;
	align-items: center;
	gap: 6px;
}

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

.gc-side-hours-list li {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 13px;
}

.gc-side-hours-list li.is-today {
	font-weight: 700;
	color: var(--gc-p-primary);
}

.gc-side-social-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gc-social-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	background: #f8fafc;
	color: var(--gc-p-text);
	border: 1px solid var(--gc-p-border);
}

.gc-social-btn:hover { background: #f1f5f9; }

/* Public Products & Gallery */
.gc-public-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.gc-pub-prod-card {
	border: 1px solid var(--gc-p-border);
	border-radius: 8px;
	overflow: hidden;
	background: #f8fafc;
}

.gc-pub-prod-img {
	height: 120px;
	background: #e2e8f0;
	overflow: hidden;
}

.gc-pub-prod-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gc-pub-prod-info {
	padding: 12px;
}

.gc-pub-prod-info h3 {
	font-size: 15px;
	margin: 0 0 4px 0;
}

.gc-pub-prod-price {
	color: #16a34a;
	font-weight: 700;
	font-size: 14px;
}

.gc-public-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 12px;
}

.gc-pub-gallery-item {
	height: 110px;
	border-radius: 8px;
	overflow: hidden;
	display: block;
}

.gc-pub-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.gc-pub-gallery-item:hover img {
	transform: scale(1.05);
}

/* Reviews List & Form */
.gc-pub-review-card {
	padding: 16px;
	border-radius: 8px;
	background: #f8fafc;
	margin-bottom: 14px;
}

.gc-pub-review-top {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6px;
}

.gc-pub-owner-reply {
	background: #ffffff;
	border-left: 3px solid #16a34a;
	padding: 10px 14px;
	border-radius: 4px;
	margin-top: 10px;
	font-size: 13px;
}

.gc-add-review-box {
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--gc-p-border);
}

.gc-star-rating-inputs {
	display: flex;
	gap: 12px;
	margin: 8px 0 16px 0;
}

.gc-star-rating-inputs label {
	cursor: pointer;
	font-weight: 600;
	color: #f59e0b;
}

/* Auth Pages (Login / Register) */
.gc-auth-container {
	max-width: 520px;
	margin: 40px auto;
	padding: 0 16px;
}

.gc-auth-card {
	background: #ffffff;
	border: 1px solid var(--gc-p-border);
	border-radius: var(--gc-p-radius);
	padding: 30px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

.gc-auth-header {
	text-align: center;
	margin-bottom: 24px;
}

.gc-auth-header h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 6px 0;
}

.gc-auth-header p {
	color: var(--gc-p-text-muted);
	font-size: 14px;
	margin: 0;
}

.gc-auth-footer {
	text-align: center;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--gc-p-border);
	font-size: 13px;
}

.gc-btn-block { width: 100%; }

/* Pagination & Spinner */
.gc-public-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 30px;
}

.gc-page-btn {
	padding: 8px 16px;
	background: #fff;
	border: 1px solid var(--gc-p-border);
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
}

.gc-page-btn.active {
	background: var(--gc-p-primary);
	color: #fff;
	border-color: var(--gc-p-primary);
}

.gc-loading-overlay {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.gc-spinner {
	width: 36px;
	height: 36px;
	border: 4px solid #e2e8f0;
	border-top-color: var(--gc-p-primary);
	border-radius: 50%;
	animation: gc-spin 0.8s linear infinite;
}

@keyframes gc-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 860px) {
	.gc-company-content-layout {
		flex-direction: column;
	}
	.gc-content-main-col, .gc-content-side-col {
		flex: 1 1 100%;
		width: 100%;
	}
	.gc-cta-bar-inner {
		flex-direction: column;
	}
}

/* ==========================================================================
   AUTH & FORMS (LOGIN & CADASTRO)
   ========================================================================== */

.gc-auth-page-wrapper {
	width: 100%;
	padding: 20px 0 40px 0;
}

.gc-auth-container {
	max-width: 480px;
	margin: 0 auto;
	padding: 0 16px;
}

.gc-register-container {
	max-width: 660px;
}

.gc-auth-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 40px 36px;
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.gc-auth-header {
	text-align: center;
	margin-bottom: 28px;
}

.gc-auth-icon-badge {
	width: 60px;
	height: 60px;
	background: #ebf3ff;
	color: #0052cc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px auto;
}

.gc-auth-icon-badge.gc-badge-orange {
	background: #fff3e0;
	color: #ff6d00;
}

.gc-auth-icon-badge .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
}

.gc-auth-header h2 {
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 8px 0;
	letter-spacing: -0.01em;
}

.gc-auth-header p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
	line-height: 1.5;
}

/* Form Sections */
.gc-form-section {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.gc-form-section-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	border-bottom: 1px solid #e2e8f0;
	padding-bottom: 10px;
}

.gc-step-num {
	width: 26px;
	height: 26px;
	background: #0052cc;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
}

.gc-form-section-head h3 {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

/* Form Groups & Inputs */
.gc-form-group {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
}

.gc-form-group label {
	font-size: 13px;
	font-weight: 600;
	color: #334155;
	margin-bottom: 6px;
	display: block;
}

.gc-form-label-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.gc-form-label-row label {
	margin-bottom: 0;
}

.gc-forgot-link {
	font-size: 12px;
	color: #0052cc;
	text-decoration: none;
	font-weight: 500;
}

.gc-forgot-link:hover {
	text-decoration: underline;
}

.gc-input-with-icon,
.gc-select-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.gc-input-with-icon .dashicons,
.gc-select-wrap .dashicons {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	font-size: 20px;
	width: 20px;
	height: 20px;
	pointer-events: none;
	z-index: 5;
}

.gc-input,
.gc-auth-form input[type="text"],
.gc-auth-form input[type="email"],
.gc-auth-form input[type="password"],
.gc-auth-form select,
.gc-auth-form textarea {
	width: 100% !important;
	box-sizing: border-box !important;
	padding-top: 13px !important;
	padding-bottom: 13px !important;
	padding-right: 14px !important;
	padding-left: 14px !important;
	border: 1.5px solid #cbd5e1 !important;
	border-radius: 10px !important;
	background: #ffffff !important;
	font-size: 14px !important;
	color: #0f172a !important;
	outline: none !important;
	font-family: inherit !important;
	line-height: normal !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
}

/* Specificity override for inputs with icon */
.gc-auth-form .gc-input-with-icon input,
.gc-auth-form .gc-input-with-icon input[type="text"],
.gc-auth-form .gc-input-with-icon input[type="email"],
.gc-auth-form .gc-input-with-icon input[type="password"],
.gc-auth-form .gc-input-with-icon .gc-input,
.gc-auth-form .gc-select-wrap select,
.gc-auth-form .gc-select-wrap .gc-select {
	padding-left: 48px !important;
}

.gc-input:focus,
.gc-auth-form input[type="text"]:focus,
.gc-auth-form input[type="email"]:focus,
.gc-auth-form input[type="password"]:focus,
.gc-auth-form select:focus,
.gc-auth-form textarea:focus {
	border-color: #0052cc !important;
	box-shadow: 0 0 0 3.5px rgba(0, 82, 204, 0.15) !important;
}

.gc-form-row {
	display: flex;
	gap: 14px;
	margin-bottom: 0;
}

.gc-form-row .gc-form-group {
	flex: 1;
}

.gc-col-6 { flex: 1 1 50%; }
.gc-col-8 { flex: 2 1 65%; }
.gc-col-4 { flex: 1 1 35%; }

/* Checkboxes */
.gc-checkbox-label {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #475569 !important;
	cursor: pointer;
}

.gc-checkbox-label input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	border-radius: 4px !important;
	accent-color: #0052cc;
	cursor: pointer;
	margin: 0 !important;
}

.gc-remember-row {
	margin-bottom: 22px;
}

.gc-terms-box {
	background: #f1f5f9;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 22px;
}

/* Submit Buttons */
.gc-btn-block {
	width: 100% !important;
}

.gc-btn-lg {
	padding: 14px 20px !important;
	font-size: 15px !important;
}

.gc-btn-cta {
	background: #ff6d00 !important;
	color: #ffffff !important;
	border-radius: 10px !important;
	font-weight: 700 !important;
	border: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(255, 109, 0, 0.35) !important;
	transition: all 0.2s ease !important;
}

.gc-btn-cta:hover {
	background: #e65100 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 109, 0, 0.45) !important;
}

/* Auth Footer */
.gc-auth-footer {
	border-top: 1px solid #e2e8f0;
	margin-top: 28px;
	padding-top: 20px;
	text-align: center;
}

.gc-auth-footer p {
	font-size: 14px;
	color: #64748b;
	margin: 0;
}

.gc-auth-footer a {
	color: #0052cc;
	font-weight: 700;
	text-decoration: none;
}

.gc-auth-footer a:hover {
	color: #ff6d00;
	text-decoration: underline;
}

@media (max-width: 600px) {
	.gc-auth-card {
		padding: 28px 20px;
	}
	.gc-form-row {
		flex-direction: column;
		gap: 0;
	}
}

