:root {
	/* ========== COLORS ========== */
	/* Primary (standardized to #d32323 for consistency) */
	--geo-primary: #d32323;
	--geo-primary-hover: #b91c1c;
	--geo-primary-light: #fee2e2;
	--geo-primary-dark: #991b1b;
	
	/* Semantic Colors */
	--geo-success: #10b981;
	--geo-success-light: #d1fae5;
	--geo-warning: #f59e0b;
	--geo-warning-light: #fef3c7;
	--geo-error: #ef4444;
	--geo-error-light: #fee2e2;
	--geo-info: #3b82f6;
	--geo-info-light: #dbeafe;
	
	/* Neutral Colors */
	--geo-white: #ffffff;
	--geo-black: #000000;
	--geo-gray-50: #f9fafb;
	--geo-gray-100: #f3f4f6;
	--geo-gray-200: #e5e7eb;
	--geo-gray-300: #d1d5db;
	--geo-gray-400: #9ca3af;
	--geo-gray-500: #6b7280;
	--geo-gray-600: #4b5563;
	--geo-gray-700: #374151;
	--geo-gray-800: #1f2937;
	--geo-gray-900: #111827;
	
	/* Aliases for easier use */
	--geo-bg: var(--geo-gray-50);
	--geo-surface: var(--geo-white);
	--geo-border: var(--geo-gray-200);
	--geo-text: var(--geo-gray-900);
	--geo-text-light: var(--geo-gray-600);
	--geo-text-muted: var(--geo-gray-500);
	
	/* ========== SPACING (8px base system) ========== */
	--geo-space-1: 4px;
	--geo-space-2: 8px;
	--geo-space-3: 12px;
	--geo-space-4: 16px;
	--geo-space-5: 20px;
	--geo-space-6: 24px;
	--geo-space-8: 32px;
	--geo-space-10: 40px;
	--geo-space-12: 48px;
	--geo-space-16: 64px;
	--geo-space-20: 80px;
	
	/* ========== TYPOGRAPHY ========== */
	--geo-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	
	/* Font Sizes */
	--geo-font-xs: 12px;
	--geo-font-sm: 14px;
	--geo-font-base: 16px;
	--geo-font-lg: 18px;
	--geo-font-xl: 20px;
	--geo-font-2xl: 24px;
	--geo-font-3xl: 30px;
	--geo-font-4xl: 36px;
	--geo-font-5xl: 48px;
	--geo-font-6xl: 60px;
	
	/* Font Weights */
	--geo-font-normal: 400;
	--geo-font-medium: 500;
	--geo-font-semibold: 600;
	--geo-font-bold: 700;
	--geo-font-extrabold: 800;
	
	/* Line Heights */
	--geo-leading-none: 1;
	--geo-leading-tight: 1.2;
	--geo-leading-snug: 1.375;
	--geo-leading-normal: 1.5;
	--geo-leading-relaxed: 1.625;
	--geo-leading-loose: 2;
	
	/* ========== BORDER RADIUS ========== */
	--geo-radius-none: 0;
	--geo-radius-sm: 6px;
	--geo-radius: 12px;
	--geo-radius-md: 12px;
	--geo-radius-lg: 16px;
	--geo-radius-xl: 20px;
	--geo-radius-2xl: 24px;
	--geo-radius-full: 9999px;
	
	/* ========== SHADOWS ========== */
	--geo-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
	--geo-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
	--geo-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--geo-shadow-md: 0 8px 18px rgba(0, 0, 0, 0.1);
	--geo-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
	--geo-shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
	--geo-shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.25);
	
	/* ========== TRANSITIONS ========== */
	--geo-transition-fast: 150ms ease;
	--geo-transition-base: 200ms ease;
	--geo-transition-slow: 300ms ease;
	--geo-transition-slower: 500ms ease;
	
	/* ========== Z-INDEX SCALE ========== */
	--geo-z-dropdown: 1000;
	--geo-z-sticky: 1020;
	--geo-z-fixed: 1030;
	--geo-z-modal-backdrop: 1040;
	--geo-z-modal: 1050;
	--geo-z-popover: 1060;
	--geo-z-tooltip: 1070;
}

/* ========== GLOBAL ACCESSIBILITY & UX ========== */

/* Focus States for Keyboard Navigation */
*:focus {
	outline: none;
}

*:focus-visible {
	outline: 2px solid var(--geo-primary);
	outline-offset: 2px;
	border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--geo-primary);
	outline-offset: 2px;
}

/* Loading States */
.geo-loading-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid var(--geo-gray-300);
	border-top-color: var(--geo-primary);
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

.geo-loading-spinner--lg {
	width: 24px;
	height: 24px;
	border-width: 3px;
}

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

/* Button Loading State */
.geo-btn.is-loading {
	position: relative;
	color: transparent;
	pointer-events: none;
	cursor: not-allowed;
}

.geo-btn.is-loading::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -8px;
	border: 2px solid var(--geo-white);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

/* Toast Notifications - CENTERED & RESPONSIVE */
.geo-toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: var(--geo-space-2);
	max-width: 400px;
	pointer-events: none;
}

/* CENTERED VARIANT - Center of screen on all devices */
.geo-toast-container--centered {
	top: 50% !important;
	left: 50% !important;
	right: auto !important;
	transform: translate(-50%, -50%) !important;
	max-width: 90vw !important;
	width: 500px !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: var(--geo-space-2) !important;
}

