/* ==========================================================================
   FRESH BARBER - MÁLAGA | ESTILO PREMIUM Y MODERNO
   ========================================================================== */

:root {
	--bg-main: #0B0D11;
	--bg-surface: #12161F;
	--bg-surface-elevated: #181E2A;
	--bg-card: #151A24;
	--bg-card-hover: #1C2331;
	--border-subtle: rgba(255, 255, 255, 0.08);
	--border-gold: rgba(212, 175, 55, 0.28);
	--border-gold-strong: #D4AF37;
	
	--gold-primary: #D4AF37;
	--gold-light: #F3DB83;
	--gold-dark: #A48119;
	--gold-gradient: linear-gradient(135deg, #F3DB83 0%, #D4AF37 50%, #A48119 100%);
	--gold-glow: rgba(212, 175, 55, 0.2);

	--text-primary: #F8F9FA;
	--text-secondary: #AEB7C6;
	--text-muted: #747E8F;
	--text-gold: #E6CA65;

	--accent-red: #D94638;
	--accent-blue: #2A69AC;
	--success: #2ECC71;

	--font-display: "Syne", sans-serif;
	--font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
	--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
	--shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.6);
	--shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.22);

	--transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	scroll-behavior: smooth;
	background-color: var(--bg-main);
	color: var(--text-primary);
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
}

body {
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 70px; /* Space for mobile floating bar */
}

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

a {
	color: inherit;
	text-decoration: none;
}

button, input, select, textarea {
	font-family: inherit;
}

/* Background Atmosphere */
.page-bg-pattern {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background: 
		radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
		radial-gradient(circle at 85% 65%, rgba(42, 105, 172, 0.04) 0%, transparent 40%),
		linear-gradient(180deg, #0B0D11 0%, #0E1219 50%, #0B0D11 100%);
}

.content-wrapper {
	position: relative;
	z-index: 1;
}

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

/* Barber Pole Accent Line */
.barber-pole-strip {
	height: 4px;
	width: 100%;
	background: repeating-linear-gradient(
		-45deg,
		#D94638,
		#D94638 12px,
		#F8F9FA 12px,
		#F8F9FA 24px,
		#2A69AC 24px,
		#2A69AC 36px,
		#F8F9FA 36px,
		#F8F9FA 48px
	);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 13, 17, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-subtle);
	transition: var(--transition);
}

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

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

.brand-icon-box {
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: var(--bg-surface-elevated);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.brand-text-col {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: var(--text-primary);
	text-transform: uppercase;
	line-height: 1.1;
}

.brand-name span {
	color: var(--gold-primary);
}

.brand-location-tag {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-muted);
}

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

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

.nav-link {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	transition: var(--transition);
	position: relative;
	padding: 0.35rem 0;
}

.nav-link:hover {
	color: var(--gold-light);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.925rem;
	padding: 0.75rem 1.4rem;
	border-radius: var(--radius-md);
	cursor: pointer;
	border: 1px solid transparent;
	transition: var(--transition);
	text-align: center;
	white-space: nowrap;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
}

.btn-lg {
	padding: 0.95rem 1.85rem;
	font-size: 1.05rem;
	border-radius: var(--radius-md);
}

.btn-primary {
	background: var(--gold-gradient);
	color: #0B0D11;
	border-color: #F3DB83;
	font-weight: 700;
	box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
	filter: brightness(1.08);
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-primary);
	border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--gold-primary);
	color: var(--gold-light);
	transform: translateY(-2px);
}

.btn-gold-outline {
	background: rgba(212, 175, 55, 0.06);
	color: var(--gold-light);
	border: 1px solid var(--border-gold);
}

.btn-gold-outline:hover {
	background: rgba(212, 175, 55, 0.15);
	border-color: var(--gold-primary);
	color: #FFF;
	transform: translateY(-2px);
}

.btn-call {
	background: #19202C;
	color: var(--text-primary);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-call:hover {
	background: #232B3B;
	border-color: var(--gold-primary);
	color: var(--gold-light);
}

/* ==========================================================================
   HERO SECTION (PORTADA)
   ========================================================================== */

.hero-section {
	position: relative;
	padding: 3.5rem 0 4.5rem;
	overflow: hidden;
}

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

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

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

.hero-badge-row {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.4rem 0.9rem;
	border-radius: var(--radius-full);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid var(--border-gold);
	margin-bottom: 1.25rem;
}

.hero-badge-pin {
	color: var(--gold-primary);
	font-size: 0.9rem;
}

.hero-badge-text {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--gold-light);
	text-transform: uppercase;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 7vw, 4.8rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin-bottom: 1rem;
}

