/* ==========================================================================
   Fresh Barber - Málaga | Modern Luxury Barbershop Stylesheet
   ========================================================================== */

:root {
	--bg-main: #0a0b10;
	--bg-surface: #11131a;
	--bg-surface-elevated: #171a24;
	--bg-surface-glass: rgba(17, 19, 26, 0.85);
	--bg-highlight: #1f2332;
	
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-medium: rgba(255, 255, 255, 0.14);
	--border-hover: rgba(255, 255, 255, 0.28);
	
	--text-main: #ffffff;
	--text-muted: #9ba3b8;
	--text-dim: #626a7e;
	
	--gold: #d4af37;
	--gold-bright: #f0c952;
	--gold-dim: rgba(212, 175, 55, 0.15);
	--gold-glow: rgba(212, 175, 55, 0.25);
	
	--green-open: #22c55e;
	--green-open-bg: rgba(34, 197, 94, 0.12);
	--red-closed: #ef4444;
	--red-closed-bg: rgba(239, 68, 68, 0.12);

	--font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-pill: 9999px;
	
	--shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
	--shadow-elevation: 0 10px 35px rgba(0, 0, 0, 0.6);
	--shadow-glow: 0 0 30px rgba(255, 255, 255, 0.06);
	
	--transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--text-main);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100vh;
	background: radial-gradient(circle at 50% 0%, #151824 0%, var(--bg-main) 60%);
	color: var(--text-main);
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 75px; /* space for mobile sticky bar */
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
	transition: var(--transition-smooth);
}

img {
	max-width: 100%;
	display: block;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 2rem;
	}
}

.section {
	padding: 5rem 0;
	position: relative;
}

@media (min-width: 768px) {
	.section {
		padding: 6.5rem 0;
	}
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3.5rem;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-medium);
	color: var(--gold-bright);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.35rem 0.9rem;
	border-radius: var(--radius-pill);
	margin-bottom: 1rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin-bottom: 1rem;
	color: #ffffff;
}

.section-description {
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(10, 11, 16, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-subtle);
	transition: var(--transition-smooth);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-symbol {
	width: 38px;
	height: 38px;
	background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
	color: #0a0b10;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 900;
	font-family: var(--font-display);
	font-size: 1.15rem;
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-name {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
	color: #ffffff;
	line-height: 1.1;
}

.logo-sub {
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--gold-bright);
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 1.75rem;
}

@media (min-width: 992px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	color: var(--text-muted);
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 0.5rem 0.25rem;
	position: relative;
}

.nav-link:hover {
	color: #ffffff;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.3rem 0.65rem;
	border-radius: var(--radius-pill);
}

.status-badge.open {
	background: var(--green-open-bg);
	color: var(--green-open);
	border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-badge.closed {
	background: var(--red-closed-bg);
	color: var(--red-closed);
	border: 1px solid rgba(239, 68, 68, 0.25);
}

.status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.2); }
}

/* ==========================================================================
   Buttons & CTA Elements
   ========================================================================== */

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: #ffffff;
	color: #0a0b10;
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
	transition: var(--transition-smooth);
}

.btn-primary:hover {
	background: #f1f3f7;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	background: rgba(255, 255, 255, 0.05);
	color: #ffffff;
	border: 1px solid var(--border-medium);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.85rem 1.6rem;
	border-radius: var(--radius-md);
	backdrop-filter: blur(8px);
	transition: var(--transition-smooth);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--border-hover);
	transform: translateY(-2px);
}

.btn-large {
	padding: 1.05rem 2rem;
	font-size: 1.05rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
	position: relative;
	padding-top: calc(72px + 2.5rem);
	padding-bottom: 5rem;
	overflow: hidden;
}

@media (min-width: 992px) {
	.hero-section {
		padding-top: calc(72px + 4.5rem);
		padding-bottom: 6.5rem;
	}
}

.hero-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 992px) {
	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 4rem;
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	z-index: 2;
}

.hero-badge-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.hero-pill-rating {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.3);
	color: #ffffff;
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 600;
}

.hero-pill-rating .stars {
	color: var(--gold-bright);
	display: flex;
	gap: 2px;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 7vw, 4.5rem);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.hero-title span {
	display: block;
	background: linear-gradient(180deg, #ffffff 0%, #8e95a5 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-tagline {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 2.8vw, 1.75rem);
	font-weight: 600;
	color: #ffffff;
	letter-spacing: -0.01em;
}

.hero-tagline .highlight {
	color: var(--gold-bright);
}

.hero-text {
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.65;
	max-width: 540px;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 0.5rem;
}

@media (min-width: 480px) {
	.hero-actions {
		flex-direction: row;
		align-items: center;
	}
}

.hero-trust-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-subtle);
	margin-top: 1rem;
}

.trust-item {
	display: flex;
	flex-direction: column;
}

.trust-item strong {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
}

.trust-item span {
	font-size: 0.75rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Hero Visual / Card */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.hero-image-card {
	position: relative;
	width: 100%;
	max-width: 480px;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--border-medium);
	background: var(--bg-surface);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.hero-image-card img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	filter: contrast(1.05) brightness(0.92);
}