.geo-toast {
	background: var(--geo-white);
	border: 1px solid var(--geo-border);
	border-radius: var(--geo-radius-lg);
	padding: var(--geo-space-4);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: flex-start;
	gap: var(--geo-space-3);
	min-width: 300px;
	pointer-events: auto;
	opacity: 0;
	transform: scale(0.9) translateY(-20px);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Visible state - smooth pop-in animation */
.geo-toast.is-visible {
	opacity: 1;
	transform: scale(1) translateY(0);
}

/* CENTERED TOAST - Larger, more prominent */
.geo-toast--centered {
	min-width: 400px;
	padding: var(--geo-space-6);
	text-align: center;
	flex-direction: column;
	align-items: center;
}

.geo-toast--centered .geo-toast__icon {
	width: 48px;
	height: 48px;
	font-size: 24px;
	margin-bottom: var(--geo-space-2);
}

.geo-toast--centered .geo-toast__title {
	font-size: 18px;
	font-weight: 600;
}

.geo-toast--centered .geo-toast__message {
	font-size: 15px;
	max-width: 400px;
}

.geo-toast--centered .geo-toast__close {
	position: absolute;
	top: var(--geo-space-3);
	right: var(--geo-space-3);
}

@keyframes slideInRight {
	from {
		transform: translateX(400px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOutRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(400px);
		opacity: 0;
	}
}

.geo-toast.is-closing {
	opacity: 0;
	transform: scale(0.9) translateY(-20px);
}

.geo-toast__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.geo-toast--success .geo-toast__icon {
	background: var(--geo-success-light);
	color: var(--geo-success);
}

.geo-toast--error .geo-toast__icon {
	background: var(--geo-error-light);
	color: var(--geo-error);
}

.geo-toast--warning .geo-toast__icon {
	background: var(--geo-warning-light);
	color: var(--geo-warning);
}

.geo-toast--info .geo-toast__icon {
	background: var(--geo-info-light);
	color: var(--geo-info);
}

.geo-toast__content {
	flex: 1;
}

.geo-toast__title {
	font-weight: var(--geo-font-semibold);
	font-size: var(--geo-font-sm);
	color: var(--geo-text);
	margin: 0 0 4px 0;
}

.geo-toast__message {
	font-size: var(--geo-font-sm);
	color: var(--geo-text-light);
	margin: 0;
	line-height: var(--geo-leading-normal);
}

.geo-toast__close {
	flex-shrink: 0;
	background: none;
	border: none;
	color: var(--geo-gray-400);
	cursor: pointer;
	padding: 4px;
	line-height: 1;
	font-size: 18px;
	transition: color var(--geo-transition-fast);
}

.geo-toast__close:hover {
	color: var(--geo-text);
}

/* Toast Action Button */
.geo-toast__action {
	margin-top: var(--geo-space-3);
	padding: var(--geo-space-2) var(--geo-space-4);
	background: var(--geo-primary);
	color: var(--geo-white);
	border: none;
	border-radius: var(--geo-radius);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.geo-toast__action:hover {
	background: var(--geo-primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty States */
.geo-empty-state {
	text-align: center;
	padding: var(--geo-space-12) var(--geo-space-6);
	background: var(--geo-gray-50);
	border-radius: var(--geo-radius-lg);
	border: 2px dashed var(--geo-border);
}

.geo-empty-state__icon {
	font-size: 48px;
	color: var(--geo-gray-300);
	margin-bottom: var(--geo-space-4);
}

.geo-empty-state__title {
	font-size: var(--geo-font-2xl);
	font-weight: var(--geo-font-bold);
	color: var(--geo-text);
	margin: 0 0 var(--geo-space-2) 0;
}

.geo-empty-state__message {
	font-size: var(--geo-font-base);
	color: var(--geo-text-light);
	margin: 0 0 var(--geo-space-6) 0;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	line-height: var(--geo-leading-relaxed);
}

.geo-empty-state__action {
	margin-top: var(--geo-space-6);
}

/* Skeleton Loading */
.geo-skeleton {
	background: linear-gradient(
		90deg,
		var(--geo-gray-200) 0%,
		var(--geo-gray-100) 50%,
		var(--geo-gray-200) 100%
	);
	background-size: 200% 100%;
	animation: skeleton-loading 1.5s ease-in-out infinite;
	border-radius: var(--geo-radius-sm);
}

@keyframes skeleton-loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.geo-skeleton--text {
	height: 16px;
	margin-bottom: var(--geo-space-2);
}

.geo-skeleton--title {
	height: 24px;
	margin-bottom: var(--geo-space-3);
	width: 60%;
}

.geo-skeleton--card {
	height: 200px;
	border-radius: var(--geo-radius);
}

/* Mobile Toast Adjustments - Responsive centered design */
@media (max-width: 640px) {
	.geo-toast-container {
		left: var(--geo-space-4);
		right: var(--geo-space-4);
		top: var(--geo-space-4);
		max-width: none;
	}
	
	.geo-toast-container--centered {
		width: calc(100vw - var(--geo-space-8)) !important;
		max-width: calc(100vw - var(--geo-space-8)) !important;
		top: 50% !important;
		left: 50% !important;
		right: auto !important;
		transform: translate(-50%, -50%) !important;
	}
	
	.geo-toast {
		min-width: 0;
	}
	
	.geo-toast--centered {
		min-width: 0;
		padding: var(--geo-space-5);
	}
	
	.geo-toast--centered .geo-toast__icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.geo-toast--centered .geo-toast__title {
		font-size: 16px;
	}
	
	.geo-toast--centered .geo-toast__message {
		font-size: 14px;
	}
}

/* ===== Global plugin layout (single, profile, submit, etc.) ===== */
.geo-container {
	max-width: 1200px;
	margin: var(--geo-space-8) auto;
	background: var(--geo-surface);
	border-radius: var(--geo-radius-lg);
	box-shadow: var(--geo-shadow);
	padding: var(--geo-space-6);
	font-family: var(--geo-font);
	color: var(--geo-text);
}
.geo-container--archive { margin-top: 20px; }
.geo-container--single { margin-top: 20px; padding: 0; background: transparent; box-shadow: none; }

/* === REVAMPED SINGLE HERO === */
.geo-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .geo-hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.geo-hero__media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.geo-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.geo-hero-status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.geo-hero__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}
.geo-title {
    font-size: 36px;
    line-height: 1.1;
    margin: 0;
    color: #111827;
}
.geo-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.geo-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.geo-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 15px;
    color: #111;
}
.geo-rating-pill i { color: var(--geo-primary); }
.geo-rating-count { font-weight: 400; color: #666; font-size: 14px; }
.geo-cat-pill {
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}
.geo-address-row {
    font-size: 16px;
    color: #4b5563;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
}
.geo-address-row i { color: #9ca3af; }
.geo-cta-row {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.geo-cta-row .geo-btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
}
@media (max-width: 600px) {
    .geo-title { font-size: 28px; }
    .geo-hero__media { aspect-ratio: 3/2; }
    .geo-cta-row .geo-btn { padding: 12px; }
}

/* Buttons */
.geo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--geo-space-2);
	padding: var(--geo-space-3) var(--geo-space-5);
	border-radius: var(--geo-radius-sm);
	font-weight: var(--geo-font-semibold);
	font-size: var(--geo-font-sm);
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all var(--geo-transition-base);
	user-select: none;
}

.geo-btn:active {
	transform: translateY(1px);
}

.geo-btn:disabled,
.geo-btn.is-loading {
	opacity: 0.6;
	cursor: not-allowed;
}

.geo-btn--primary { 
	background: var(--geo-primary); 
	color: var(--geo-white); 
	border-color: var(--geo-primary);
	box-shadow: var(--geo-shadow-sm);
}

.geo-btn--primary:hover { 
	background: var(--geo-primary-hover); 
	border-color: var(--geo-primary-hover);
	box-shadow: var(--geo-shadow);
	transform: translateY(-1px);
}

.geo-btn--primary:active {
	transform: translateY(0);
	box-shadow: var(--geo-shadow-xs);
}

.geo-btn--ghost { 
	background: var(--geo-gray-100); 
	color: var(--geo-text); 
	border-color: var(--geo-gray-300); 
}

.geo-btn--ghost:hover { 
	background: var(--geo-gray-200); 
	border-color: var(--geo-gray-400);
}

.geo-btn--outline { 
	background: var(--geo-white); 
	color: var(--geo-primary); 
	border-color: var(--geo-primary); 
}

.geo-btn--outline:hover { 
	background: var(--geo-primary-light);
	transform: translateY(-1px);
	box-shadow: var(--geo-shadow-sm);
}

.geo-btn--saved { 
	background: var(--geo-primary-light); 
	color: var(--geo-primary); 
	border-color: var(--geo-primary); 
}

/* Cards & sections */
.geo-card { 
	background: var(--geo-surface, #fff);
	border: 1px solid rgba(229, 231, 235, 0.6);
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	position: relative;
}

.geo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-color: rgba(239, 68, 68, 0.2);
}

.geo-card:active {
	transform: translateY(-2px);
}
.geo-card.geo-section { border-radius: 12px; box-shadow: 0 6px 22px rgba(0,0,0,0.06); border-color: #eef0f3; }
.geo-section { margin-bottom: 24px; }
.geo-section + .geo-section { margin-top: 8px; }
.geo-section__title { margin: 0 0 12px; font-size: 20px; font-weight: 700; color: var(--geo-text); }
.geo-section__muted { color: var(--geo-muted); font-size: 13px; }

/* Grid layout */
.geo-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
@media (min-width: 901px) { .geo-grid { gap: 36px; } }
@media (max-width: 1023px) { .geo-grid { grid-template-columns: 1fr; } }
.geo-sidebar { display: flex; flex-direction: column; gap: 20px; padding-left: 16px; }
.geo-main { display: flex; flex-direction: column; gap: 24px; }
.geo-sidebar { padding-left: 16px; }
/* Hide sidebar on mobile and tablet - desktop only */
@media (max-width: 1023px) { 
	.geo-sidebar { 
		display: none !important; 
	} 
}
.geo-sticky {
	position: sticky;
	/* INCREASED to clear sticky header/admin bar */
	top: 120px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	z-index: 9;
}
.geo-sticky + .geo-sticky { margin-top: 12px; }

/* Center the Load More Reviews button */
.geo-review-pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	width: 100%;
}

/* Pills */
.geo-pill { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 12px; background: #f0f0f0; color: #555; font-weight: 600; margin-right: 5px; }
.geo-pill--open { background: #e6fffa; color: #047857; }
.geo-pill--closed { background: #fff5f5; color: #c53030; }
.geo-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; }

/* Forms */
.geo-form { display: flex; flex-direction: column; gap: 10px; }
.geo-label { font-weight: 700; font-size: 14px; }
.geo-select, .geo-textarea, .geo-submit input[type="text"] { padding: 10px; border: 1px solid #ccc; border-radius: 4px; width: 100%; font-size: 15px; }
.geo-submit { background: #fff; padding: 30px; border: 1px solid #e6e6e6; border-radius: 4px; max-width: 700px; margin: 0 auto; }

/* Reviews */
.geo-reviews { display: flex; flex-direction: column; gap: 16px; }
.geo-review { 
	padding-bottom: 20px; 
	margin-bottom: 24px; 
	border-bottom: 1px solid rgba(229, 231, 235, 0.6);
	transition: all 0.3s ease;
}

.geo-review:hover {
	border-bottom-color: rgba(239, 68, 68, 0.2);
}

.geo-review--card { 
	border: 1px solid rgba(229, 231, 235, 0.8);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
	margin-bottom: 20px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.geo-review--card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--geo-primary, #E00707), #ef4444);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.geo-review--card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.geo-review--card:hover::before {
	opacity: 1;
}
.geo-review__stars { 
	color: var(--geo-primary, #E00707); 
	letter-spacing: 2px; 
	font-weight: 700;
	font-size: 14px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.geo-review--card:hover .geo-review__stars {
	transform: scale(1.05);
	text-shadow: 0 2px 4px rgba(224, 7, 7, 0.3);
}

.geo-review__header { 
	display: flex; 
	justify-content: flex-start; 
	gap: 16px; 
	align-items: center; 
	flex-wrap: wrap;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(229, 231, 235, 0.4);
}

.geo-review__avatar { 
	position: relative;
}

.geo-review__avatar img { 
	width: 56px; 
	height: 56px; 
	border-radius: 50%; 
	object-fit: cover;
	border: 3px solid transparent;
	background: linear-gradient(white, white) padding-box,
				linear-gradient(135deg, #f8fafc, #e2e8f0) border-box;
	transition: all 0.3s ease;
}

.geo-review--card:hover .geo-review__avatar img {
	transform: scale(1.05);
	border-color: rgba(239, 68, 68, 0.3);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.geo-review__meta { 
	display: flex; 
	flex-direction: column; 
	gap: 6px;
	flex: 1;
}

.geo-review__author-row {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.geo-review__author {
	font-weight: 700;
	font-size: 16px;
	color: #111827;
	transition: color 0.3s ease;
}

.geo-review__reply-cta { 
	margin-top: 16px; 
	padding-top: 16px; 
	border-top: 1px solid rgba(229, 231, 235, 0.4);
	background: linear-gradient(135deg, #f8fafc, #ffffff);
	padding: 16px;
	border-radius: 12px;
	margin-top: 16px;
	transition: all 0.3s ease;
}

.geo-review__reply-cta:hover {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border-color: rgba(239, 68, 68, 0.2);
}

.geo-review__reply-cta .geo-btn { 
	margin-top: 8px;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border: 1px solid rgba(229, 231, 235, 0.6);
	color: #475569;
	transition: all 0.3s ease;
}

.geo-review__reply-cta .geo-btn:hover {
	background: linear-gradient(135deg, var(--geo-primary, #E00707), #dc2626);
	border-color: var(--geo-primary, #E00707);
	color: white;
	transform: translateY(-1px);
}

.geo-review__reply-cta textarea { 
	width: 100%; 
	border: 2px solid rgba(229, 231, 235, 0.6);
	border-radius: 12px;
	padding: 12px 16px;
	margin: 8px 0;
	font-size: 14px;
	font-family: inherit;
	resize: vertical;
	min-height: 80px;
	transition: all 0.3s ease;
	background: #ffffff;
}

.geo-review__reply-cta textarea:focus {
	border-color: var(--geo-primary, #E00707);
	outline: none;
	box-shadow: 0 0 0 3px rgba(224, 7, 7, 0.1);
	background: linear-gradient(135deg, #ffffff, #fafbfc);
}

/* Spacing between review form and review list */
#geo-review-list {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 2px solid #e5e7eb;
}

.geo-review-replies { 
	margin-top: 24px; 
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.geo-review-reply { 
	padding: 16px;
	border: 1px solid rgba(229, 231, 235, 0.6);
	border-radius: 12px;
	background: linear-gradient(135deg, #fafbfc, #ffffff);
	position: relative;
	transition: all 0.3s ease;
}

.geo-review-reply:hover {
	border-color: rgba(239, 68, 68, 0.2);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.geo-review-reply::before {
	content: '↳';
	position: absolute;
	top: 16px;
	left: -8px;
	color: rgba(239, 68, 68, 0.6);
	font-size: 16px;
	font-weight: bold;
}

.geo-review-reply__meta { 
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	font-size: 12px;
	color: #64748b;
	margin-bottom: 8px;
}

.geo-review-reply__text { 
	margin-top: 8px;
	font-size: 14px;
	color: #374151;
	line-height: 1.5;
	padding: 12px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 8px;
	border-left: 3px solid rgba(239, 68, 68, 0.3);
}
.geo-review__text { 
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.6;
	color: #374151;
	background: linear-gradient(135deg, #fafbfc, #ffffff);
	padding: 16px;
	border-radius: 12px;
	border: 1px solid rgba(229, 231, 235, 0.4);
	position: relative;
	transition: all 0.3s ease;
}

.geo-review__text::before {
	content: '"';
	position: absolute;
	top: 8px;
	left: 8px;
	font-size: 24px;
	color: rgba(239, 68, 68, 0.1);
	font-family: Georgia, serif;
}

.geo-review--card:hover .geo-review__text {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border-color: rgba(239, 68, 68, 0.2);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.geo-review__helpful { 
	margin-top: 16px; 
	display: flex; 
	align-items: center; 
	gap: 12px; 
	flex-wrap: wrap;
	padding: 12px;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border-radius: 12px;
	border: 1px solid rgba(226, 232, 240, 0.6);
}

.geo-review__helpful span {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

.geo-review__helpful button { 
	border: none; 
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border-radius: 20px;
	padding: 8px 16px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #475569;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.geo-review__helpful button:hover { 
	background: linear-gradient(135deg, #ffffff, #f1f5f9);
	color: var(--geo-primary, #E00707);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.geo-review__helpful button.voted { 
	background: linear-gradient(135deg, var(--geo-primary, #E00707), #dc2626);
	color: white;
	box-shadow: 0 2px 6px rgba(224, 7, 7, 0.3);
	transform: translateY(-1px);
}

.geo-review__helpful button.voted:hover {
	background: linear-gradient(135deg, #dc2626, #b91c1c);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(224, 7, 7, 0.4);
}

/* ===== INTERACTIVE STAR RATING COMPONENT ===== */
.geo-star-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.geo-star {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	font-size: 28px;
	color: #d1d5db;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1);
	outline: none;
	position: relative;
}

.geo-star:hover {
	color: #fbbf24;
	transform: scale(1.1);
}

.geo-star:hover .fa-star {
	filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.geo-star:focus {
	outline: 2px solid var(--geo-primary, #E00707);
	outline-offset: 2px;
	border-radius: 50%;
}

.geo-star.active {
	color: #f59e0b;
	animation: geo-star-pop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.geo-star.hover {
	color: #fbbf24;
}

@keyframes geo-star-pop {
	0% { transform: scale(1); }
	50% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

.geo-star-rating-text {
	font-size: 13px;
	color: #6b7280;
	margin-left: 8px;
	font-weight: 500;
	transition: color 0.2s ease;
}

.geo-star-rating[data-rating="1"] .geo-star-rating-text { color: #ef4444; }
.geo-star-rating[data-rating="2"] .geo-star-rating-text { color: #f97316; }
.geo-star-rating[data-rating="3"] .geo-star-rating-text { color: #eab308; }
.geo-star-rating[data-rating="4"] .geo-star-rating-text { color: #84cc16; }
.geo-star-rating[data-rating="5"] .geo-star-rating-text { color: #22c55e; }

/* Mobile responsive star rating */
@media (max-width: 640px) {
	.geo-star {
		font-size: 24px;
	}
	
	.geo-star-rating-text {
		font-size: 12px;
		margin-left: 6px;
	}
}

/* Touch-friendly star rating */
@media (hover: none) and (pointer: coarse) {
	.geo-star {
		font-size: 32px;
		padding: 4px;
	}
}

/* Enhanced mobile cards */
@media (max-width: 640px) {
	.geo-card {
		border-radius: 12px;
		margin-bottom: 12px;
	}
	
	.geo-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
	}
	
	.geo-card-thumb {
		aspect-ratio: 16/9;
	}
	
	.geo-card-body {
		padding: 16px;
	}
	
	.geo-card-title {
		font-size: 16px;
		line-height: 1.2;
	}
	
	.geo-card-pills {
		margin-top: 10px;
		gap: 6px;
	}
	
	.geo-pill-sm {
		padding: 4px 8px;
		font-size: 11px;
	}
	
	.geo-card-status {
		top: 8px;
		left: 8px;
		padding: 4px 8px;
		font-size: 10px;
	}
}

/* Enhanced mobile reviews */
@media (max-width: 640px) {
	.geo-review--card {
		padding: 16px;
		border-radius: 12px;
		margin-bottom: 16px;
	}
	
	.geo-review__header {
		gap: 12px;
		padding-bottom: 10px;
	}
	
	.geo-review__avatar img {
		width: 48px;
		height: 48px;
	}
	
	.geo-review__author {
		font-size: 14px;
	}
	
	.geo-review__stars {
		font-size: 12px;
		letter-spacing: 1px;
	}
	
	.geo-review__text {
		padding: 12px;
		font-size: 14px;
		margin-top: 12px;
	}
	
	.geo-review__text::before {
		font-size: 20px;
		top: 6px;
		left: 6px;
	}
	
	.geo-review__helpful {
		padding: 8px 10px;
		gap: 8px;
		flex-wrap: wrap;
	}
	
	.geo-review__helpful button {
		padding: 6px 12px;
		font-size: 12px;
	}
	
	.geo-review__reply-cta {
		padding: 12px;
		margin-top: 12px;
	}
	
	.geo-review__reply-cta textarea {
		padding: 10px 12px;
		font-size: 13px;
		min-height: 70px;
	}
	
	.geo-review-reply {
		padding: 12px;
	}
	
	.geo-review-reply__text {
		padding: 10px;
		font-size: 13px;
	}
}

/* Enhanced mobile search form */
@media (max-width: 480px) {
	.geo-archive__search {
		margin-bottom: 20px;
	}
	
	.geo-archive__search-form {
		padding: 16px;
		border-radius: 16px;
		gap: 12px;
	}
	
	.geo-archive__search-form input[type="text"],
	.geo-archive__search-form select,
	.geo-archive__search-form button {
		padding: 12px 14px;
		font-size: 14px;
	}
	
	.geo-archive__search-form button {
		min-height: 48px;
		min-width: auto;
	}
	
	.geo-search-suggestions {
		left: 16px;
		right: 16px;
	}
	
	.geo-search-suggestion {
		padding: 10px 12px;
		font-size: 14px;
	}
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
	.geo-card,
	.geo-review--card,
	.geo-archive__search-form input,
	.geo-archive__search-form select,
	.geo-review__helpful button {
		min-height: 44px;
	}
	
	.geo-card:hover,
	.geo-review--card:hover {
		transform: none;
	}
	
	.geo-card:hover .geo-card-thumb img,
	.geo-review--card:hover .geo-review__avatar img {
		transform: none;
	}
	
	/* Focus states for touch */
	.geo-card:focus-within,
	.geo-review--card:focus-within {
		border-color: var(--geo-primary, #E00707);
		box-shadow: 0 0 0 2px rgba(224, 7, 7, 0.2);
	}
}

/* Small mobile optimizations */
@media (max-width: 360px) {
	.geo-container {
		margin: 8px auto;
		padding: 12px;
	}
	
	.geo-card-body {
		padding: 12px;
	}
	
	.geo-card-title {
		font-size: 15px;
	}
	
	.geo-review--card {
		padding: 12px;
	}
	
	.geo-review__text {
		padding: 10px;
		font-size: 13px;
	}
	
	.geo-archive__search-form {
		padding: 12px;
		gap: 10px;
	}
	
	.geo-archive__search-form input[type="text"],
	.geo-archive__search-form select,
	.geo-archive__search-form button {
		padding: 10px 12px;
		font-size: 13px;
	}
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
	.geo-card-thumb {
		aspect-ratio: 18/10;
	}
	
	.geo-archive__search-form {
		padding: 16px 20px;
	}
	
	.geo-review--card {
		padding: 16px 20px;
	}
}
/* Extra breathing room below review list submit button */
.geo-review__form + .geo-review { margin-top: 16px; }

/* Profile & Auth */
.geo-profile-stat { display:flex; align-items:center; gap:10px; padding:12px; border:1px solid #e6e6e6; border-radius:4px; background:#f9fafb; }
.geo-profile-stat__value { font-weight:700; font-size:18px; }
.geo-profile-tabs { display:flex; gap:8px; margin:16px 0; border-bottom:1px solid #eee; padding-bottom:10px; }
.geo-profile-tab { background:none; border:none; font-weight:600; cursor:pointer; color:#666; padding:8px 12px; }
.geo-profile-tab.is-active { color:var(--geo-primary); border-bottom:2px solid var(--geo-primary); }
.geo-auth-card { max-width:400px; margin:40px auto; padding:30px; border:1px solid #e6e6e6; border-radius:8px; background:#fff; }
.geo-auth-tabs { display:flex; gap:10px; margin-bottom:20px; }
.geo-auth-tab { flex:1; padding:10px; cursor:pointer; border:none; background:#f5f5f5; font-weight:600; }
.geo-auth-tab.is-active { background:var(--geo-primary); color:#fff; }
.geo-auth-wrapper { max-width: 720px; margin: 20px auto; }

.geo-sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
	justify-content: center;
	gap: 0px;
	z-index: 214748364799;
	background: #ffffff;
	border-top: 1px solid #e5e5e5;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
	padding: 12px 16px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
	.geo-container { margin: 16px auto; padding: 16px; border-radius: 0; box-shadow: none; }
	.geo-grid { grid-template-columns: 1fr; }
	.geo-sticky-cta { display:flex; }
	.geo-sticky-cta .geo-btn { flex:1; justify-content:center; }
}

/* === Unified Card Enhancements (badges, pills) === */
.geo-card-thumb { 
	position: relative; 
	aspect-ratio: 16/10;
	overflow: hidden;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.geo-card-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-card:hover .geo-card-thumb img {
	transform: scale(1.05);
}

.geo-card-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.geo-card:hover .geo-card-thumb::after {
	opacity: 1;
}
.geo-card-status {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
	z-index: 10;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	border: 1px solid rgba(255,255,255,0.2);
	transition: all 0.3s ease;
}

.geo-card:hover .geo-card-status {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.geo-badge-open { 
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.9));
}

.geo-badge-closed { 
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
}
.geo-card-body { 
	padding: 20px; 
	background: linear-gradient(to bottom, #ffffff, #fafbfc);
}

.geo-card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.3;
	color: #111827;
	transition: color 0.3s ease;
}

.geo-card:hover .geo-card-title {
	color: var(--geo-primary, #E00707);
}

.geo-card-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.geo-pill-sm {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, #f8fafc, #f1f5f9);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 20px;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #475569;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.geo-card:hover .geo-pill-sm {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	border-color: rgba(239, 68, 68, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.geo-pill-sm i {
	font-size: 10px;
	opacity: 0.8;
}

/* ===== Yelp homepage specific ===== */
.geo-yelp-wrapper { font-family: var(--geo-font); color: var(--geo-text-dark); width: 100%; }
.geo-yelp-hero { position: relative; height: 520px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; }
.geo-yelp-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.geo-yelp-hero__content { position: relative; z-index: 2; width: 100%; max-width: 900px; padding: 0 20px; }
.geo-yelp-logo { font-size: 54px; font-weight: 900; color: #fff; margin-bottom: 30px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); letter-spacing: -1px; }
.geo-yelp-search-bar { display: flex; background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.15); height: 56px; }
.geo-yelp-input-group { display: flex; flex: 1; align-items: center; padding: 0 12px; position: relative; }
.geo-yelp-input-group label { font-weight: 700; color: var(--geo-text-dark); margin-right: 12px; font-size: 16px; border-right: 1px solid #ccc; padding-right: 12px; white-space: nowrap; }
.geo-yelp-input-group input, .geo-yelp-input-group select { border: none; width: 100%; font-size: 16px; outline: none; background: transparent; height: 100%; }
.geo-yelp-divider { width: 1px; background: #e6e6e6; margin: 8px 0; }
.geo-yelp-submit { background: var(--geo-primary); border: none; color: #fff; width: 60px; cursor: pointer; font-size: 20px; transition: background 0.2s; }
.geo-yelp-submit:hover { background: #c70606; }
.geo-yelp-quick-links { margin-top: 20px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.geo-yelp-quick-links a { color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.geo-yelp-quick-links a:hover { text-decoration: underline; }
.geo-yelp-container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.geo-yelp-section-header { margin-bottom: 24px; }
.geo-yelp-section-header h3 { font-size: 22px; font-weight: 700; color: var(--geo-primary); margin: 0 0 6px 0; }
.geo-yelp-section-header p { color: var(--geo-muted); margin: 0; }
.center-text { text-align: center; }
.geo-yelp-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 16px; }
.geo-yelp-cat-card { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--geo-text-dark); gap: 10px; padding: 16px; border: 1px solid #fff; border-radius: 4px; transition: all 0.2s; }
.geo-yelp-cat-card:hover { background: #f9f9f9; border-color: #e6e6e6; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.geo-yelp-cat-icon { width: 50px; height: 50px; background: #fff; border: 1px solid #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--geo-primary); }
.geo-yelp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.geo-yelp-card { display: block; background: #fff; border: 1px solid #e6e6e6; border-radius: 4px; overflow: hidden; text-decoration: none; transition: box-shadow 0.2s; }
.geo-yelp-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.geo-yelp-card__img { height: 200px; overflow: hidden; background: #eee; }
.geo-yelp-card__img img { width: 100%; height: 100%; object-fit: cover; }
.geo-yelp-card__body { padding: 16px; }
.geo-yelp-card__body h4 { margin: 0 0 6px 0; font-size: 18px; font-weight: 700; color: var(--geo-text-dark); }
.geo-yelp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.geo-yelp-stars { color: var(--geo-primary); font-size: 14px; letter-spacing: 1px; }
.geo-yelp-count { font-size: 13px; color: var(--geo-text-gray); }
.geo-yelp-meta { font-size: 13px; color: var(--geo-text-dark); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.geo-yelp-snippet { font-size: 13px; color: var(--geo-text-gray); margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; display: flex; gap: 6px; }

@media (max-width: 768px) {
	.geo-yelp-search-bar { flex-direction: column; height: auto; border-radius: 8px; }
	.geo-yelp-input-group { border-bottom: 1px solid #e6e6e6; height: 50px; }
	.geo-yelp-input-group label { display: none; }
	.geo-yelp-divider { display: none; }
	.geo-yelp-submit { width: 100%; height: 48px; border-radius: 0 0 8px 8px; }
	.geo-yelp-logo { font-size: 40px; }
}

/* Misc utilities */
.geo-address { display:flex; align-items:center; gap:6px; color:#555; font-size:14px; }
.geo-link { color: var(--geo-primary); font-weight:700; text-decoration:none; }
.geo-link:hover { text-decoration:underline; }
.geo-link-strong { color: var(--geo-primary); font-weight:700; text-decoration:none; }
.geo-link-strong:hover { text-decoration:underline; }

.geo-hero__placeholder {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7a7a7a;
	background: linear-gradient(135deg,#f8f8f8,#ececec);
	font-size: 14px;
}

.geo-hero__details { flex: 1 1 380px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }

.geo-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }

.geo-title {
	margin: 0;
	font-size: 26px;
	color: var(--geo-text, #1d1d1f);
	line-height: 1.2;
}

.geo-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.geo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s ease;
}

.geo-btn--primary {
	background: var(--geo-primary, #E00707);
	color: #fff;
}

.geo-btn--primary:hover {
	background: #f04949;
}

.geo-btn--ghost {
	background: #f5f5f5;
	color: #222;
	border-color: #e0e0e0;
}

.geo-btn--ghost:hover {
	background: #e8e8e8;
}

.geo-btn--outline {
	background: #fff;
	color: var(--geo-primary, #E00707);
	border-color: var(--geo-primary, #E00707);
}

.geo-btn--outline:hover {
	background: #ffe5e5;
}

.geo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--geo-spacing-lg);
	margin-top: var(--geo-spacing-lg);
}

.geo-main {
	grid-column: span 2;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

@media (max-width: 900px) {
	.geo-main { grid-column: span 1; }
}

.geo-sidebar {
	min-width: 0;
}

.geo-sticky {
	position: sticky;
	top: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.geo-card {
	background: var(--geo-surface, #fff);
	border: 1px solid #e6e6e6;
	border-radius: var(--geo-radius, 12px);
	padding: 16px;
	box-shadow: var(--geo-shadow, 0 3px 12px rgba(0,0,0,0.03));
}

.geo-section__title {
	margin: 0 0 8px;
	font-size: 17px;
	color: #222;
}

.geo-section__body {
	color: #3a3a3a;
	line-height: 1.7;
	font-size: 14px;
}

.geo-section__muted {
	color: #777;
	font-size: 13px;
}

.geo-section__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.geo-section__header small {
	display: block;
	color: #777;
	margin-top: 4px;
}

.geo-pill-row {
	display: flex;
	gap: 8px;
	align-items: center;
}

.geo-pill-row--wrap {
	flex-wrap: wrap;
}

.geo-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	border: 1px solid var(--geo-border, #e5e7eb);
	color: var(--geo-primary, #E00707);
	background: var(--geo-primary-soft, #fff5f5);
}

.geo-pill--soft { background: #f0f0f0; }
.geo-pill--muted { 
	background: #f9fafb; 
	color: #6b7280;
	border-color: #e5e7eb;
}
.geo-pill--primary {
	background: #dbeafe;
	color: #1e40af;
	border-color: #93c5fd;
	font-weight: 600;
}
.geo-pill--accent {
	background: #fff5f5;
	color: var(--geo-primary);
	border-color: #f3c9c9;
	font-weight: 700;
}
.geo-pill--gold {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	color: #92400e;
	border-color: #fbbf24;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(251, 191, 36, 0.3);
}
.geo-pill--legendary {
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #fae8ff 100%);
	color: #4c1d95;
	border-color: #a78bfa;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(167, 139, 250, 0.4);
	animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
	0%, 100% { box-shadow: 0 2px 8px rgba(167, 139, 250, 0.4); }
	50% { box-shadow: 0 4px 12px rgba(167, 139, 250, 0.6); }
}
/* User Level Badge (inline next to names) */
.geo-user-level-badge {
	font-size: 11px;
	padding: 4px 10px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	vertical-align: middle;
}
.geo-user-level-badge i {
	font-size: 10px;
}
.geo-pill--open {
	background: #d4edda;
	color: #155724;
	border-color: #c3e6cb;
	text-transform: uppercase;
	font-weight: 700;
}
.geo-pill--closed {
	background: #f8d7da;
	color: #721c24;
	border-color: #f5c6cb;
	text-transform: uppercase;
	font-weight: 700;
}

.geo-address {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #555;
	font-size: 14px;
}

.geo-map {
	height: 260px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ddd;
}

.geo-nearby { display: flex; flex-direction: column; gap: 10px; }
.geo-nearby__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid #f0f0f0;
	border-radius: 10px;
	background: #fafafa;
}

.geo-link { color: var(--geo-primary); font-weight: 700; text-decoration: none; }
.geo-link:hover { text-decoration: underline; }
.geo-link-strong { color: var(--geo-primary); font-weight: 700; text-decoration: none; }
.geo-link-strong:hover { text-decoration: underline; }

.geo-rating-hero {
	color: var(--geo-primary);
	font-weight: 700;
	font-size: 18px;
}

.geo-form { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.geo-label { font-weight: 600; font-size: 13px; }
.geo-select, .geo-textarea {
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	width: 100%;
	max-width: 260px;
}
.geo-textarea { max-width: 100%; }
.geo-status { font-size: 12px; color: #555; }

/* ===== LEGACY REVIEW STYLES (DEPRECATED - REPLACED BY MODERN DESIGN) ===== */
/* These styles are kept for backward compatibility but should not override modern styles */
.geo-reviews.legacy { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.geo-review.legacy {
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 10px 12px;
	background: #f9f9f9;
}
.geo-review.legacy .geo-review__header { display: flex; justify-content: space-between; gap: 8px; align-items: center; flex-wrap: wrap; }
.geo-review.legacy .geo-review__stars { color: var(--geo-primary); font-weight: 700; }
.geo-review.legacy .geo-review__text { color: #444; font-size: 13px; margin-top: 6px; line-height: 1.5; }
.geo-review.legacy .geo-review__helpful { display:flex; align-items:center; gap:8px; margin-top:6px; }
.geo-review.legacy .geo-review__helpful button { border:1px solid #e6e6e6; background:#fff; border-radius:8px; padding:4px 8px; cursor:pointer; }
.geo-review.legacy .geo-review__helpful span { color:#555; }

.geo-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; color: #555; }
.geo-contact li { display: flex; gap: 8px; align-items: center; font-size: 14px; }
.geo-contact a { color: #0073aa; text-decoration: none; }
.geo-contact a:hover { text-decoration: underline; }
.geo-contact i { color:var(--geo-primary); width:16px; text-align:center; }

.geo-social { display: flex; gap: 16px; font-size: 22px; }
.geo-social a { color: inherit; text-decoration: none; }
.geo-social a:hover { color: var(--geo-primary); }

.geo-hours {
	background: #f7f9fc;
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #eef2f7;
	font-size: 14px;
	color: #444;
	line-height: 1.6;
}

/* Modern Opening Hours Display */
.geo-hours-modern {
	background: #fff;
	border-radius: 8px;
}

.geo-hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 1px solid #f1f5f9;
	transition: background 0.2s;
}

.geo-hours-row:last-child {
	border-bottom: none;
}

.geo-hours-row:hover {
	background: #f8fafc;
}

.geo-hours-day {
	font-weight: 600;
	color: #0f172a;
	font-size: 14px;
	min-width: 100px;
}

.geo-hours-time {
	color: #22c55e;
	font-weight: 500;
	font-size: 14px;
	text-align: right;
}

.geo-hours-closed {
	color: #94a3b8;
	font-style: italic;
}

.geo-hours-note {
	background: #fffbeb;
	border: 1px solid #fef3c7;
	border-radius: 8px;
	padding: 12px 16px;
	margin-top: 12px;
	color: #92400e;
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}

.geo-hours-note i {
	color: #f59e0b;
}

.geo-hours-plain {
	padding: 12px 16px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}

/* Inline status pills reuse */
.geo-title-row .geo-pill--open,
.geo-title-row .geo-pill--closed { margin-left: 4px; }

/* Gallery */
.geo-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

/* MODERN GALLERY DESIGN */
.geo-gallery--modern {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.geo-gallery--modern .geo-gallery__item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer !important;
	border: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #f8f9fa;
	pointer-events: auto !important;
	z-index: 1;
}

.geo-gallery--modern .geo-gallery__item:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	transform: translateY(-4px);
}

.geo-gallery--modern .geo-gallery__item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
	pointer-events: none;
}

.geo-gallery--modern .geo-gallery__item:hover::before {
	opacity: 1;
}

.geo-gallery--modern .geo-gallery__item::after {
	content: '\f00e';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-size: 32px;
	color: white;
	z-index: 2;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.geo-gallery--modern .geo-gallery__item:hover::after {
	transform: translate(-50%, -50%) scale(1);
}

.geo-gallery--modern .geo-gallery__item img {
	display: block;
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.geo-gallery--modern .geo-gallery__item:hover img {
	transform: scale(1.05);
}

/* Legacy Gallery */
.geo-gallery__item {
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #e6e6e6;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.geo-gallery__item img {
	display: block;
	width: 100%;
	height: 140px;
	object-fit: cover;
}

/* Gallery Controls */
.geo-gallery__controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
	margin-top: 8px;
}

.geo-lightbox {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 9999;
}
.geo-lightbox.open { pointer-events: auto; opacity: 1; }
.geo-lightbox__backdrop {
	position: absolute;
	top:0; left:0; right:0; bottom:0;
	background: rgba(0,0,0,0.6);
}
.geo-lightbox__content {
	position: relative;
	background: #fff;
	padding: 8px;
	border-radius: 10px;
	max-width: 90vw;
	max-height: 90vh;
	box-shadow: 0 12px 30px rgba(0,0,0,0.3);
	z-index: 1;
}
.geo-lightbox__content img {
	display: block;
	max-width: 80vw;
	max-height: 80vh;
	object-fit: contain;
}
.geo-lightbox__close {
	position: absolute;
	top: 6px;
	right: 6px;
	background: transparent;
	border: none;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	color: #333;
	z-index: 10;
}
.geo-lightbox__close:hover {
	color: #000;
}
.geo-lightbox__prev,
.geo-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.geo-lightbox__prev {
	left: 20px;
}
.geo-lightbox__next {
	right: 20px;
}
.geo-lightbox__prev:hover,
.geo-lightbox__next:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateY(-50%) scale(1.1);
}
.geo-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	z-index: 10;
}

.geo-thumb { display:inline-flex; border:1px solid #e1e1e1; padding:2px; border-radius:4px; }

/* Business Dashboard - Profile Integration */
.geo-business-list {
	margin-top: 32px;
}

.geo-business-list h4 {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.geo-business-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 16px;
	transition: all 0.2s ease;
}

.geo-business-item:hover {
	border-color: var(--geo-primary);
	box-shadow: 0 4px 12px rgba(211, 35, 35, 0.1);
}

.geo-business-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

.geo-business-item-header h5 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
}

.geo-business-item-header h5 a {
	color: #1f2937;
	text-decoration: none;
}

.geo-business-item-header h5 a:hover {
	color: var(--geo-primary);
}

.geo-business-item-stats {
	display: flex;
	gap: 20px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.geo-mini-stat {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #6b7280;
}

.geo-mini-stat .dashicons {
	font-size: 16px;
}

.geo-mini-stat--warning {
	color: #dc2626;
	font-weight: 500;
}

.geo-business-item-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.geo-business-item-actions .geo-btn {
	font-size: 13px;
	padding: 6px 12px;
}

.geo-empty-state {
	text-align: center;
	padding: 48px 24px;
	background: #f9fafb;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
}

.geo-empty-icon {
	margin-bottom: 16px;
}

.geo-empty-state h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 8px 0;
}

.geo-empty-state p {
	color: #6b7280;
	margin: 0 0 20px 0;
}

.geo-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
}

.geo-badge--success {
	background: #dcfce7;
	color: #16a34a;
}

@media (max-width: 768px) {
	.geo-business-item-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.geo-business-item-stats {
		flex-direction: column;
		gap: 8px;
	}
	
	.geo-business-item-actions {
		flex-direction: column;
	}
	
	.geo-business-item-actions .geo-btn {
		width: 100%;
		justify-content: center;
	}
}

.geo-btn i { margin-right:6px; }
.w-100 { width:100%; }
.geo-section__title i { margin-right:6px; }
.geo-address i { margin-right:6px; color:var(--geo-primary); }

.geo-glass { background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); box-shadow: 0 12px 30px rgba(0,0,0,0.12); backdrop-filter: blur(10px); }
.geo-auth-card { max-width:480px; margin:0 auto; padding:18px; border-radius:18px; color:#fff; background:linear-gradient(145deg, rgba(35,35,35,0.9), rgba(55,55,55,0.75)); }
.geo-auth-tabs { display:flex; gap:6px; margin-bottom:10px; }
.geo-auth-tab { flex:1; border:none; border-radius:12px; padding:10px 12px; background:rgba(255,255,255,0.08); color:#fff; cursor:pointer; font-weight:700; }
.geo-auth-tab.is-active { background:var(--geo-primary); }
.geo-auth__form { display:flex; flex-direction:column; gap:10px; }
.geo-auth__form label { font-weight:700; font-size:13px; }
.geo-auth__form input { width:100%; padding:10px 12px; border-radius:10px; border:1px solid rgba(255,255,255,0.2); background:rgba(255,255,255,0.08); color:#fff; }
.geo-auth__form input:focus { outline:2px solid var(--geo-primary); }
.geo-alert--error { background:#fff5f5; border-color:#f5c2c7; color:#a61b29; }
.geo-alert--success { background:#f0fdf4; border-color:#bbf7d0; color:#15803d; }

.geo-fav-list { display:flex; flex-direction:column; gap:6px; }
.geo-fav-item a { color:var(--geo-primary); text-decoration:none; font-weight:600; }
.geo-fav-item a:hover { text-decoration:underline; }

.geo-profile-list { list-style:none; padding-left:0; display:flex; flex-direction:column; gap:6px; }
.geo-profile-list li { border:1px solid #e6e6e6; padding:8px 10px; border-radius:6px; background:#fafafa; }
.geo-profile__header { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.geo-profile__hello { font-weight:700; font-size:18px; display:flex; align-items:center; gap:8px; }
.geo-profile__email { color:#6b7280; display:flex; align-items:center; gap:6px; }
.geo-profile__logout { align-self:flex-start; }
.geo-profile-stats { display:grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap:12px; margin:12px 0 16px; }
.geo-profile-stat { display:flex; align-items:center; gap:10px; padding:12px; border:1px solid #e6e6e6; border-radius:12px; background:#f9fafb; }
.geo-profile-stat__icon { width:38px; height:38px; background:#fff; border-radius:10px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 10px rgba(0,0,0,0.04); color:var(--geo-primary); }
.geo-profile-stat__label { color:#6b7280; font-size:13px; }
.geo-profile-stat__value { font-weight:700; font-size:18px; }
.geo-profile h4 { margin-top:18px; display:flex; align-items:center; gap:8px; }
.geo-profile-tabs { display:flex; gap:8px; margin:16px 0; flex-wrap:wrap; }
.geo-profile-tab { border:1px solid #e6e6e6; border-radius:10px; padding:10px 14px; background:#fff; cursor:pointer; font-weight:600; display:flex; align-items:center; gap:6px; }
.geo-profile-tab.is-active { background:var(--geo-primary); color:#fff; border-color:var(--geo-primary); box-shadow:0 6px 14px rgba(211,35,35,0.18); }
.geo-profile__panel { margin-top:4px; }
.geo-profile__cta-row { margin:8px 0 4px; }
.geo-profile-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:12px; }
.geo-profile-card { padding:14px; border-radius:12px; border:1px solid rgba(0,0,0,0.06); background:#fff; display:flex; justify-content:space-between; gap:10px; align-items:center; }
.geo-profile-card__actions { display:flex; gap:8px; }
.geo-profile-review-title { font-weight:700; }

/* Achievements Dashboard */
.geo-achievements-dashboard { margin-top: 20px; }
.geo-achievements-header h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 20px; color: #0f172a; }
.geo-achievements-header p { color: #64748b; margin: 0 0 24px 0; }

.geo-achievements-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin-bottom: 32px;
}

.geo-achievement-stat {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	gap: 16px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.geo-achievement-stat i {
	font-size: 28px;
}

.geo-stat-num {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1;
}

.geo-stat-label {
	font-size: 13px;
	color: #64748b;
	margin-top: 4px;
}

.geo-achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.geo-achievement-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
	transition: all 0.3s ease;
}

.geo-achievement-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.geo-achievement-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.geo-achievement-info h4 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 600;
	color: #0f172a;
}

.geo-achievement-info p {
	margin: 0;
	font-size: 13px;
	color: #64748b;
}

.geo-achievement-cta {
	background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
	border: 1px solid #fed7aa;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.geo-achievement-cta i {
	font-size: 32px;
	color: #f59e0b;
	flex-shrink: 0;
}

.geo-achievement-cta h4 {
	margin: 0 0 4px 0;
	font-size: 16px;
	color: #92400e;
}

.geo-achievement-cta p {
	margin: 0;
	font-size: 14px;
	color: #78350f;
}

/* Business Hub Styles - Modern & Elegant */
.geo-business-hub {
	margin-top: 20px;
	position: relative;
	z-index: 1;
}

.geo-hub-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 32px;
}

.geo-hub-stat {
	background: #fff;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.geo-hub-stat:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.geo-hub-stat-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.geo-hub-stat-content {
	flex: 1;
}

.geo-hub-stat-label {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.geo-hub-stat-number {
	font-size: 32px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1;
}

.geo-hub-businesses {
	margin-top: 32px;
}

.geo-hub-heading {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.geo-hub-heading i {
	color: var(--geo-primary);
}

.geo-hub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.geo-hub-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.geo-hub-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.geo-hub-card-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.geo-hub-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.geo-hub-card:hover .geo-hub-card-image img {
	transform: scale(1.05);
}

.geo-hub-card-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: #fff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.geo-hub-card-body {
	padding: 20px;
}

.geo-hub-card-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 12px 0;
	color: #0f172a;
}

.geo-hub-card-title a {
	color: #0f172a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.geo-hub-card-title a:hover {
	color: var(--geo-primary);
}

.geo-hub-card-stats {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e7eb;
}

.geo-hub-mini-stat {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #64748b;
}

.geo-hub-mini-stat i {
	font-size: 16px;
}

.geo-hub-card-actions {
	display: flex;
	gap: 8px;
}

.geo-hub-card-actions .geo-btn {
	flex: 1;
	justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.geo-hub-stats {
		grid-template-columns: 1fr;
	}
	
	.geo-hub-grid {
		grid-template-columns: 1fr;
	}
	
	.geo-hub-stat {
		padding: 18px;
	}
	
	.geo-hub-stat-icon {
		width: 56px;
		height: 56px;
		font-size: 20px;
	}
	
	.geo-hub-stat-number {
		font-size: 28px;
	}
}
.geo-business-header { margin-bottom:24px; }
.geo-business-header h3 { display:flex; align-items:center; gap:8px; margin-bottom:8px; color:#0f172a; }
.geo-business-header p { color:#64748b; margin:0; }
.geo-business-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap:16px; }
.geo-business-card { background:#fff; border:1px solid #e2e8f0; border-radius:12px; padding:20px; box-shadow:0 2px 4px rgba(0,0,0,0.04); transition:all 0.2s ease; }
.geo-business-card:hover { box-shadow:0 8px 20px rgba(0,0,0,0.08); transform:translateY(-2px); }
.geo-business-card__header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:16px; }
.geo-business-card__header h4 { margin:0; font-size:18px; font-weight:600; }
.geo-business-card__header h4 a { color:#0f172a; text-decoration:none; }
.geo-business-card__header h4 a:hover { color:var(--geo-primary); }
.geo-badge { display:inline-flex; align-items:center; gap:4px; padding:4px 8px; border-radius:6px; font-size:12px; font-weight:600; }
.geo-badge--success { background:#dcfce7; color:#16a34a; }
.geo-business-card__stats { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-bottom:16px; }
.geo-business-stat { text-align:center; }
.geo-business-stat__label { display:block; font-size:12px; color:#64748b; margin-bottom:4px; text-transform:uppercase; letter-spacing:0.5px; }
.geo-business-stat__value { display:block; font-size:16px; font-weight:700; color:#0f172a; }
.geo-business-card__actions { display:flex; gap:8px; flex-wrap:wrap; }
.geo-business-card__actions .geo-btn--sm { font-size:13px; padding:6px 12px; }

/* Photo Gallery Styles */
.geo-photo-gallery {
	position: relative;
	width: 100%;
}

.geo-gallery__main {
	position: relative;
	width: 100%;
	margin-bottom: 0;
}

.geo-gallery__featured {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--geo-radius, 12px);
}

.geo-gallery__main-link {
	display: block;
	width: 100%;
	text-decoration: none;
	cursor: pointer;
}

.geo-gallery__main-link:hover {
	opacity: 0.95;
}

.geo-gallery__main-link img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.geo-gallery__main-link:hover img {
	transform: scale(1.02);
}

/* Thumbnail Strip */
.geo-gallery__thumbs {
	margin-top: 12px;
}

.geo-gallery__thumb-strip {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 0;
	scrollbar-width: thin;
	scrollbar-color: #ccc #f1f1f1;
}

.geo-gallery__thumb-strip::-webkit-scrollbar {
	height: 6px;
}

.geo-gallery__thumb-strip::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.geo-gallery__thumb-strip::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}

.geo-gallery__thumb-strip::-webkit-scrollbar-thumb:hover {
	background: #999;
}

.geo-gallery__thumb {
	flex: 0 0 auto;
	width: 60px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	cursor: pointer;
}

.geo-gallery__thumb--active {
	border-color: var(--geo-primary, var(--geo-primary));
	box-shadow: 0 0 0 1px var(--geo-primary, var(--geo-primary));
}

.geo-gallery__thumb:hover {
	border-color: #999;
	transform: translateY(-2px);
}

.geo-gallery__thumb-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.geo-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.2s ease;
}

.geo-gallery__thumb:hover img {
	transform: scale(1.1);
}

/* Lightbox Overlay */
.geo-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	animation: fadeIn 0.3s ease;
}

.geo-lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.geo-lightbox__content {
	max-width: 90%;
	max-height: 90%;
	position: relative;
}

.geo-lightbox__img {
	max-width: 100%;
	max-height: 80vh;
	display: block;
	border-radius: 4px;
}

.geo-lightbox__caption {
	position: absolute;
	bottom: -40px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
}

.geo-lightbox__close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 5px;
	transition: opacity 0.2s ease;
}

.geo-lightbox__close:hover {
	opacity: 0.7;
}

.geo-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	padding: 20px 15px;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.geo-lightbox__nav:hover {
	background: rgba(0, 0, 0, 0.8);
}

.geo-lightbox__prev {
	left: 20px;
}

.geo-lightbox__next {
	right: 10px;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Responsive Gallery */
@media (max-width: 768px) {
	.geo-gallery--modern {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 12px;
		margin-bottom: 20px;
	}
	
	.geo-gallery--modern .geo-gallery__item img {
		height: 150px;
	}
	
	.geo-gallery--modern .geo-gallery__item::after {
		font-size: 24px;
	}
	
	.geo-gallery__thumb {
		width: 50px;
		height: 50px;
	}
	
	.geo-gallery__controls {
		flex-direction: column;
		gap: 12px;
	}
	
	.geo-gallery__controls .geo-btn {
		width: 100%;
		justify-content: center;
	}
	
	.geo-lightbox__nav {
		font-size: 30px;
		padding: 15px 10px;
	}
	
	.geo-lightbox__prev {
		left: 10px;
	}
	
	.geo-lightbox__next {
		right: 10px;
	}
}

/* Extra small mobile (portrait phones) */
@media (max-width: 480px) {
	.geo-gallery--modern {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.geo-gallery--modern .geo-gallery__item img {
		height: 140px;
	}
}

.geo-submit { border:1px solid #e4e4e4; padding:16px; border-radius:10px; background:#fff; max-width:600px; }
.geo-submit p { margin-bottom:12px; }
.geo-submit label { display:block; font-weight:600; margin-bottom:4px; }
.geo-submit input[type="text"], .geo-submit input[type="email"], .geo-submit input[type="url"], .geo-submit input[type="number"], .geo-submit textarea, .geo-submit select { width:100%; padding:8px 10px; border:1px solid #ccc; border-radius:6px; }
.geo-submit span.geo-error { color:var(--geo-primary); }
.geo-submit span.geo-success { color:green; }
.geo-alert { background:#f5f5f5; border:1px solid #e2e2e2; padding:10px; border-radius:6px; margin-bottom:12px; }
.geo-submit input[type="file"] { border:1px dashed #cfcfcf; padding:8px; border-radius:6px; width:100%; }

.geo-home { display:flex; flex-direction:column; gap:24px; }

/* Modern Hero Section */
.geo-hero-landing { 
	position:relative; 
	border-radius:24px; 
	overflow:hidden; 
	min-height:550px; 
	background-size:cover; 
	background-position:center; 
	display:flex; 
	align-items:center; 
	justify-content:center;
}

.geo-hero-landing::after { 
	content:''; 
	position:absolute; 
	inset:0; 
	background:linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%); 
	backdrop-filter: blur(2px);
}

.geo-hero-landing__overlay { 
	position:relative; 
	z-index:1; 
	color:#fff; 
	padding:80px 20px; 
	width:100%;
	max-width:1200px;
	margin:0 auto;
}

.geo-hero-landing__center { 
	text-align:center; 
	display:flex; 
	flex-direction:column; 
	gap:32px; 
	align-items:center; 
}

.geo-hero-landing__center h1 { 
	margin:0; 
	font-size:56px; 
	max-width:900px; 
	font-weight:900; 
	line-height:1.1; 
	letter-spacing:-0.02em; 
	color:#ffffff !important; 
	text-shadow:0 4px 20px rgba(0,0,0,0.3);
}

.geo-hero-landing__subtitle { 
	margin:0; 
	color:#f3f4f6; 
	max-width:700px; 
	line-height:1.8; 
	font-size:18px;
	font-weight:400;
	text-shadow:0 2px 10px rgba(0,0,0,0.3);
}

.geo-hero-landing__search { 
	background:#fff; 
	border-radius:20px; 
	display:grid; 
	grid-template-columns:minmax(140px, 180px) 1fr minmax(140px, 180px) auto; 
	gap:0; 
	padding:10px; 
	max-width:900px; 
	width:100%; 
	box-shadow:0 25px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1); 
	transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-hero-landing__search:hover {
	transform:translateY(-4px) scale(1.01);
	box-shadow:0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.2);
}

.geo-hero-landing__field select,
.geo-hero-landing__field input { 
	width:100%; 
	border:none; 
	background:transparent; 
	padding:0 24px; 
	font-size:16px; 
	color:#111827; 
	outline:none; 
	font-weight:500;
	-webkit-appearance: auto;
	appearance: auto;
	height:56px;
	cursor:pointer;
}

.geo-hero-landing__field select:hover,
.geo-hero-landing__field input:hover {
	background:rgba(0, 0, 0, 0.02);
}

.geo-hero-landing__field select:focus,
.geo-hero-landing__field input:focus {
	background:rgba(224, 7, 7, 0.03);
}

.geo-hero-landing__field select::placeholder,
.geo-hero-landing__field input::placeholder {
	color:#9ca3af;
}

.geo-hero-landing__field { 
	border-right:1px solid #e5e7eb; 
}

.geo-hero-landing__field:last-of-type { 
	border-right:none; 
}

.geo-hero-landing__submit { 
	width:64px; 
	height:56px; 
	border-radius:16px; 
	background:linear-gradient(135deg, #d32323 0%, #b01f1f 100%); 
	border:none; 
	color:#fff; 
	font-size:22px; 
	cursor:pointer; 
	display:flex; 
	align-items:center; 
	justify-content:center; 
	transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
	position:relative;
	overflow:hidden;
}

.geo-hero-landing__submit::before {
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:0;
	height:0;
	border-radius:50%;
	background:rgba(255, 255, 255, 0.3);
	transform:translate(-50%, -50%);
	transition:width 0.6s, height 0.6s;
}

.geo-hero-landing__submit:hover::before {
	width:300px;
	height:300px;
}

.geo-hero-landing__submit:hover {
	transform:scale(1.08) rotate(-3deg);
}

.geo-hero-landing__submit:active {
	transform:scale(0.98);
}

.geo-hero-landing__submit i {
	position:relative;
	z-index:1;
}

.geo-hero-landing__chips { 
	display:flex; 
	gap:12px; 
	flex-wrap:wrap; 
	justify-content:center; 
}

.geo-chip { 
	display:inline-flex; 
	align-items:center; 
	gap:8px; 
	padding:10px 18px; 
	border-radius:999px; 
	background:#f5f5f5; 
	border:1px solid #e6e6e6; 
	color:#333; 
	text-decoration:none; 
	font-weight:600;
	font-size:14px;
	transition:all 0.3s ease;
}

.geo-chip--glass { 
	background:rgba(255,255,255,0.15); 
	border-color:rgba(255,255,255,0.25); 
	color:#fff;
	backdrop-filter:blur(10px);
	text-shadow:0 1px 3px rgba(0,0,0,0.2);
}

.geo-chip:hover { 
	border-color:var(--geo-primary); 
	color:var(--geo-primary);
	transform:translateY(-2px);
	box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.geo-chip--glass:hover { 
	background:rgba(255,255,255,0.25);
	border-color:#fff; 
	color:#fff;
	transform:translateY(-2px);
}

.geo-hero-landing__stats { 
	display:grid; 
	grid-template-columns: repeat(4, 1fr); 
	gap:16px;
	margin-top:20px;
}

.geo-hero-stat { 
	padding:20px; 
	border:1px solid rgba(255,255,255,0.2); 
	border-radius:16px; 
	background:rgba(255,255,255,0.1); 
	text-align:center; 
	backdrop-filter: blur(12px); 
	color:#fff;
	transition:all 0.3s ease;
}

.geo-hero-stat:hover {
	background:rgba(255,255,255,0.15);
	border-color:rgba(255,255,255,0.3);
	transform:translateY(-4px);
}

.geo-hero-stat__label { 
	color:#f3f4f6; 
	font-size:13px; 
	text-transform:uppercase; 
	letter-spacing:0.08em;
	font-weight:600;
	margin-bottom:8px;
}

.geo-hero-stat__value { 
	font-size:32px; 
	font-weight:800; 
	color:#fff;
	line-height:1;
}

@media (max-width: 900px){
	.geo-hero-landing { min-height:400px; }
	.geo-hero-landing__overlay { padding:60px 20px; }
	.geo-hero-landing__center { gap:24px; }
	.geo-hero-landing__center h1 { font-size:36px; }
	.geo-hero-landing__subtitle { font-size:16px; }
	.geo-hero-landing__search { 
		grid-template-columns: 1fr; 
		border-radius:16px; 
	}
	.geo-hero-landing__field { 
		border-right:none; 
		border-bottom:1px solid #e5e7eb; 
	}
	.geo-hero-landing__field:last-of-type { 
		border-bottom:none; 
	}
	.geo-hero-landing__submit { 
		width:100%; 
		border-radius:12px; 
		height:56px; 
	}
}

.geo-slab { padding:18px; border:1px solid #e6e6e6; border-radius:12px; background:#fff; box-shadow:0 3px 10px rgba(0,0,0,0.03); }
.geo-slab__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.geo-tags { display:flex; flex-wrap:wrap; gap:10px; }

.geo-home__grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:14px; }
.geo-rail { display:grid; grid-auto-flow:column; grid-auto-columns: minmax(240px, 1fr); gap:12px; overflow-x:auto; padding-bottom:6px; scroll-snap-type:x mandatory; }
.geo-rail > * { scroll-snap-align:start; min-width:240px; }
.geo-archive-card { display:block; overflow:hidden; border-radius:var(--geo-radius, 12px); border:1px solid #e6e6e6; background:#fff; box-shadow: var(--geo-shadow, 0 4px 12px rgba(0,0,0,0.05)); transition:transform .15s ease, box-shadow .15s ease; }
.geo-archive-card:hover { transform: translateY(-2px); box-shadow:0 8px 18px rgba(0,0,0,0.08); }
.geo-archive-card__img { height:180px; overflow:hidden; }
.geo-archive-card__img img { width:100%; height:100%; object-fit:cover; display:block; }
.geo-archive-card__body { padding:12px; display:flex; flex-direction:column; gap:6px; }
.geo-archive-card__meta { display:flex; flex-wrap:wrap; gap:6px; }
.geo-badge { display:inline-flex; align-items:center; gap:6px; padding:4px 8px; border-radius:999px; background:#f5f5f5; border:1px solid #ececec; font-size:12px; color:#444; }
.geo-badge i { color:var(--geo-primary); }
.geo-pagination { margin-top:16px; }
.geo-pagination .page-numbers { display:inline-flex; align-items:center; justify-content:center; border:1px solid #e6e6e6; background:#fff; color:#333; padding:8px 12px; margin:0 4px; border-radius:8px; min-width:38px; font-weight:600; text-decoration:none; }
.geo-pagination .page-numbers.current { background:var(--geo-primary); color:#fff; border-color:var(--geo-primary); box-shadow:0 6px 14px rgba(211,35,35,0.18); }
.geo-pagination .page-numbers:hover { border-color:var(--geo-primary); color:var(--geo-primary); }
.geo-pagination i { margin:0 4px; }
.geo-pagination--inline { margin-top:12px; }

.geo-cta-row { flex-wrap:wrap; }

.geo-archive-card__body h3 { margin:0; font-size:16px; }

/* VERIFIED BADGE SYSTEM - Shows next to title */
.geo-archive-card__title-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

.geo-archive-card__title {
	margin: 0 !important;
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	flex: 1;
	min-width: 0; /* Allow text truncation */
	line-height: 1.3;
}

.geo-verified-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	color: white;
	font-size: 14px;
	box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
	transition: all 0.2s ease;
}

.geo-verified-badge:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 10px rgba(59, 130, 246, 0.5);
}

.geo-verified-badge i {
	color: white;
	font-size: 14px;
}

/* Permanently Closed Badge */
.geo-permanently-closed-badge {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	border: 2px solid #dc2626;
	border-radius: 12px;
	padding: 20px;
	margin: 16px 0;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.geo-closed-badge-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: #dc2626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
}

.geo-closed-badge-content {
	flex: 1;
}

.geo-closed-badge-content strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #991b1b;
	margin-bottom: 6px;
}

.geo-closed-badge-content p {
	margin: 0;
	font-size: 14px;
	color: #7f1d1d;
	line-height: 1.5;
}

@media (max-width: 640px) {
	.geo-permanently-closed-badge {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
}

.geo-shimmer { position:relative; overflow:hidden; background:#f5f5f5; }
.geo-shimmer::after { content:''; position:absolute; top:0; left:-150px; width:150px; height:100%; background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.6), rgba(255,255,255,0)); animation: geo-shimmer 1.2s infinite; }
@keyframes geo-shimmer { 0% { transform:translateX(0); } 100% { transform:translateX(300%); } }

.geo-archive-card__img.geo-loading img { opacity:0; }
.geo-archive-card__img.geo-loading { background:#f3f3f3; }

.geo-home__grid .geo-card { min-height: 280px; }

.geo-archive-hero { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:14px; }
.geo-archive-hero__eyebrow { text-transform:uppercase; letter-spacing:0.08em; font-size:11px; color:#7a7a7a; display:flex; gap:6px; align-items:center; }
.geo-archive-hero__meta { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.geo-archive-hero__cta { display:flex; gap:8px; flex-wrap:wrap; }

/* =========================================
   MODERN APP-UI OVERRIDES
   Targets: Login, Register, Profile, Submit, Favorites
   ========================================= */

/* 1. UNIFY FORM INPUTS (App-like feel) */
.geo-submit input[type="text"],
.geo-submit input[type="email"],
.geo-submit input[type="url"],
.geo-submit input[type="number"],
.geo-submit input[type="password"],
.geo-submit select,
.geo-submit textarea,
.geo-auth__form input,
.geo-auth__form select {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background-color: #fff;
	font-size: 15px;
	color: #1e293b;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.geo-submit input:focus,
.geo-submit textarea:focus,
.geo-submit select:focus,
.geo-auth__form input:focus {
	outline: none;
	border-color: var(--geo-primary);
	box-shadow: 0 0 0 3px rgba(224, 7, 7, 0.15);
}
.geo-submit label,
.geo-auth__form label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #475569;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* 2. PROFILE DASHBOARD (Modern Dashboard Look) */
.geo-profile { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.geo-profile__header {
	background: #fff;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.geo-profile__hello { font-size: 22px; color: #0f172a; }
.geo-profile-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 30px; }
.geo-profile-stat { background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 2px 4px rgba(0,0,0,0.02); border-radius: 12px; padding: 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
.geo-profile-stat__icon { width: 44px; height: 44px; background: #fff1f2; color: var(--geo-primary); font-size: 18px; border-radius: 10px; display:flex; align-items:center; justify-content:center; }
.geo-profile-stat__value { font-size: 24px; color: #0f172a; }
.geo-profile-tabs { gap: 10px; border: none; background: transparent; padding: 0; margin-bottom: 24px; }
.geo-profile-tab { background: #fff; border: 1px solid #e2e8f0; color: #64748b; border-radius: 30px; padding: 10px 20px; font-size: 14px; transition: all 0.2s; }
.geo-profile-tab.is-active { background: var(--geo-primary); color: #fff; border-color: var(--geo-primary); box-shadow: 0 4px 12px rgba(224, 7, 7, 0.3); }

/* 3. SUBMIT LISTING FORM (Clean Layout) */
.geo-submit { max-width: 800px; margin: 0 auto; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); }
.geo-submit p { margin-bottom: 20px; }

/* 4. LOGIN / REGISTER (Glassmorphism / Centered App Card) */
.geo-auth-wrapper { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.geo-auth-card { width: 100%; max-width: 480px; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12); border-radius: 18px; padding: 32px; }
.geo-auth-tab { background: transparent; color: #64748b; border-radius: 8px; }
.geo-auth-tab.is-active { background: #fff; color: var(--geo-primary); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.geo-field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

/* Enhanced Login/Register Forms */
.geo-auth__form--enhanced { gap: 0; }
.geo-form-group { margin-bottom: 20px; }
.geo-form-group label { 
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	font-weight: 600;
	color: #0f172a;
	font-size: 14px;
}
.geo-char-count { 
	font-weight: 400;
	color: #94a3b8;
	font-size: 12px;
}
.geo-field-help {
	display: block;
	margin-top: 6px;
	color: #64748b;
	font-size: 12px;
	line-height: 1.4;
}

/* Password Strength Indicator */
.geo-password-strength {
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.strength-bars {
	display: flex;
	gap: 4px;
	flex: 1;
}
.strength-bar {
	height: 4px;
	flex: 1;
	background: #e2e8f0;
	border-radius: 2px;
	transition: background 0.3s;
}
.strength-label {
	font-size: 12px;
	font-weight: 600;
}

/* 5. PROFILE LISTINGS */
.geo-profile-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.geo-profile-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px;
	transition: transform 0.2s, box-shadow 0.2s;
}
.geo-profile-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px -6px rgba(0,0,0,0.1);
}

/* =========================================
   ELEGANT PROFILE DASHBOARD (V2)
   ========================================= */

.geo-dashboard {
	font-family: var(--geo-font);
	max-width: 900px;
	margin: 0 auto;
	color: var(--geo-text);
}

/* 1. Header & Avatar */
.geo-dash-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	padding-bottom: 30px;
	margin-bottom: 20px;
	border-bottom: 1px solid #f1f5f9;
}

.geo-dash-user {
	display: flex;
	align-items: center;
	gap: 16px;
}

.geo-dash-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.geo-dash-greeting {
	font-size: 13px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.geo-dash-name {
	margin: 2px 0 6px;
	font-size: 26px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.5px;
}

.geo-dash-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #64748b;
}

.geo-sep { color: #cbd5e1; }

/* 2. Navigation (Sleek Underline) */
.geo-dash-nav-wrap {
	margin-bottom: 30px;
	border-bottom: 1px solid #e2e8f0;
	position: relative;
	z-index: 100;
}

.geo-dash-nav {
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 100;
}

.geo-dash-link {
	background: none;
	border: none;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	position: relative;
	z-index: 100;
	pointer-events: auto;
	transition: color 0.2s;
}

.geo-dash-link:hover { color: #0f172a; }

.geo-dash-link.is-active {
	color: var(--geo-primary);
}

.geo-dash-link.is-active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--geo-primary);
}

.geo-count {
	display: inline-block;
	background: #f1f5f9;
	color: #475569;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 10px;
	margin-left: 6px;
	vertical-align: middle;
}

/* 3. Stats Grid */
.geo-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 24px;
}

.geo-stat-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 20px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: transform 0.2s;
}

.geo-stat-card:hover { transform: translateY(-2px); }

.geo-stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.geo-stat-label {
	display: block;
	font-size: 13px;
	color: #64748b;
	margin-bottom: 2px;
}

.geo-stat-num {
	font-size: 22px;
	font-weight: 700;
	color: #0f172a;
}

/* 4. Lists & Items */
.geo-dash-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.geo-dash-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border: 1px solid #f1f5f9;
	padding: 16px 20px;
	border-radius: 10px;
	transition: all 0.2s;
}

.geo-dash-item:hover {
	border-color: #e2e8f0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.geo-item-title {
	font-weight: 600;
	font-size: 16px;
	color: #0f172a;
	text-decoration: none;
	display: block;
	margin-bottom: 4px;
}

.geo-item-meta {
	font-size: 13px;
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 6px;
}

.geo-item-excerpt {
	font-size: 13px;
	color: #475569;
	margin-top: 6px;
	font-style: italic;
}

/* Status Pills */
.geo-status-pill {
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 0.05em;
}
.geo-status-publish { background: #dcfce7; color: #166534; }
.geo-status-pending { background: #fef9c3; color: #854d0e; }
.geo-status-draft { background: #f1f5f9; color: #64748b; }

/* 5. Empty State */
.geo-empty-state {
	text-align: center;
	padding: 40px 20px;
	background: #f8fafc;
	border-radius: 12px;
	border: 1px dashed #cbd5e1;
}
.geo-empty-icon {
	font-size: 32px;
	color: #cbd5e1;
	margin-bottom: 16px;
}
.geo-empty-state h3 { margin: 0 0 8px; color: #334155; }
.geo-empty-state p { color: #64748b; margin-bottom: 20px; }

/* 6. CTA Box */
.geo-dash-cta-box {
	margin-top: 24px;
	background: linear-gradient(135deg, #1e293b, #0f172a);
	color: #fff;
	padding: 24px;
	border-radius: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0px;
}
.geo-dash-cta-box h3 { color: #fff; margin: 0 0 4px; font-size: 18px; }
.geo-dash-cta-box p { margin: 0; opacity: 0.8; font-size: 14px; }

@media (max-width: 600px) {
	.geo-dash-header { flex-direction: column; text-align: center; }
	.geo-dash-user { flex-direction: column; }
	.geo-dash-cta-box { flex-direction: column; text-align: center; }
	.geo-dash-nav { gap: 15px; overflow-x: auto; padding-bottom: 5px; }
}

/* Hero on home page - keep it rounded and modern */
.geo-home .geo-hero-landing {
	margin-top: 0 !important;
	margin-bottom: 24px !important;
	border-radius: 24px !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}
.geo-home .geo-hero-landing__overlay {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

/* New Category Grid Styling */
.geo-home-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 20px;
	text-align: center;
	margin-top: 20px;
}

.geo-home-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--geo-text);
	transition: transform 0.2s;
}

.geo-home-cat-card:hover {
	transform: translateY(-5px);
	color: var(--geo-primary);
}

.geo-home-cat-icon {
	width: 60px;
	height: 60px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--geo-primary);
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	transition: all 0.2s;
}

.geo-home-cat-card:hover .geo-home-cat-icon {
	border-color: var(--geo-primary);
	background: var(--geo-primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(224, 7, 7, 0.25);
}

.geo-home-cat-card span {
	font-weight: 600;
	font-size: 14px;
}

/* MODERN CATEGORY DESIGN */
.geo-home-cat-grid--modern {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.geo-home-cat-card--modern {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.geo-home-cat-card--modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(224, 7, 7, 0.03), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.geo-home-cat-card--modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	border-color: var(--geo-primary, #d32323);
}

.geo-home-cat-card--modern:hover::before {
	opacity: 1;
}

.geo-home-cat-card--modern .geo-home-cat-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--geo-primary) 0%, #b01f1f 100%);
	color: white;
	border-radius: 16px;
	font-size: 28px;
	flex-shrink: 0;
	border: none;
	transition: all 0.3s ease;
}

.geo-home-cat-card--modern:hover .geo-home-cat-icon {
	transform: scale(1.1) rotate(5deg);
}

.geo-home-cat-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.geo-home-cat-name {
	font-size: 16px;
	font-weight: 700;
	color: #111827;
	display: block;
}

.geo-home-cat-count {
	font-size: 13px;
	color: #6b7280;
	display: block;
}

.geo-home-cat-arrow {
	font-size: 18px;
	color: #9ca3af;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.geo-home-cat-card--modern:hover .geo-home-cat-arrow {
	color: var(--geo-primary, #d32323);
	transform: translateX(4px);
}

/* === CITY CARDS (BLUE THEME) === */
.geo-city-card .geo-home-cat-icon {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.geo-city-card:hover .geo-home-cat-icon {
	transform: scale(1.1) rotate(5deg);
}

.geo-city-card:hover {
	border-color: #3b82f6;
	box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}

.geo-city-card:hover .geo-home-cat-arrow {
	color: #3b82f6;
	transform: translateX(4px);
}

/* View All Card Special Styling */
.geo-home-cat-card--viewall .geo-home-cat-icon {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3);
}

.geo-home-cat-card--viewall:hover .geo-home-cat-icon {
	box-shadow: 0 6px 16px rgba(118, 75, 162, 0.5);
}

/* ALL CATEGORIES PAGE */
.geo-all-categories {
	padding: 40px 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.geo-all-categories__header {
	margin-bottom: 40px;
	text-align: center;
}

.geo-all-categories__header .geo-section__title {
	font-size: 36px;
	margin-bottom: 12px;
}

.geo-all-categories__header .geo-section__muted {
	font-size: 16px;
}

.geo-all-categories__grid {
	display: grid;
	grid-template-columns: repeat(var(--columns, 4), 1fr);
	gap: 20px;
}

.geo-category-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 24px;
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.geo-category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(224, 7, 7, 0.05), transparent);
	border-radius: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.geo-category-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
	border-color: var(--geo-primary, #d32323);
}

.geo-category-card:hover::before {
	opacity: 1;
}

.geo-category-card__icon {
	width: 72px;
	height: 72px;
	background: linear-gradient(135deg, var(--geo-primary, #d32323), #b01f1f);
	color: white;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	flex-shrink: 0;
	box-shadow: 0 8px 16px rgba(224, 7, 7, 0.3);
	transition: all 0.3s ease;
}

.geo-category-card:hover .geo-category-card__icon {
	transform: scale(1.15) rotate(10deg);
	box-shadow: 0 12px 24px rgba(224, 7, 7, 0.5);
}

.geo-category-card__info {
	flex: 1;
}

.geo-category-card__name {
	font-size: 18px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 6px 0;
}

.geo-category-card__count {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
}

.geo-category-card__arrow {
	font-size: 20px;
	color: #9ca3af;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.geo-category-card:hover .geo-category-card__arrow {
	color: var(--geo-primary, #d32323);
	transform: translateX(6px);
}

/* === ALL CITIES PAGE === */
.geo-all-cities .geo-category-card__icon {
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.geo-all-cities .geo-category-card:hover .geo-category-card__icon {
	transform: scale(1.15) rotate(10deg);
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.geo-all-cities .geo-category-card:hover {
	border-color: #3b82f6;
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.geo-all-cities .geo-category-card:hover .geo-category-card__arrow {
	color: #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
	.geo-all-categories__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.geo-home-cat-grid--modern {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	/* Hide items 5-8 on mobile (show only 4 items in 2x2 grid) */
	.geo-hide-mobile {
		display: none !important;
	}
	
	.geo-hero-landing__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.geo-all-categories__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.geo-category-card {
		padding: 20px;
	}
	
	.geo-category-card__icon {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.geo-home-cat-grid--modern {
		grid-template-columns: 1fr;
	}
	
	.geo-all-categories__grid {
		grid-template-columns: 1fr;
	}
	
	.geo-all-categories__header .geo-section__title {
		font-size: 28px;
	}
}

/* Hardening profile nav/button styles so theme overrides don't break layout */
.geo-dashboard .geo-dash-nav { display:flex; gap:30px; border-bottom:1px solid #e2e8f0; padding-bottom:8px; margin-bottom:24px; flex-wrap:wrap; position:relative; z-index:100; }
.geo-dashboard .geo-dash-link {
	background:none !important;
	border:none !important;
	padding:12px 0;
	font-size:15px;
	font-weight:600;
	color:#64748b;
	cursor:pointer !important;
	position:relative;
	z-index:100;
	pointer-events:auto !important;
	transition:color .2s;
}
.geo-dashboard .geo-dash-link.is-active { color:var(--geo-primary); }
.geo-dashboard .geo-dash-link.is-active::after {
	content:'';
	position:absolute;
	bottom:-1px;
	left:0;
	width:100%;
	height:2px;
	background:var(--geo-primary);
}

/* === GUEST UPLOAD MODAL === */
.geo-modal {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.3s;
}
.geo-modal__backdrop {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(4px);
}
.geo-modal__content {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 400px;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	z-index: 2;
	animation: geoPopUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes geoPopUp { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.geo-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
}

/* Reputation & Gamification System */
.geo-reputation-badge {
	position: absolute;
	bottom: -5px;
	right: -5px;
	background: linear-gradient(135deg, var(--geo-primary), #ef4444);
	color: white;
	border-radius: 12px;
	padding: 4px 8px;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.geo-reputation-score {
	font-size: 12px;
	font-weight: 700;
}

.geo-reputation-level {
	font-size: 9px;
	opacity: 0.9;
}

/* User Badges Display */
.geo-user-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
}

.geo-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 8px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	transition: all 0.2s ease;
}

.geo-badge:hover {
	background: #e5e7eb;
	transform: translateY(-1px);
}

.geo-badge--achievement {
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	border-color: #f59e0b;
	color: #92400e;
}

.geo-badge-name {
	font-weight: 600;
}

.geo-badge .dashicons {
	font-size: 12px;
	width: 12px;
	height: 12px;
}

/* Achievements Dashboard */
.geo-achievements-dashboard {
	max-width: 1200px;
	margin: 0 auto;
}

.geo-achievements-header {
	text-align: center;
	margin-bottom: 32px;
}

.geo-achievements-header h3 {
	font-size: 24px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 8px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.geo-achievements-header p {
	color: #6b7280;
	margin: 0;
}

/* Reputation Overview */
.geo-reputation-overview {
	background: linear-gradient(135deg, #1f2937, #374151);
	color: white;
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 32px;
	text-align: center;
}

.geo-reputation-score-display {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.geo-reputation-main {
	text-align: center;
}

.geo-reputation-number {
	display: block;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 4px;
}

.geo-reputation-label {
	font-size: 14px;
	opacity: 0.8;
}

.geo-reputation-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.geo-level-badge {
	background: rgba(255,255,255,0.2);
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.geo-level--expert {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #78350f;
}

.geo-level--advanced {
	background: linear-gradient(135deg, #60a5fa, #3b82f6);
	color: #1e3a8a;
}

.geo-level--experienced {
	background: linear-gradient(135deg, #34d399, #10b981);
	color: #064e3b;
}

.geo-level--regular {
	background: linear-gradient(135deg, #a78bfa, #8b5cf6);
	color: #4c1d95;
}

.geo-level--contributor {
	background: linear-gradient(135deg, #f87171, #ef4444);
	color: #7f1d1d;
}

.geo-reputation-rank {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

/* Contribution Stats Section */
.geo-contribution-stats {
	margin-bottom: 32px;
}

.geo-contribution-stats h4 {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Badges Section */
.geo-badges-section {
	margin-bottom: 32px;
}

.geo-badges-section h4 {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Available Badges */
.geo-available-badges {
	margin-bottom: 32px;
}

.geo-available-badges h4 {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.geo-badges-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.geo-badge-preview {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	transition: all 0.2s ease;
}

.geo-badge-preview.earned {
	background: linear-gradient(135deg, #ecfdf5, #d1fae5);
	border-color: #10b981;
}

.geo-badge-preview.available {
	background: #fff;
	border-color: #3b82f6;
}

.geo-badge-preview.locked {
	opacity: 0.6;
	background: #f9fafb;
}

.geo-badge-preview-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #f3f4f6;
}

.geo-badge-preview.earned .geo-badge-preview-icon {
	background: linear-gradient(135deg, #10b981, #059669);
}

.geo-badge-preview.available .geo-badge-preview-icon {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.geo-badge-preview .dashicons {
	font-size: 16px;
	color: #6b7280;
	width: 16px;
	height: 16px;
}

.geo-badge-preview.earned .dashicons {
	color: white;
}

.geo-badge-preview.available .dashicons {
	color: white;
}

.geo-badge-checkmark {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #10b981;
	color: white;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: bold;
}

.geo-badge-lock {
	position: absolute;
	top: -2px;
	right: -2px;
	font-size: 12px;
}

.geo-badge-preview-info {
	flex: 1;
}

.geo-badge-preview-name {
	display: block;
	font-weight: 600;
	color: #1f2937;
	font-size: 13px;
}

.geo-badge-preview-desc {
	display: block;
	color: #6b7280;
	font-size: 11px;
	margin-top: 2px;
}

/* Vote Messages */
.geo-vote-message {
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 12px;
	margin-top: 8px;
}

.geo-vote-message--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #10b981;
}

.geo-vote-message--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #ef4444;
}

.geo-vote-message--info {
	background: #eff6ff;
	color: #1e40af;
	border: 1px solid #3b82f6;
}

/* Leaderboard */
.geo-leaderboard-section h4 {
	font-size: 18px;
	font-weight: 600;
	color: #1f2937;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.geo-leaderboard {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

.geo-leaderboard-list {
	display: flex;
	flex-direction: column;
}

.geo-leaderboard-item {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #f3f4f6;
	transition: background 0.2s ease;
}

.geo-leaderboard-item:last-child {
	border-bottom: none;
}

.geo-leaderboard-item:hover {
	background: #f9fafb;
}

.geo-leaderboard-item.current-user {
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	border-color: #f59e0b;
}

.geo-leaderboard-rank {
	width: 48px;
	display: flex;
	justify-content: center;
}

.geo-medal {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	color: white;
}

.geo-medal--1 {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.geo-medal--2 {
	background: linear-gradient(135deg, #d1d5db, #9ca3af);
}

.geo-medal--3 {
	background: linear-gradient(135deg, #f97316, #ea580c);
}

.geo-rank-number {
	font-size: 18px;
	font-weight: 700;
	color: #6b7280;
}

.geo-leaderboard-user {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 16px;
}

.geo-leaderboard-name {
	font-weight: 600;
	color: #1f2937;
}

.geo-current-user-badge {
	background: #10b981;
	color: white;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.geo-leaderboard-score {
	text-align: right;
}

.geo-score-value {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--geo-primary);
}

.geo-score-label {
	display: block;
	font-size: 12px;
	color: #6b7280;
	margin-top: 2px;
}

/* Badges Grid */
.geo-badges-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.geo-badge-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.2s ease;
}

.geo-badge-card:hover {
	border-color: var(--geo-primary);
	box-shadow: 0 4px 12px rgba(211, 35, 35, 0.1);
	transform: translateY(-2px);
}

.geo-badge-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.geo-badge-icon .dashicons {
	font-size: 24px;
	color: #d97706;
	width: 24px;
	height: 24px;
}

.geo-badge-info h5 {
	margin: 0 0 4px 0;
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
}

.geo-badge-info p {
	margin: 0;
	font-size: 14px;
	color: #6b7280;
}

/* Review Voting */
.geo-review-voting {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
}

.geo-review-vote {
	padding: 6px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #fff;
	color: #6b7280;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.geo-review-vote:hover {
	border-color: var(--geo-primary);
	color: var(--geo-primary);
}

.geo-review-vote.selected {
	background: var(--geo-primary);
	border-color: var(--geo-primary);
	color: white;
}

.geo-review-vote.voted {
	opacity: 0.5;
	cursor: not-allowed;
}

.geo-helpful-count {
	font-size: 12px;
	color: #6b7280;
	font-weight: 600;
}

/* Achievement Notifications */
.geo-achievement-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #1f2937, #374151);
	color: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.3);
	z-index: 10000;
	transform: translateX(400px);
	transition: transform 0.3s ease;
	max-width: 320px;
}

.geo-achievement-notification--show {
	transform: translateX(0);
}

.geo-achievement-content {
	display: flex;
	align-items: center;
	gap: 16px;
}

.geo-achievement-content .dashicons {
	font-size: 32px;
	width: 32px;
	height: 32px;
	color: #fbbf24;
}

.geo-achievement-text strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}

.geo-achievement-text {
	font-size: 14px;
	line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.geo-reputation-score-display {
		flex-direction: column;
		gap: 20px;
	}
	
	.geo-reputation-number {
		font-size: 36px;
	}
	
	.geo-badges-grid {
		grid-template-columns: 1fr;
	}
	
	.geo-leaderboard-item {
		padding: 12px 16px;
	}
	
	.geo-leaderboard-user {
		margin-left: 12px;
	}
	
	.geo-achievement-notification {
		right: 10px;
		left: 10px;
		max-width: none;
	}
}
.geo-modal__close:hover { color: var(--geo-primary); }

/* ============================================================================
   MOBILE OPTIMIZATIONS (Phase 5)
   ============================================================================ */

/* Touch Target Optimization - All interactive elements minimum 44x44px */
@media (max-width: 768px) {
	/* Buttons - ensure minimum touch target */
	.geo-btn,
	button,
	input[type="submit"],
	input[type="button"] {
		min-height: 44px;
		min-width: 44px;
		padding: 12px 20px;
	}
	
	/* Links in lists - increase tap area */
	.geo-card a,
	.geo-review a,
	.geo-listing-card a {
		min-height: 44px;
		display: inline-flex;
		align-items: center;
	}
	
	/* Icon buttons */
	.geo-helpful-btn,
	.geo-toast__close,
	.geo-modal__close {
		min-width: 44px;
		min-height: 44px;
		padding: 10px;
	}
	
	/* Select dropdowns */
	select {
		min-height: 44px;
		font-size: 16px; /* Prevents iOS zoom */
	}
}

/* Form Input Optimization - Prevent iOS zoom, better mobile UX */
@media (max-width: 768px) {
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="number"],
	input[type="search"],
	input[type="url"],
	input[type="password"],
	textarea,
	select {
		font-size: 16px; /* Prevents iOS auto-zoom on focus */
		min-height: 44px;
		padding: 12px 16px;
		border-radius: 8px;
	}
	
	textarea {
		min-height: 120px;
	}
	
	/* Search inputs */
	input[type="search"] {
		-webkit-appearance: none;
		appearance: none;
		border-radius: 8px;
	}
	
	/* Remove iOS input shadows */
	input,
	textarea,
	select {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}
}

/* Safe Area Insets - Support for notched devices (iPhone X+) */
@supports (padding: max(0px)) {
	body {
		padding-left: max(0px, env(safe-area-inset-left));
		padding-right: max(0px, env(safe-area-inset-right));
	}
	
	.geo-toast-container {
		left: max(var(--geo-space-4), env(safe-area-inset-left));
		right: max(var(--geo-space-4), env(safe-area-inset-right));
		bottom: max(var(--geo-space-4), env(safe-area-inset-bottom));
	}
	
	.geo-sticky-cta {
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
		padding-bottom: max(12px, env(safe-area-inset-bottom));
	}
	
	.geo-modal {
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
		padding-bottom: max(16px, env(safe-area-inset-bottom));
	}
}

/* Improved Touch Feedback */
@media (hover: none) and (pointer: coarse) {
	/* Better tap highlighting */
	* {
		-webkit-tap-highlight-color: rgba(211, 35, 35, 0.1);
		tap-highlight-color: rgba(211, 35, 35, 0.1);
	}
	
	/* Disable tap highlight on specific elements */
	.geo-card,
	.geo-modal,
	.geo-toast {
		-webkit-tap-highlight-color: transparent;
		tap-highlight-color: transparent;
	}
	
	/* Active state feedback for buttons */
	.geo-btn:active {
		transform: scale(0.98);
		opacity: 0.9;
	}
	
	/* Card press feedback */
	.geo-listing-card:active,
	.geo-card-link:active {
		transform: scale(0.99);
		opacity: 0.95;
	}
}

/* Mobile Typography Improvements */
@media (max-width: 640px) {
	/* Adjust font sizes for readability */
	body {
		font-size: 15px;
		line-height: 1.6;
	}
	
	h1, .geo-title {
		font-size: 24px;
		line-height: 1.3;
	}
	
	h2 {
		font-size: 20px;
		line-height: 1.4;
	}
	
	h3 {
		font-size: 18px;
		line-height: 1.4;
	}
	
	/* Better paragraph spacing on mobile */
	p {
		margin-bottom: 16px;
	}
	
	/* Slightly larger text in cards for readability */
	.geo-card p,
	.geo-review p {
		font-size: 15px;
		line-height: 1.6;
	}
}

/* Mobile Navigation & Spacing */
@media (max-width: 768px) {
	/* Reduce excessive whitespace */
	.geo-section {
		padding: 20px 16px;
		margin-bottom: 16px;
	}
	
	.geo-container {
		padding: 16px;
		margin: 12px auto;
	}
	
	/* Grid optimizations */
	.geo-home__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	/* Card spacing */
	.geo-card {
		margin-bottom: 16px;
	}
	
	/* Form spacing */
	.geo-form-row {
		flex-direction: column;
		gap: 16px;
	}
}

/* Mobile Modal Improvements */
@media (max-width: 640px) {
	.geo-modal {
		width: 95%;
		max-width: none;
		margin: 20px auto;
		max-height: calc(100vh - 40px);
		overflow-y: auto;
	}
	
	.geo-modal__header {
		position: sticky;
		top: 0;
		background: var(--geo-white);
		z-index: 10;
		padding-bottom: 16px;
		border-bottom: 1px solid var(--geo-gray-200);
	}
	
	.geo-modal__body {
		padding: 20px 16px;
	}
	
	.geo-modal__footer {
		position: sticky;
		bottom: 0;
		background: var(--geo-white);
		padding-top: 16px;
		border-top: 1px solid var(--geo-gray-200);
	}
}

/* Mobile Image Optimization */
@media (max-width: 768px) {
	/* Prevent layout shift with aspect ratio */
	img {
		height: auto;
		max-width: 100%;
	}
	
	.geo-card-thumb,
	.geo-listing-image,
	.geo-hero__media img {
		object-fit: cover;
		width: 100%;
	}
	
	/* Lazy loading optimization */
	img[loading="lazy"] {
		background: var(--geo-gray-100);
	}
}

/* Mobile Table Responsiveness */
@media (max-width: 640px) {
	table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	/* Stack table cells vertically on very small screens */
	.geo-responsive-table td,
	.geo-responsive-table th {
		display: block;
		text-align: right;
		padding: 8px 12px;
	}
	
	.geo-responsive-table td::before {
		content: attr(data-label);
		float: left;
		font-weight: 600;
		color: var(--geo-text-dark);
	}
}

/* Mobile Performance - Reduce animations on low-end devices */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
	/* Simpler animations for better performance */
	* {
		transition-duration: 0.2s !important;
		animation-duration: 0.3s !important;
	}
	
	/* Disable complex transforms on scroll */
	.geo-card:hover {
		transform: none;
	}
}

/* Very Small Devices (< 375px) */
@media (max-width: 374px) {
	.geo-container {
		padding: 12px;
		margin: 8px auto;
	}
	
	.geo-btn {
		padding: 10px 16px;
		font-size: 14px;
	}
	
	h1, .geo-title {
		font-size: 22px;
	}
	
	/* Stack buttons vertically on very small screens */
	.geo-cta-row,
	.geo-button-group {
		flex-direction: column;
	}
	
	.geo-cta-row .geo-btn,
	.geo-button-group .geo-btn {
		width: 100%;
	}
}

/* Landscape Mobile Optimization */
@media (max-width: 896px) and (orientation: landscape) {
	/* Reduce vertical spacing in landscape */
	.geo-section {
		padding: 16px;
	}
	
	.geo-modal {
		max-height: 90vh;
	}
	
	/* Optimize hero for landscape */
	.geo-hero {
		min-height: auto;
		padding: 20px 0;
	}
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
	/* Fix iOS button styling */
	input[type="submit"],
	input[type="button"],
	button {
		-webkit-appearance: none;
		border-radius: 8px;
	}
	
	/* Fix iOS select styling */
	select {
		background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
		background-repeat: no-repeat;
		background-position: right 12px center;
		background-size: 16px;
		padding-right: 40px;
	}
	
	/* Fix iOS scrolling issues */
	.geo-modal__body,
	.geo-overflow-scroll {
		-webkit-overflow-scrolling: touch;
	}
}

/* Dark Mode Support for Mobile */
@media (max-width: 768px) and (prefers-color-scheme: dark) {
	.geo-card,
	.geo-modal,
	.geo-toast {
		background: #1f2937;
		color: #f3f4f6;
		border-color: #374151;
	}
	
	input,
	textarea,
	select {
		background: #374151;
		color: #f3f4f6;
		border-color: #4b5563;
	}
}