.hero-title .gold-text {
	background: var(--gold-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.hero-subtitle {
	font-size: clamp(1.2rem, 3vw, 1.6rem);
	font-weight: 500;
	color: var(--text-secondary);
	margin-bottom: 1.75rem;
	line-height: 1.35;
}

.hero-subtitle strong {
	color: var(--text-primary);
	font-weight: 700;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.25rem;
}

.hero-rating-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	padding-top: 1.25rem;
	border-top: 1px solid var(--border-subtle);
}

.rating-pill-card {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	padding: 0.5rem 0.9rem;
	border-radius: var(--radius-md);
}

.rating-stars-gold {
	color: #FFC107;
	font-size: 0.95rem;
	letter-spacing: 1px;
}

.rating-pill-val {
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--text-primary);
}

.rating-pill-sub {
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* Hero Media Visual Showcase */
.hero-visual-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	box-shadow: var(--shadow-lg);
}

.hero-visual-img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	display: block;
	filter: contrast(1.05) brightness(0.92);
	transition: transform 0.6s ease;
}

.hero-visual-card:hover .hero-visual-img {
	transform: scale(1.03);
}

.hero-visual-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 13, 17, 0) 40%, rgba(11, 13, 17, 0.9) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
}

.hero-floating-tag {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(11, 13, 17, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border-gold);
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold-light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-card-bottom-info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.hero-card-title {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: #FFFFFF;
}

.hero-card-subtitle {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

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

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

.section-alt {
	background: rgba(18, 22, 31, 0.5);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.section-header {
	margin-bottom: 2.75rem;
	text-align: center;
}

.section-header.text-left {
	text-align: left;
}

.section-tag {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-primary);
	margin-bottom: 0.5rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4.5vw, 2.75rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #FFFFFF;
	text-transform: uppercase;
	line-height: 1.15;
}

.section-lead {
	font-size: 1.05rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0.75rem auto 0;
	line-height: 1.5;
}

.section-lead.no-center {
	margin: 0.75rem 0 0;
}

/* ==========================================================================
   2. SERVICIOS (SERVICES)
   ========================================================================== */

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

@media (min-width: 680px) {
	.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-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.6rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--gold-gradient);
	opacity: 0;
	transition: var(--transition);
}

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

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

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

.service-icon-wrap {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
}

.service-card-badge {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.25rem 0.6rem;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-secondary);
}

.service-card-badge.popular {
	background: rgba(212, 175, 55, 0.15);
	color: var(--gold-light);
	border: 1px solid var(--border-gold);
}

.service-name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 0.5rem;
}

.service-desc {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 1.25rem;
	line-height: 1.45;
}

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

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

.service-price-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
}

.service-price-value {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gold-light);
}

.service-action-btn {
	padding: 0.45rem 0.9rem;
	font-size: 0.82rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	background: rgba(212, 175, 55, 0.12);
	color: var(--gold-light);
	border: 1px solid var(--border-gold);
	cursor: pointer;
	transition: var(--transition);
}

.service-action-btn:hover {
	background: var(--gold-primary);
	color: #0B0D11;
}

/* Price Notice Bar */
.price-notice-bar {
	margin-top: 2rem;
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	text-align: center;
}

@media (min-width: 640px) {
	.price-notice-bar {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

.price-notice-text {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.price-notice-text strong {
	color: var(--text-primary);
}

/* ==========================================================================
   3. NUESTRO TRABAJO (GALERÍA DE FOTOS REALES)
   ========================================================================== */

.gallery-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.filter-chip {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--text-secondary);
	padding: 0.45rem 1rem;
	border-radius: var(--radius-full);
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.filter-chip:hover {
	color: var(--text-primary);
	border-color: rgba(255, 255, 255, 0.2);
}

.filter-chip.active {
	background: var(--gold-gradient);
	color: #0B0D11;
	border-color: transparent;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.gallery-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

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

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

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
	filter: brightness(0.92) contrast(1.04);
}

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

.gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(11, 13, 17, 0.92) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.2rem;
	opacity: 0.95;
	transition: var(--transition);
}

.gallery-item-tag {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gold-light);
	margin-bottom: 0.25rem;
}

.gallery-item-title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
}

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