.hero-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,11,16,0.1) 0%, rgba(10,11,16,0.85) 95%);
	pointer-events: none;
}

.hero-floating-badge {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	background: rgba(17, 19, 26, 0.9);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.floating-badge-info h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
}

.floating-badge-info p {
	font-size: 0.8rem;
	color: var(--text-muted);
}

.floating-call-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ffffff;
	color: #0a0b10;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ==========================================================================
   Live Status Strip
   ========================================================================== */

.live-bar {
	background: var(--bg-surface);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
	padding: 1.25rem 0;
}

.live-bar-inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 768px) {
	.live-bar-inner {
		flex-direction: row;
	}
}

.live-status-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.live-status-text {
	display: flex;
	flex-direction: column;
}

.live-status-text strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
}

.live-status-text span {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.live-bar-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* ==========================================================================
   Sobre Nosotros
   ========================================================================== */

.about-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 992px) {
	.about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4.5rem;
	}
}

.about-images-cluster {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	position: relative;
}

.about-img-main {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	height: 380px;
}

.about-img-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-img-secondary {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.about-img-sub {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	height: 180px;
}

.about-img-sub img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-experience-card {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 180px;
}

.about-experience-card .exp-num {
	font-family: var(--font-display);
	font-size: 2.25rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
}

.about-experience-card .exp-label {
	font-size: 0.8125rem;
	color: var(--gold-bright);
	font-weight: 600;
	margin-top: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.about-experience-card .exp-desc {
	font-size: 0.775rem;
	color: var(--text-muted);
	margin-top: 0.4rem;
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.about-lead {
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.5;
}

.about-paragraph {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.about-features-list {
	display: grid;
	gap: 1.25rem;
	margin-top: 0.5rem;
}

.about-feature-item {
	display: flex;
	gap: 1rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 1.25rem;
	border-radius: var(--radius-md);
}

.about-feature-icon {
	width: 44px;
	height: 44px;
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-shrink: 0;
}

.about-feature-text h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.25rem;
}

.about-feature-text p {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ==========================================================================
   Servicios Section
   ========================================================================== */

.services-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	transition: var(--transition-smooth);
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: var(--border-hover);
	background: var(--bg-surface-elevated);
	box-shadow: var(--shadow-elevation);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	opacity: 0;
	transition: var(--transition-smooth);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.service-icon-box {
	width: 52px;
	height: 52px;
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
}

.service-badge {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.25rem 0.6rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-pill);
	color: var(--text-muted);
}

.service-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.75rem;
	line-height: 1.25;
}

.service-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.service-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.service-price-placeholder {
	display: flex;
	flex-direction: column;
}

.price-note-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-dim);
	font-weight: 600;
}

.price-note-value {
	font-size: 0.9rem;
	font-weight: 700;
	color: #ffffff;
}

.service-action-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--gold-bright);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.service-action-link:hover {
	color: #ffffff;
	transform: translateX(2px);
}

.services-footer-banner {
	margin-top: 2.5rem;
	background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	padding: 1.75rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: center;
	justify-content: space-between;
	text-align: center;
}

@media (min-width: 768px) {
	.services-footer-banner {
		flex-direction: row;
		text-align: left;
	}
}

.banner-text h4 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.25rem;
}

.banner-text p {
	font-size: 0.9rem;
	color: var(--text-muted);
}

/* ==========================================================================
   Galería Section
   ========================================================================== */

.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.filter-btn {
	padding: 0.55rem 1.15rem;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 600;
	background: var(--bg-surface);
	color: var(--text-muted);
	border: 1px solid var(--border-subtle);
}

.filter-btn:hover {
	color: #ffffff;
	border-color: var(--border-medium);
}

.filter-btn.active {
	background: #ffffff;
	color: #0a0b10;
	border-color: #ffffff;
	font-weight: 700;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	aspect-ratio: 4 / 5;
	cursor: pointer;
	group: true;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
	transform: scale(1.06);
}

.gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(10,11,16,0.9) 100%);
	opacity: 0.8;
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay {
	opacity: 1;
}

.gallery-item-category {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold-bright);
	font-weight: 600;
}

.gallery-item-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
}

/* Lightbox Modal */
.lightbox-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(5, 6, 9, 0.94);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.lightbox-content {
	position: relative;
	max-width: 900px;
	width: 100%;
	background: var(--bg-surface);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-image-wrap {
	width: 100%;
	max-height: 70vh;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-image-wrap img {
	max-width: 100%;
	max-height: 70vh;
	object-fit: contain;
}

.lightbox-bar {
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-surface-elevated);
	border-top: 1px solid var(--border-subtle);
}

.lightbox-close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.lightbox-close-btn:hover {
	background: #ffffff;
	color: #000;
}

/* ==========================================================================
   Reseñas Section
   ========================================================================== */

.reviews-summary-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-xl);
	padding: 2.5rem 1.75rem;
	margin-bottom: 2.5rem;
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.reviews-summary-card {
		padding: 3rem 2.5rem;
	}
}

.reviews-score-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
	.reviews-score-banner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.big-rating-left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.rating-number-badge {
	font-family: var(--font-display);
	font-size: 3.75rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	letter-spacing: -0.03em;
}

.rating-details-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rating-stars-row {
	display: flex;
	gap: 4px;
	color: var(--gold-bright);
	font-size: 1.25rem;
}

.rating-count-pill {
	font-size: 1.05rem;
	font-weight: 700;
	color: #ffffff;
}

.rating-source-text {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.rating-badge-verified {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	color: #4ade80;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-pill);
	font-size: 0.85rem;
	font-weight: 600;
}

.review-aspects-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

@media (min-width: 640px) {
	.review-aspects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.review-aspects-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.aspect-card {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.35rem;
	display: flex;
	gap: 1rem;
}

.aspect-icon {
	width: 38px;
	height: 38px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-medium);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-bright);
	flex-shrink: 0;
}

.aspect-info h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 0.25rem;
}

.aspect-info p {
	font-size: 0.825rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ==========================================================================
   Ubicación, Contacto y Horario (Split Grid)
   ========================================================================== */

.location-contact-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
}

@media (min-width: 992px) {
	.location-contact-grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.location-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-xl);
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.location-header {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.location-address-box {
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.address-content {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.address-icon {
	color: var(--gold-bright);
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.address-text strong {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
}

.address-text span {
	font-size: 0.85rem;
	color: var(--text-muted);
}

.copy-btn {
	padding: 0.5rem 0.85rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-sm);
	font-size: 0.775rem;
	font-weight: 600;
	color: #ffffff;
	white-space: nowrap;
}

.copy-btn:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* Map Representation */
.map-visual-container {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	background: #141721;
}

.map-visual-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.map-card-overlay-btn {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	z-index: 5;
}

/* Hours & Contact Right Column */
.hours-contact-col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.schedule-card {
	background: var(--bg-surface);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-xl);
	padding: 2rem;
}

.schedule-card h3 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.schedule-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.schedule-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	background: var(--bg-surface-elevated);
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-subtle);
	font-size: 0.9rem;
}

.schedule-row.active-today {
	border-color: var(--gold-bright);
	background: rgba(212, 175, 55, 0.08);
}

.schedule-day {
	font-weight: 600;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.today-indicator {
	font-size: 0.65rem;
	text-transform: uppercase;
	background: var(--gold-bright);
	color: #0a0b10;
	font-weight: 800;
	padding: 0.15rem 0.4rem;
	border-radius: 4px;
}

.schedule-time {
	color: var(--text-muted);
	font-weight: 500;
	text-align: right;
}

.schedule-row.active-today .schedule-time {
	color: #ffffff;
	font-weight: 700;
}

.schedule-time.closed {
	color: var(--red-closed);
	font-weight: 600;
}

.contact-quick-card {
	background: linear-gradient(135deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
	border: 1px solid var(--border-medium);
	border-radius: var(--radius-xl);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-phone-display {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.phone-icon-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #ffffff;
	color: #0a0b10;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.phone-details-text span {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--text-muted);
	font-weight: 600;
}

.phone-details-text a {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 800;
	color: #ffffff;
	display: block;
	line-height: 1.2;
}

.phone-details-text a:hover {
	color: var(--gold-bright);
}

.contact-buttons-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

@media (min-width: 480px) {
	.contact-buttons-group {
		grid-template-columns: 1.2fr 1fr;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: #06070a;
	border-top: 1px solid var(--border-subtle);
	padding: 4rem 0 2.5rem;
	color: var(--text-muted);
	font-size: 0.875rem;
}

.footer-top-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer-top-grid {
		grid-template-columns: 2fr 1fr 1.2fr;
	}
}

.footer-brand-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 380px;
}

.footer-brand-col p {
	line-height: 1.6;
}

.footer-links-col h4,
.footer-contact-col h4 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1.25rem;
}

.footer-links-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.footer-links-list a:hover {
	color: #ffffff;
}

.footer-contact-items {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.footer-contact-line {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.8rem;
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

/* ==========================================================================
   Mobile Sticky Action Bar
   ========================================================================== */

.mobile-action-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(10, 11, 16, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-top: 1px solid var(--border-medium);
	padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
	display: flex;
	gap: 0.75rem;
}

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

.mobile-action-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 0.5rem;
	border-radius: var(--radius-md);
	font-size: 0.9rem;
	font-weight: 700;
}

.mobile-action-btn.primary {
	background: #ffffff;
	color: #0a0b10;
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.mobile-action-btn.secondary {
	background: var(--bg-surface-elevated);
	color: #ffffff;
	border: 1px solid var(--border-medium);
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */

.toast-message {
	position: fixed;
	bottom: 5.5rem;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	color: #0a0b10;
	padding: 0.6rem 1.2rem;
	border-radius: var(--radius-pill);
	font-size: 0.875rem;
	font-weight: 700;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	z-index: 300;
	animation: toastSlide 0.3s ease-out;
}

@keyframes toastSlide {
	from { opacity: 0; transform: translate(-50%, 10px); }
	to { opacity: 1; transform: translate(-50%, 0); }
}