.lightbox-content {
	position: relative;
	max-width: 800px;
	width: 100%;
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.lightbox-img {
	width: 100%;
	max-height: 70vh;
	object-fit: cover;
	display: block;
}

.lightbox-info {
	padding: 1.25rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--bg-surface);
}

.lightbox-close-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
	color: #FFF;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.2rem;
	transition: var(--transition);
}

.lightbox-close-btn:hover {
	background: var(--gold-primary);
	color: #000;
}

/* ==========================================================================
   4. RESEÑAS (REVIEWS SECTION)
   ========================================================================== */

.reviews-hero-card {
	background: linear-gradient(135deg, #18202F 0%, #11151E 100%);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	padding: 2.25rem 1.75rem;
	text-align: center;
	margin-bottom: 2.5rem;
	box-shadow: var(--shadow-gold);
	position: relative;
	overflow: hidden;
}

.reviews-hero-card::before {
	content: "";
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

.reviews-rating-number {
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 7vw, 4.5rem);
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1;
	margin-bottom: 0.35rem;
}

.reviews-rating-number span {
	color: var(--gold-primary);
}

.reviews-stars-row {
	color: #FFC107;
	font-size: 1.5rem;
	letter-spacing: 4px;
	margin-bottom: 0.6rem;
}

.reviews-count-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--gold-light);
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid var(--border-gold);
	padding: 0.4rem 1.2rem;
	border-radius: var(--radius-full);
}

.reviews-summary-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

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

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

.review-highlight-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: var(--transition);
}

.review-highlight-card:hover {
	transform: translateY(-3px);
	border-color: var(--border-gold);
	background: var(--bg-card-hover);
}

.review-highlight-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: rgba(212, 175, 55, 0.08);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
	font-size: 1.2rem;
}

.review-highlight-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	color: #FFFFFF;
}

.review-highlight-desc {
	font-size: 0.875rem;
	color: var(--text-secondary);
	line-height: 1.45;
}

/* ==========================================================================
   5. SOBRE FRESH BARBER (ABOUT US)
   ========================================================================== */

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

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

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

.about-paragraph {
	font-size: 1.05rem;
	color: var(--text-secondary);
	line-height: 1.65;
}

.about-paragraph strong {
	color: var(--text-primary);
}

.about-pillars-list {
	display: grid;
	gap: 0.9rem;
	margin-top: 0.5rem;
}

.about-pillar-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	background: var(--bg-surface);
	padding: 0.9rem 1.1rem;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-subtle);
}

.about-pillar-icon {
	color: var(--gold-primary);
	font-size: 1.1rem;
	margin-top: 0.15rem;
}

.about-pillar-text h4 {
	font-size: 0.95rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 0.2rem;
}

.about-pillar-text p {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.about-media-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	background: var(--bg-card);
	box-shadow: var(--shadow-lg);
}

.about-media-img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

.about-experience-badge {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	right: 1.25rem;
	background: rgba(11, 13, 17, 0.92);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-md);
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.about-badge-icon {
	font-size: 1.6rem;
	color: var(--gold-primary);
}

.about-badge-text-main {
	font-weight: 700;
	color: #FFFFFF;
	font-size: 0.95rem;
}

.about-badge-text-sub {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

/* ==========================================================================
   6 & 7 & 8. UBICACIÓN, HORARIO & CONTACTO
   ========================================================================== */

.location-contact-grid {
	display: grid;
	gap: 2rem;
}

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

.location-info-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.location-address-box {
	display: flex;
	gap: 1.1rem;
	align-items: flex-start;
}

.location-icon-circle {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid var(--border-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
	flex-shrink: 0;
}

.location-address-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 0.25rem;
}

.location-address-exact {
	font-size: 1.05rem;
	color: var(--gold-light);
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.location-address-city {
	font-size: 0.9rem;
	color: var(--text-secondary);
}

/* Stylized Visual Map Representation */
.map-embed-wrapper {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border-subtle);
	background: #181E29;
	height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.25rem;
}

.map-bg-grid {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(#2A3447 1px, transparent 1px) 0 0 / 20px 20px,
		linear-gradient(135deg, #131720 0%, #1A212E 100%);
	opacity: 0.8;
}

.map-pin-indicator {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	z-index: 2;
}

.map-pin-bubble {
	background: #0B0D11;
	border: 1px solid var(--border-gold);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--gold-light);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
	white-space: nowrap;
}

.map-pin-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--gold-primary);
	box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.3);
	animation: pulse-pin 2s infinite;
}

@keyframes pulse-pin {
	0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
	70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
	100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.map-overlay-footer {
	position: relative;
	z-index: 2;
	margin-top: auto;
	display: flex;
	justify-content: flex-end;
}

/* Schedule & Contact Cards */
.schedule-contact-col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.schedule-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
}

.card-inner-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.card-inner-icon {
	color: var(--gold-primary);
	font-size: 1.3rem;
}

.card-inner-title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: #FFFFFF;
}

.schedule-list {
	display: grid;
	gap: 0.75rem;
}

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

.schedule-day {
	font-weight: 600;
	color: var(--text-primary);
}

.schedule-time {
	color: var(--gold-light);
	font-weight: 600;
}

.schedule-edit-hint {
	margin-top: 1rem;
	font-size: 0.8rem;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* Contact Fast Card */
.contact-fast-card {
	background: linear-gradient(135deg, #18202F 0%, #121722 100%);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
}

.contact-phone-display {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3.5vw, 1.9rem);
	font-weight: 800;
	color: #FFFFFF;
	margin: 0.75rem 0 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-phone-display a {
	color: var(--gold-light);
	transition: var(--transition);
}

.contact-phone-display a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.contact-actions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.85rem;
}

@media (max-width: 480px) {
	.contact-actions-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   BOOKING MODAL (RESERVAR CITA)
   ========================================================================== */

.modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(5, 7, 10, 0.85);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.modal-card {
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
	border-radius: var(--radius-lg);
	width: 100%;
	max-width: 520px;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
}

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

.modal-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	color: #FFFFFF;
}

.modal-close-btn {
	background: transparent;
	border: none;
	color: var(--text-muted);
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
	transition: var(--transition);
}

.modal-close-btn:hover {
	color: var(--text-primary);
}

.modal-body {
	padding: 1.5rem;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-secondary);
}

.form-input,
.form-select {
	background: var(--bg-surface);
	border: 1px solid var(--border-subtle);
	color: var(--text-primary);
	padding: 0.75rem 1rem;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	outline: none;
	transition: var(--transition);
}

.form-input:focus,
.form-select:focus {
	border-color: var(--gold-primary);
	box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.modal-footer {
	padding: 1rem 1.5rem 1.25rem;
	border-top: 1px solid var(--border-subtle);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: var(--bg-surface);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
	background: #07090C;
	border-top: 1px solid var(--border-subtle);
	padding: 3.5rem 0 2rem;
}

.footer-top-grid {
	display: grid;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

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

.footer-brand-col {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.footer-desc {
	font-size: 0.9rem;
	color: var(--text-muted);
	max-width: 360px;
	line-height: 1.5;
}

.footer-links-col h5 {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

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

.footer-nav-list a {
	font-size: 0.875rem;
	color: var(--text-secondary);
	transition: var(--transition);
}

.footer-nav-list a:hover {
	color: var(--gold-light);
}

.footer-bottom-bar {
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	text-align: center;
	font-size: 0.8rem;
	color: var(--text-muted);
}

@media (min-width: 640px) {
	.footer-bottom-bar {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/* ==========================================================================
   MOBILE FLOATING QUICK ACTION BAR
   ========================================================================== */

.mobile-bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: rgba(11, 13, 17, 0.96);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-top: 1px solid var(--border-gold);
	padding: 0.6rem 0.75rem;
	box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
	display: flex;
	gap: 0.5rem;
}

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

.mobile-bar-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 0.4rem;
	border-radius: var(--radius-sm);
	font-size: 0.82rem;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
}

.mobile-bar-btn-primary {
	background: var(--gold-gradient);
	color: #0B0D11;
	border: 1px solid #F3DB83;
}

.mobile-bar-btn-secondary {
	background: #171E2B;
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-bar-btn-tertiary {
	background: #10141D;
	color: var(--gold-light);
	border: 1px solid var(--border-gold);
}

/* Price & Schedule Customizer Modal / Panel for the Barber */
.customizer-toggle-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	padding: 0.35rem 0.7rem;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-subtle);
	color: var(--text-muted);
	cursor: pointer;
	transition: var(--transition);
}

.customizer-toggle-badge:hover {
	color: var(--gold-light);
	border-color: var(--border-gold);
}
