/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/

:root {
	--dannys-bg: #00091d;
	--dannys-panel: #050e24;
	--dannys-panel-soft: #0a1530;
	--dannys-paper: #eef2fc;
	--dannys-paper-soft: #b0bdd4;
	--dannys-muted: #5e718f;
	--dannys-line: rgba(100, 150, 220, 0.12);
	--dannys-accent: #dd3333;
	--dannys-accent-strong: #ff4444;
	--dannys-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	--dannys-radius: 28px;
	--dannys-space-1: 8px;
	--dannys-space-2: 12px;
	--dannys-space-3: 16px;
	--dannys-space-4: 24px;
	--dannys-space-5: 28px;
	--dannys-space-6: 42px;
	--dannys-space-7: 64px;
}

/* Force no horizontal scroll */
html,
body {
	overflow-x: hidden !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Make all containers respect screen width */
.container,
section,
div,
article,
header,
footer,
main,
nav {
	max-width: 100vw !important;
	box-sizing: border-box !important;
}

/* Responsive images and media */
img,
iframe,
video,
embed,
object {
	max-width: 100% !important;
	height: auto !important;
}

/* Break long words */
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
a {
	word-wrap: break-word !important;
	overflow-wrap: break-word !important;
}

/* Fix any elements with fixed pixel widths */
[style*="width"] {
	max-width: 100% !important;
}

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

html,
body {
	overflow-x: hidden;
}

body,
button,
input,
select,
textarea,
.ast-button,
.ast-custom-button {
	font-family: 'Manrope', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-content :where(h1, h2, h3, h4, h5, h6),
.entry-content :where(h1, h2, h3, h4, h5, h6) a,
.site-title,
.site-title a {
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: none;
}

body {
	background: #00091d;
	color: var(--dannys-paper);
}

.site-logo-img img.custom-logo,
header .custom-logo-link img {
	display: block;
	width: 100% !important;
	height: auto !important;
	max-width: 112px;
	object-fit: contain;
	object-position: center;
}

#masthead .site-branding.ast-site-identity,
#ast-mobile-header .site-branding.ast-site-identity {
	flex: 0 0 auto;
	width: clamp(88px, 10vw, 132px);
	max-width: clamp(88px, 10vw, 132px) !important;
	min-width: 0;
}

#masthead .site-logo-img,
#masthead .custom-logo-link,
#ast-mobile-header .site-logo-img,
#ast-mobile-header .custom-logo-link {
	display: block;
	width: 100%;
	max-width: 100%;
}

.dannys-eyebrow {
	display: inline-block;
	margin-bottom: var(--dannys-space-2);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--dannys-accent);
}

.dannys-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 0.92rem 1.4rem;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dannys-button:hover,
.dannys-button:focus {
	transform: translateY(-2px);
}

.dannys-button-primary {
	background: linear-gradient(135deg, #aa1f1f 0%, var(--dannys-accent-strong) 100%);
	color: #fff;
	box-shadow: 0 16px 34px rgba(221, 51, 51, 0.3);
}

.dannys-button-primary:hover,
.dannys-button-primary:focus {
	color: #fff;
	box-shadow: 0 20px 42px rgba(221, 51, 51, 0.45);
}

.dannys-button-secondary {
	border: 1px solid rgba(255, 245, 231, 0.18);
	background: rgba(255, 255, 255, 0.04);
	color: var(--dannys-paper);
}

.dannys-button-secondary:hover,
.dannys-button-secondary:focus {
	color: var(--dannys-paper);
	background: rgba(255, 255, 255, 0.1);
}

.sticky-book-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 25px;
	border-radius: 40px;
	background: linear-gradient(135deg, #aa1f1f 0%, #dd3333 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	line-height: 1;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(221, 51, 51, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-book-btn:hover,
.sticky-book-btn:focus {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(221, 51, 51, 0.55);
}

#backToTop {
	display: none;
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #000;
	color: white;
	cursor: pointer;
	padding: 15px 20px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#backToTop:hover,
#backToTop:focus {
	background-color: #333;
}

/* Mobile header must NOT have backdrop-filter — it creates a stacking context
   that traps the position:fixed nav overlay inside the header bounds */
.ast-header-break-point #ast-mobile-header {
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
}

@media (max-width: 921px) {
	.sticky-book-btn {
		right: 16px;
		bottom: calc(18px + env(safe-area-inset-bottom));
		min-height: 48px;
		padding: 12px 20px;
		font-size: 0.96rem;
	}

	#backToTop {
		right: 16px;
		bottom: calc(82px + env(safe-area-inset-bottom));
	}

	#ast-mobile-header .ast-builder-grid-row,
	#ast-mobile-header .main-header-bar,
	#ast-mobile-header .ast-primary-header-bar {
		position: relative;
		display: block !important;
		gap: 0;
	}

	#ast-mobile-header .site-branding.ast-site-identity {
		width: min(152px, calc(100vw - 110px));
		max-width: min(152px, calc(100vw - 110px)) !important;
		margin: 0 auto;
	}

	#ast-mobile-header .site-logo-img img.custom-logo,
	#ast-mobile-header .custom-logo-link img,
	.ast-header-break-point #ast-mobile-header .site-branding img {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: 118px;
	}

	#ast-mobile-header [data-section="title_tagline"],
	#ast-mobile-header .ast-builder-layout-element[data-section="title_tagline"] {
		position: relative;
		z-index: 10002;
		width: 100%;
		display: flex;
		justify-content: center;
		padding-top: 8px;
	}

	#ast-mobile-header [data-section="section-header-mobile-trigger"] {
		position: absolute;
		top: 16px;
		right: 20px;
		z-index: 10003;
		flex: 0 0 auto;
		margin-left: 0;
	}

	#ast-mobile-header .main-header-bar {
		min-height: 148px;
		padding-top: 16px !important;
		padding-bottom: 18px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	#ast-mobile-header .ast-button-wrap,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal,
	#ast-mobile-header .ast-mobile-menu-trigger-fill,
	#ast-mobile-header .main-header-menu-toggle {
		position: relative;
		z-index: 10002;
	}

	#ast-mobile-header .main-header-menu-toggle,
	#ast-mobile-header .ast-mobile-menu-trigger-fill,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-width: 50px;
		min-height: 50px;
		padding: 0;
		border: 1px solid rgba(100, 150, 220, 0.16);
		border-radius: 16px;
		background: rgba(5, 14, 36, 0.92);
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
		color: rgba(238, 242, 252, 0.96);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
	}

	#ast-mobile-header .main-header-menu-toggle .mobile-menu-toggle-icon,
	#ast-mobile-header .ast-mobile-menu-trigger-fill .mobile-menu-toggle-icon,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal .mobile-menu-toggle-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		padding: 0;
		margin: 0;
		line-height: 0;
	}

	#ast-mobile-header .main-header-menu-toggle:hover,
	#ast-mobile-header .main-header-menu-toggle:focus,
	#ast-mobile-header .ast-mobile-menu-trigger-fill:hover,
	#ast-mobile-header .ast-mobile-menu-trigger-fill:focus,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal:hover,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal:focus {
		transform: translateY(-1px);
		border-color: rgba(221, 51, 51, 0.4);
		background: rgba(0, 9, 25, 0.96);
		color: #ff4444;
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	}

	#ast-mobile-header .main-header-menu-toggle .mobile-menu-wrap,
	#ast-mobile-header .ast-mobile-menu-trigger-fill .mobile-menu-wrap,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal .mobile-menu-wrap {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}

	#ast-mobile-header .main-header-menu-toggle .ahfb-svg-iconset,
	#ast-mobile-header .ast-mobile-menu-trigger-fill .ahfb-svg-iconset,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal .ahfb-svg-iconset {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		margin: 0 !important;
		padding: 0 !important;
		line-height: 0 !important;
		vertical-align: middle;
	}

	#ast-mobile-header .main-header-menu-toggle .ast-mobile-svg,
	#ast-mobile-header .ast-mobile-menu-trigger-fill .ast-mobile-svg,
	#ast-mobile-header .ast-mobile-menu-trigger-minimal .ast-mobile-svg {
		width: 22px;
		height: 22px;
		fill: currentColor;
		display: block;
		margin: 0;
	}

	#ast-mobile-header .main-header-menu-toggle.ast-mobile-menu-trigger-fill[aria-expanded="true"],
	#ast-mobile-header .ast-mobile-menu-trigger-fill[aria-expanded="true"],
	#ast-mobile-header .ast-mobile-menu-trigger-minimal[aria-expanded="true"] {
		border-color: rgba(221, 51, 51, 0.5);
		background: rgba(0, 12, 32, 0.98);
		color: #ff4444;
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
	}

	/* .ast-builder-menu-1 must be zero-height in the stacked header flow;
	   the actual nav panel is position:absolute so it overlays the page */
	#ast-mobile-header .ast-builder-menu-1 {
		height: 0;
		overflow: visible;
		padding: 0 !important;
		margin: 0 !important;
	}

	/* Dropdown panel — Astra shows/hides via display:none/block.
	   position:fixed bypasses ALL ancestor overflow/stacking-context issues. */
	#ast-mobile-header .main-header-bar-navigation {
		position: fixed;
		top: 148px;
		left: 0;
		right: 0;
		width: 100vw !important;
		height: calc(100dvh - 148px);
		overflow-y: auto;
		overflow-x: hidden;
		background: linear-gradient(180deg, #010916 0%, #00091d 100%);
		border-top: 2px solid #dd3333;
		padding: 0 !important;
		box-sizing: border-box;
		z-index: 99999 !important;
		isolation: isolate;
	}

	#ast-mobile-header .main-header-bar-navigation::before {
		content: "";
		position: absolute;
		inset: 0;
		background:
			linear-gradient(180deg, rgba(1, 9, 22, 0.88) 0%, rgba(0, 9, 29, 0.92) 100%),
			url('/wp-content/themes/astra-child/assets/images/mobile-menu-pattern.jpeg') center top / cover no-repeat;
		opacity: 0.95;
		pointer-events: none;
		z-index: 0;
	}

	/* Strip Astra's inner wrappers — reset all height/flex so items sit at top */
	#ast-mobile-header .main-header-bar-navigation nav,
	#ast-mobile-header .main-header-bar-navigation .main-navigation,
	#ast-mobile-header .main-header-bar-navigation .ast-main-header-bar-alignment,
	#ast-mobile-header .main-header-bar-navigation .ast-flex,
	#ast-mobile-header .main-header-bar-navigation .ast-flex-grow-1,
	#ast-mobile-header .main-header-bar-navigation .ast-inline-flex {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
		padding: 0 !important;
		margin: 0 !important;
		flex: none !important;
		align-items: initial !important;
		justify-content: initial !important;
		position: relative;
		z-index: 1;
	}

	/* Link list */
	#ast-mobile-header .main-header-bar-navigation .main-header-menu {
		display: block !important;
		margin: 0 !important;
		padding: 8px 0 calc(40px + env(safe-area-inset-bottom, 0px)) !important;
		list-style: none !important;
		background: transparent !important;
		border: 0 !important;
		box-shadow: none !important;
	}

	/* Each row */
	#ast-mobile-header .main-header-bar-navigation .menu-item {
		display: block !important;
		width: 100%;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
		background: transparent !important;
		border: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
		box-shadow: none !important;
		position: relative;
	}

	/* Link rows */
	#ast-mobile-header .main-header-bar-navigation .menu-link {
		display: flex !important;
		align-items: center;
		width: 100%;
		min-height: 68px;
		padding: 0 28px !important;
		font-family: 'Manrope', sans-serif !important;
		font-size: 0.9rem !important;
		font-weight: 700 !important;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: rgba(255, 248, 240, 0.75) !important;
		background: transparent !important;
		border: 0 !important;
		border-radius: 0 !important;
		text-decoration: none !important;
		box-shadow: none !important;
		transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
	}

	#ast-mobile-header .main-header-bar-navigation .menu-link:hover,
	#ast-mobile-header .main-header-bar-navigation .menu-link:focus {
		color: #fff !important;
		background: rgba(255, 255, 255, 0.04) !important;
		padding-left: 34px !important;
	}

	/* Active / current page — red left accent */
	#ast-mobile-header .main-header-bar-navigation .menu-item.current-menu-item > .menu-link,
	#ast-mobile-header .main-header-bar-navigation .menu-item.current_page_item > .menu-link,
	#ast-mobile-header .main-header-bar-navigation .menu-item > .menu-link[aria-current="page"] {
		color: #ff5555 !important;
		background: rgba(221, 51, 51, 0.08) !important;
		border-left: 3px solid #dd3333 !important;
		padding-left: 25px !important;
	}

	/* Book Appointment — full CTA button */
	#ast-mobile-header .main-header-bar-navigation .menu-item:has(.menu-link[href*="book"]) {
		padding: 20px 20px 8px !important;
		border-bottom: 0 !important;
		background: transparent !important;
	}

	#ast-mobile-header .main-header-bar-navigation .menu-link[href*="book"] {
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		width: 100% !important;
		min-height: 56px !important;
		padding: 0 24px !important;
		background: #dd3333 !important;
		color: #fff !important;
		font-weight: 800 !important;
		font-size: 0.95rem !important;
		letter-spacing: 0.14em;
		border-radius: 10px !important;
		box-shadow: 0 6px 24px rgba(221, 51, 51, 0.35) !important;
		transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.1s ease;
	}

	#ast-mobile-header .main-header-bar-navigation .menu-link[href*="book"]:hover,
	#ast-mobile-header .main-header-bar-navigation .menu-link[href*="book"]:focus {
		background: #ff4444 !important;
		box-shadow: 0 8px 30px rgba(221, 51, 51, 0.5) !important;
		padding-left: 24px !important;
		color: #fff !important;
		transform: translateY(-1px);
	}

	/* Submenu toggle arrow */
	#ast-mobile-header .main-header-bar-navigation .menu-item-has-children > .ast-menu-toggle {
		position: absolute !important;
		top: 0;
		right: 0;
		bottom: 0;
		width: 60px;
		height: auto !important;
		min-height: 0 !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		border: 0 !important;
		background: transparent !important;
		color: rgba(255, 248, 240, 0.5) !important;
		box-shadow: none !important;
		transform: none !important;
		z-index: 2;
		padding: 0 !important;
	}

	#ast-mobile-header .main-header-bar-navigation .menu-item-has-children > .menu-link {
		padding-right: 62px !important;
	}

	/* Sub-menu rows */
	#ast-mobile-header .main-header-bar-navigation .sub-menu {
		background: rgba(0, 0, 0, 0.2) !important;
		border: 0 !important;
		box-shadow: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	#ast-mobile-header .main-header-bar-navigation .sub-menu .menu-link {
		padding-left: 40px !important;
		font-size: 0.88rem !important;
		color: rgba(255, 248, 240, 0.7) !important;
		border-radius: 0 !important;
	}

	#ast-mobile-header .main-header-bar-navigation .ast-arrow-svg {
		width: 16px;
		height: 16px;
		fill: currentColor !important;
	}

	body.ast-main-header-nav-open {
		overflow: hidden;
	}

	body.ast-main-header-nav-open .sticky-book-btn,
	body.ast-main-header-nav-open #backToTop {
		opacity: 0;
		pointer-events: none;
	}

	/* ── HAMBURGER TOGGLE BUTTON ── */
	/* Remove the ugly border box */
	.ast-header-break-point .menu-toggle,
	button.menu-toggle,
	.ast-mobile-menu-buttons .menu-toggle {
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		outline: none !important;
		padding: 10px !important;
		width: auto !important;
		height: auto !important;
		border-radius: 0 !important;
	}

	/* Hide the X icon when menu is closed — only show bars */
	.menu-toggle .ast-icon-close,
	.menu-toggle .close-icon,
	.ast-mobile-menu-buttons .ast-icon:last-child {
		display: none !important;
	}

	/* When menu is open, hide bars, show X */
	.ast-mobile-menu-open .menu-toggle .ast-icon-close,
	.ast-mobile-menu-open .menu-toggle .close-icon {
		display: inline-flex !important;
	}
	.ast-mobile-menu-open .menu-toggle .ast-icon-open,
	.ast-mobile-menu-open .menu-toggle .open-icon {
		display: none !important;
	}

	/* Make both icons white */
	.menu-toggle svg,
	.menu-toggle svg path,
	.menu-toggle svg rect,
	.menu-toggle svg line,
	.menu-toggle .ast-icon svg,
	.menu-toggle .ast-icon svg * {
		fill: #ffffff !important;
		stroke: #ffffff !important;
		color: #ffffff !important;
	}

	/* ── MOBILE MENU PANEL ── */
	.ast-header-break-point .main-header-bar-navigation,
	.ast-header-break-point .ast-above-header-navigation,
	#ast-mobile-popup,
	.ast-mobile-popup-drawer,
	.ast-mobile-popup-inner {
		background-color: #00091d !important;
		border-top: 2px solid #dd3333 !important;
		/* Remove full-screen height — let content define the height */
		min-height: unset !important;
		height: auto !important;
		max-height: 100vh !important;
		overflow-y: auto !important;
	}

	/* ── FIX ALL NAV LINKS — consistent white, red on hover ── */
	.ast-header-break-point .main-navigation ul li a,
	.ast-header-break-point .main-header-bar-navigation ul li a,
	#ast-mobile-popup ul li a,
	.ast-mobile-popup-inner ul li a {
		font-family: 'Manrope', sans-serif !important;
		font-weight: 600 !important;
		font-size: 0.9rem !important;
		letter-spacing: 0.14em !important;
		text-transform: uppercase !important;
		color: #e8e4df !important;
		background: transparent !important;
		padding: 18px 24px !important;
		border-bottom: 1px solid rgba(255,255,255,0.07) !important;
		display: block !important;
		transition: color 0.2s ease, background 0.2s ease !important;
	}

	.ast-header-break-point .main-navigation ul li a:hover,
	#ast-mobile-popup ul li a:hover {
		color: #dd3333 !important;
		background: rgba(221,51,51,0.06) !important;
	}

	/* Current/active page */
	.ast-header-break-point .main-navigation ul .current-menu-item > a,
	#ast-mobile-popup ul .current-menu-item > a {
		color: #dd3333 !important;
		border-left: 3px solid #dd3333 !important;
		padding-left: 21px !important;
	}

	/* ── SUBMENU DROPDOWN ARROW ── */
	.ast-header-break-point .ast-menu-toggle,
	.main-header-bar-navigation .dropdown-toggle {
		color: #ffffff !important;
		border: 1px solid rgba(255,255,255,0.15) !important;
		background: transparent !important;
		padding: 4px 8px !important;
	}

	.dannys-hero-section {
		padding-top: 8px;
	}

	.dannys-hero-copy {
		padding-top: 0;
	}

	.dannys-hero-copy .dannys-eyebrow {
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: var(--dannys-space-3);
	}
}

.dannys-hero-section,
.dannys-pricing-section,
.dannys-testimonials-section,
.dannys-instagram-section,
.dannys-barbers-section,
.dannys-location-section,
.dannys-final-cta-section {
	width: min(100%, 1240px);
	margin: 0 auto var(--dannys-space-6);
	padding-left: var(--dannys-space-3);
	padding-right: var(--dannys-space-3);
	box-sizing: border-box;
}

.dannys-hero-section {
	position: relative;
	overflow: hidden;
	padding-top: 124px;
	padding-bottom: 20px;
	min-height: clamp(420px, 60vh, 920px);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: var(--dannys-radius);
	background-image: url('https://dannysbarbershoptn.com/wp-content/uploads/2026/03/C99A1658-5F91-45F6-852B-682A069427CE-2.jpeg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: var(--dannys-shadow);
}

.dannys-hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(221, 51, 51, 0.14), transparent 32%),
		rgba(0, 4, 18, 0.6);
	z-index: 0;
}

.dannys-hero-section > * {
	position: relative;
	z-index: 1;
}

.dannys-hero-shell {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: var(--dannys-space-4);
	width: 100%;
	min-height: 100%;
}

.dannys-hero-verse {
	position: absolute;
	top: clamp(0px, 1.5vw, 16px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: min(calc(100% - 32px), 640px);
	padding: 14px 20px 12px;
	border: 1px solid rgba(212, 168, 83, 0.3);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(3, 10, 28, 0.78), rgba(3, 10, 28, 0.64));
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	text-align: center;
}

.dannys-hero-verse-label {
	display: block;
	margin-bottom: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(212, 168, 83, 0.95);
}

.dannys-hero-verse-quote {
	margin: 0 0 6px;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(0.92rem, 1.8vw, 1.08rem);
	font-weight: 600;
	line-height: 1.45;
	font-style: italic;
	color: rgba(245, 239, 231, 0.96);
}

.dannys-hero-verse-cite {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-style: normal;
	color: rgba(212, 168, 83, 0.92);
}

.dannys-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: min(100%, 760px);
	margin: 0 auto;
	padding-top: clamp(44px, 7vw, 80px);
	padding-left: 0;
	text-align: center;
}

.dannys-hero-headline {
	margin: 0 auto var(--dannys-space-3);
	max-width: 400px;
	font-size: clamp(2.5rem, 12vw, 5rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--dannys-paper);
	text-align: center;
	word-break: normal;
	overflow-wrap: normal;
	white-space: normal;
}

.dannys-hero-headline span {
	display: block;
	white-space: nowrap;
}

.dannys-hero-tagline {
	max-width: 32rem;
	margin: 0 0 var(--dannys-space-3);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.dannys-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--dannys-space-2);
	margin-bottom: var(--dannys-space-3);
}

.dannys-hero-points {
	display: grid;
	gap: var(--dannys-space-2);
	width: min(100%, 38rem);
	margin: 0 auto;
	padding: 0;
	list-style: none;
	justify-items: start;
}

.dannys-hero-points li {
	padding-left: 1.1rem;
	position: relative;
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(245, 239, 231, 0.8);
}

.dannys-hero-points li::before {
	content: "";
	position: absolute;
	top: 0.6rem;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--dannys-accent-strong);
}

.dannys-hero-preview-card,
.dannys-pricing-card,
.dannys-final-cta-card {
	border: 1px solid var(--dannys-line);
	border-radius: var(--dannys-radius);
	background: rgba(255, 255, 255, 0.05);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: var(--dannys-shadow);
}

.dannys-hero-preview-card {
	padding: var(--dannys-space-4);
}

.dannys-preview-label {
	display: inline-block;
	margin-bottom: var(--dannys-space-3);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(245, 239, 231, 0.72);
}

.dannys-preview-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--dannys-space-2);
}

.dannys-preview-person {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: var(--dannys-space-3);
	align-items: center;
	padding: 14px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.04);
}

.dannys-preview-person-badge,
.dannys-barber-badge {
	display: grid;
	place-items: center;
	width: 56px;
	aspect-ratio: 4 / 5;
	border-radius: 16px;
	background: linear-gradient(135deg, #0a1530, #1a2e50);
	border: 1px solid rgba(100, 150, 220, 0.14);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.35rem;
	letter-spacing: 0.08em;
	color: var(--dannys-accent-strong);
}

.dannys-preview-person strong {
	display: block;
	font-size: 1.1rem;
	line-height: 1.05;
	color: var(--dannys-paper);
}

.dannys-preview-person span {
	display: block;
	margin-top: 4px;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.35;
	color: rgba(245, 239, 231, 0.72);
}

.dannys-section-heading {
	max-width: 34rem;
	margin: 0 0 var(--dannys-space-4);
}

.dannys-section-heading h2,
.dannys-final-cta-card h2 {
	margin: 0 0 var(--dannys-space-2);
	font-size: clamp(2rem, 9vw, 3.2rem);
	line-height: 0.95;
	color: var(--dannys-paper);
}

.dannys-section-heading p,
.dannys-final-cta-card p,
.dannys-barber-body p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.dannys-pricing-card {
	padding: var(--dannys-space-4);
	background: linear-gradient(180deg, rgba(5, 14, 36, 0.96), rgba(2, 8, 22, 0.96));
}

.dannys-pricing-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--dannys-space-3);
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 245, 231, 0.08);
	flex-wrap: wrap;
}

.dannys-pricing-row strong,
.dannys-pricing-row span {
	font-size: 1.02rem;
}

.dannys-pricing-row strong {
	color: var(--dannys-paper);
}

.dannys-pricing-row span {
	color: var(--dannys-accent-strong);
	font-weight: 700;
	text-align: right;
}

.dannys-pricing-actions {
	padding-top: var(--dannys-space-4);
}

.testimonials {
	padding: 0 var(--dannys-space-3);
	text-align: left;
}

.testimonials .container {
	border: 1px solid var(--dannys-line);
	border-radius: var(--dannys-radius);
	padding: var(--dannys-space-4);
	background:
		linear-gradient(180deg, rgba(5, 14, 36, 0.97), rgba(2, 8, 24, 0.97)),
		radial-gradient(circle at top right, rgba(221, 51, 51, 0.08), transparent 36%);
	box-shadow: var(--dannys-shadow);
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 32px auto 0;
}

.testimonial-card {
	position: relative;
	padding: 30px 22px 22px;
	border-radius: 24px;
	border: 1px solid rgba(255, 245, 231, 0.08);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
	content: "\201C";
	position: absolute;
	top: 14px;
	left: 18px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3.2rem;
	line-height: 1;
	color: rgba(221, 51, 51, 0.6);
}

.testimonial-card p {
	margin: 0 0 18px;
	padding-top: 18px;
	font-style: italic;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--dannys-paper);
}

.client-name {
	font-weight: 800;
	color: var(--dannys-accent-strong);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.82rem;
}

.dannys-instagram-card {
	border: 1px solid var(--dannys-line);
	border-radius: var(--dannys-radius);
	padding: var(--dannys-space-4);
	background:
		linear-gradient(180deg, rgba(5, 12, 30, 0.96), rgba(2, 7, 20, 0.96)),
		radial-gradient(circle at top left, rgba(221, 51, 51, 0.08), transparent 32%);
	box-shadow: var(--dannys-shadow);
}

.dannys-instagram-embed {
	margin-top: 24px;
}

/* Wrapper clips the border-radius and anchors the overlay */
.ig-scroll-wrapper {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
}

/* Scrollable container — fixed height on desktop, scroll to see more */
.instagram-embed-scroll {
	width: 100%;
	height: 1080px;
	overflow-x: hidden;
	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: rgba(221, 51, 51, 0.45) rgba(0, 9, 29, 0.5);
}

.instagram-embed-scroll::-webkit-scrollbar {
	width: 6px;
}

.instagram-embed-scroll::-webkit-scrollbar-track {
	background: rgba(0, 9, 29, 0.5);
}

.instagram-embed-scroll::-webkit-scrollbar-thumb {
	background: rgba(221, 51, 51, 0.5);
	border-radius: 999px;
}

/* Overlay intercepts wheel/touch so they scroll the container.
   Iframes normally swallow all pointer events.
   right: 10px leaves the scrollbar exposed for native drag. */
.ig-scroll-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 10px;
	bottom: 0;
	z-index: 10;
	cursor: ns-resize;
}

/* SnapWidget iframe — full width, tall enough to scroll through */
.snapwidget-widget {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 800px;
	border: none !important;
}

@media (max-width: 767px) {
	.instagram-embed-scroll {
		height: 70vh;
		max-height: 600px;
	}

	.ig-scroll-overlay {
		right: 0; /* no visible scrollbar on mobile */
	}

	.snapwidget-widget {
		min-height: 800px !important;
	}
}

.dannys-instagram-actions {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.dannys-instagram-placeholder {
	display: grid;
	gap: 18px;
	place-items: start;
	padding: 28px 24px;
	border-radius: 24px;
	border: 1px dashed rgba(255, 245, 231, 0.16);
	background: rgba(255, 255, 255, 0.03);
}

.dannys-instagram-placeholder p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.location {
	padding: 0 var(--dannys-space-3);
}

.location .container {
	border: 1px solid var(--dannys-line);
	border-radius: var(--dannys-radius);
	padding: var(--dannys-space-4);
	background:
		linear-gradient(180deg, rgba(5, 12, 30, 0.96), rgba(2, 7, 20, 0.96)),
		radial-gradient(circle at top left, rgba(221, 51, 51, 0.07), transparent 34%);
	box-shadow: var(--dannys-shadow);
}

.location-info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 30px;
}

.address p {
	margin: 10px 0;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--dannys-paper-soft);
}

.address strong {
	color: var(--dannys-paper);
}

.map iframe {
	display: block;
	width: 100%;
	border: 0;
	border-radius: 24px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.dannys-barbers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--dannys-space-3);
}

.dannys-barber-card {
	overflow: hidden;
	border: 1px solid rgba(100, 150, 220, 0.1);
	border-radius: var(--dannys-radius);
	background: linear-gradient(180deg, #040d1f 0%, #020a1a 100%);
	box-shadow: var(--dannys-shadow);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dannys-barber-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5);
	border-color: rgba(221, 51, 51, 0.3);
}

.dannys-barber-visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 14px;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(221, 51, 51, 0.14), transparent 36%),
		linear-gradient(135deg, #061020 0%, #0d1f3e 50%, #061020 100%);
	border-bottom: 1px solid rgba(100, 150, 220, 0.08);
}

/* Photo fills the visual area, portrait-optimised */
.dannys-barber-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.45s ease;
}

.dannys-barber-card.has-photo:hover .dannys-barber-photo,
.dannys-barbers-page-card.has-photo:hover .dannys-barber-photo {
	transform: scale(1.04);
}

/* Gradient overlay at bottom so name/role text stays legible on photo cards */
.dannys-barber-card.has-photo .dannys-barber-visual::after,
.dannys-barbers-page-card.has-photo .dannys-barbers-page-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 40%,
		rgba(0, 9, 29, 0.72) 100%
	);
	z-index: 1;
	pointer-events: none;
}

/* Badge stays above overlay on initials-only cards */
.dannys-barber-badge {
	position: relative;
	z-index: 2;
}

.dannys-barber-body {
	padding: 18px;
}

.dannys-barber-body h3 {
	margin: 0 0 4px;
	font-size: clamp(1.8rem, 7vw, 2.2rem);
	line-height: 0.95;
	color: var(--dannys-paper);
}

.dannys-barber-role {
	display: inline-block;
	margin-bottom: var(--dannys-space-2);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dannys-accent-strong);
}

.dannys-barber-body p {
	display: -webkit-box;
	margin-bottom: var(--dannys-space-3);
	max-width: 30ch;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dannys-barber-badge {
	width: 64px;
	font-size: 1.5rem;
}

.dannys-barbers-page-shell {
	width: min(100%, 1240px);
	margin: 0 auto;
	padding: 112px var(--dannys-space-3) var(--dannys-space-6);
	box-sizing: border-box;
}

.dannys-barbers-page-hero {
	margin: 0 0 var(--dannys-space-5);
	padding: var(--dannys-space-5);
	border-radius: var(--dannys-radius);
	background:
		linear-gradient(180deg, rgba(2, 8, 24, 0.92), rgba(2, 8, 24, 0.97)),
		linear-gradient(135deg, #050e24 0%, #0d1f3e 100%);
	box-shadow: var(--dannys-shadow);
}

.dannys-barbers-page-hero h1 {
	margin: 0 0 var(--dannys-space-2);
	font-size: clamp(2.4rem, 10vw, 4.5rem);
	line-height: 0.94;
	color: var(--dannys-paper);
}

.dannys-barbers-page-hero p {
	max-width: 34rem;
	margin: 0 0 var(--dannys-space-4);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.dannys-barbers-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dannys-space-2);
}

.dannys-barbers-page-roster,
.dannys-barbers-page-cta {
	margin-top: var(--dannys-space-5);
}

.dannys-barbers-page-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--dannys-space-4);
}

.dannys-barbers-page-card {
	overflow: hidden;
	border: 1px solid rgba(100, 150, 220, 0.1);
	border-radius: var(--dannys-radius);
	background: linear-gradient(180deg, #040d1f 0%, #020a1a 100%);
	box-shadow: var(--dannys-shadow);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dannys-barbers-page-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5);
	border-color: rgba(221, 51, 51, 0.3);
}

.dannys-barbers-page-visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(221, 51, 51, 0.14), transparent 36%),
		linear-gradient(135deg, #061020 0%, #0d1f3e 50%, #061020 100%);
	border-bottom: 1px solid rgba(100, 150, 220, 0.08);
}

.dannys-barbers-page-body {
	padding: 20px;
}

.dannys-barbers-page-body h3 {
	margin: 0 0 4px;
	font-size: clamp(1.9rem, 7vw, 2.4rem);
	line-height: 0.95;
	color: var(--dannys-paper);
}

.dannys-barbers-page-body p {
	margin: 0 0 var(--dannys-space-3);
	max-width: 32ch;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.dannys-barbers-page-body .dannys-button {
	width: 100%;
}

.dannys-pricing-row-featured {
	padding-top: 22px;
	padding-bottom: 22px;
}

.dannys-pricing-row-featured strong,
.dannys-pricing-row-featured span {
	color: var(--dannys-paper);
}

.dannys-pricing-description {
	flex-basis: 100%;
	margin: 10px 0 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--dannys-paper-soft);
}

.dannys-final-cta-card {
	padding: var(--dannys-space-5);
	background: linear-gradient(135deg, #00091d 0%, #05152e 50%, #0d1f3e 100%);
	border: 1px solid rgba(221, 51, 51, 0.18);
	text-align: left;
}

.dannys-final-cta-card p {
	max-width: 34rem;
	margin-bottom: var(--dannys-space-4);
}

.site-footer .widget-title,
.site-footer .widget .wp-block-heading {
	margin-bottom: var(--dannys-space-3);
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2rem;
	letter-spacing: 0.06em;
	color: var(--dannys-paper);
}

.site-footer .textwidget p,
.site-footer .widget p {
	margin-bottom: var(--dannys-space-2);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.site-footer .textwidget strong {
	color: var(--dannys-paper);
}

.site-footer .textwidget a {
	color: var(--dannys-accent-strong);
}

@media (min-width: 768px) {
	.site-logo-img img.custom-logo,
	header .custom-logo-link img {
		max-width: 132px;
	}

	#masthead .site-branding.ast-site-identity {
		width: 132px;
		max-width: 132px !important;
	}

	.dannys-hero-section,
	.dannys-pricing-section,
	.dannys-testimonials-section,
	.dannys-instagram-section,
	.dannys-barbers-section,
	.dannys-location-section,
	.dannys-final-cta-section {
		padding-left: var(--dannys-space-4);
		padding-right: var(--dannys-space-4);
	}

	.dannys-hero-section {
		padding-top: 24px;
		padding-bottom: var(--dannys-space-3);
		min-height: unset;
	}

	.dannys-hero-shell {
		display: flex;
		flex-direction: column;
		gap: var(--dannys-space-5);
		align-items: center;
		justify-content: center;
	}

	.dannys-hero-verse {
		top: 12px;
		width: min(calc(100% - 24px), 520px);
		padding: 12px 14px 10px;
		border-radius: 16px;
	}

	.dannys-hero-verse-label {
		font-size: 0.6rem;
		letter-spacing: 0.18em;
	}

	.dannys-hero-verse-quote {
		font-size: 0.88rem;
		line-height: 1.35;
	}

	.dannys-hero-verse-cite {
		font-size: 0.66rem;
	}

	.dannys-hero-copy {
		padding-top: 120px;
	}

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

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

	.location-info {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

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

	.dannys-barbers-page-shell {
		padding-left: var(--dannys-space-4);
		padding-right: var(--dannys-space-4);
	}

	.dannys-barbers-page-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.dannys-hero-section,
	.dannys-pricing-section,
	.dannys-testimonials-section,
	.dannys-instagram-section,
	.dannys-barbers-section,
	.dannys-location-section,
	.dannys-final-cta-section {
		padding-left: var(--dannys-space-5);
		padding-right: var(--dannys-space-5);
	}

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

	.dannys-barbers-page-shell {
		padding-left: var(--dannys-space-5);
		padding-right: var(--dannys-space-5);
	}

	.dannys-barbers-page-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ==========================================================================
   DESIGN UPGRADE — Dark Navy / Red Aesthetic
   ========================================================================== */

/* --------------------------------------------------------------------------
   Grain texture overlay
   -------------------------------------------------------------------------- */

body::after {
	content: "";
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
	opacity: 0.028;
	pointer-events: none;
	z-index: 9999;
	mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   Sticky header with blur
   -------------------------------------------------------------------------- */

#masthead,
.site-header,
.ast-header-break-point #ast-mobile-header {
	position: sticky !important;
	top: 0 !important;
	z-index: 10000 !important;
	background: rgba(0, 9, 29, 0.82) !important;
	-webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
	backdrop-filter: blur(20px) saturate(1.4) !important;
	border-bottom: 1px solid rgba(100, 150, 220, 0.1) !important;
	transition: background 0.25s ease, border-color 0.25s ease !important;
}

/* Scrolled state — slightly more opaque */
body.scrolled #masthead,
body.scrolled .site-header {
	background: rgba(0, 9, 29, 0.95) !important;
	border-bottom-color: rgba(221, 51, 51, 0.14) !important;
}

/* Sticky header scroll JS hook */
#masthead .main-header-bar,
#ast-mobile-header .main-header-bar {
	background: transparent !important;
}

/* --------------------------------------------------------------------------
   Section dividers
   -------------------------------------------------------------------------- */

.dannys-hero-section,
.dannys-pricing-section,
.dannys-testimonials-section,
.dannys-instagram-section,
.dannys-barbers-section,
.dannys-location-section {
	position: relative;
}

.dannys-barbers-section::after,
.dannys-pricing-section::after,
.dannys-testimonials-section::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: var(--dannys-accent);
	border-radius: 2px;
	margin: var(--dannys-space-6) auto 0;
	opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Testimonial card hover
   -------------------------------------------------------------------------- */

.testimonial-card {
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
	transform: translateY(-3px);
	border-color: rgba(221, 51, 51, 0.2);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   Pricing row hover
   -------------------------------------------------------------------------- */

.dannys-pricing-row {
	transition: background 0.18s ease;
	border-radius: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: -10px;
	margin-right: -10px;
}

.dannys-pricing-row:hover {
	background: rgba(221, 51, 51, 0.05);
}

/* --------------------------------------------------------------------------
   Desktop nav links — red hover accent
   -------------------------------------------------------------------------- */

#masthead .main-header-bar .main-navigation .menu-item > .menu-link,
.ast-header-break-point #masthead .main-header-bar .menu-link {
	transition: color 0.18s ease !important;
}

#masthead .main-navigation .menu-item > .menu-link:hover,
#masthead .main-navigation .menu-item.current-menu-item > .menu-link,
#masthead .main-navigation .menu-item.current_page_item > .menu-link {
	color: var(--dannys-accent) !important;
}

/* --------------------------------------------------------------------------
   Scroll to trigger header style change
   -------------------------------------------------------------------------- */

/* JS adds .scrolled to body — pure CSS fallback uses :has if supported */
@supports selector(:has(+ *)) {
	body:has(#masthead:not([data-stuck])) #masthead {
		background: rgba(0, 9, 29, 0.7) !important;
	}
}

/* --------------------------------------------------------------------------
   Override Elementor + Astra font/color globals
   -------------------------------------------------------------------------- */

/* Force Bebas Neue on all headings — beats Elementor global typography */
h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title,
[class*="elementor"] h1,
[class*="elementor"] h2,
[class*="elementor"] h3 {
	font-family: 'Bebas Neue', sans-serif !important;
	font-weight: 400 !important;
}

/* Force Manrope on body text — beats Elementor + Astra Customizer */
body,
p,
.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-text-editor,
button, input, select, textarea,
.ast-button {
	font-family: 'Manrope', sans-serif !important;
}

/* Force navy background — beats any Elementor page/section background */
body,
.elementor-section,
.e-con,
.e-container,
.elementor-top-section:not([style*="background"]) {
	background-color: #00091d !important;
}

/* Global Elementor color overrides */
.elementor-kit-316 {
	--e-global-color-primary: #dd3333 !important;
	--e-global-typography-primary-font-family: "Bebas Neue" !important;
	--e-global-typography-secondary-font-family: "Manrope" !important;
	--e-global-typography-text-font-family: "Manrope" !important;
	--e-global-typography-accent-font-family: "Manrope" !important;
}

/* --------------------------------------------------------------------------
   Link colors in content
   -------------------------------------------------------------------------- */

.site-footer .textwidget a:hover {
	color: var(--dannys-accent-strong);
	text-decoration: underline;
}

/* ==========================================================================
   SHORTCODE COMPONENTS — Slideshow, Work Gallery, Trust Strip
   ========================================================================== */

/* --------------------------------------------------------------------------
   Scroll-reveal base
   -------------------------------------------------------------------------- */

.ds-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.62s ease, transform 0.62s ease;
}

.ds-reveal.is-revealed {
	opacity: 1;
	transform: translateY(0);
}

/* --------------------------------------------------------------------------
   [dannys_standard] — For Men Who Hold a Standard
   -------------------------------------------------------------------------- */

.ds-standard {
	position: relative;
	overflow: hidden;
	min-height: clamp(620px, 90vh, 1020px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00091d;
	text-align: center;
}

/* Background image — centered at 125% */
.ds-standard::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 125%;
	height: 100%;
	background-image: url('https://dannysbarbershoptn.com/wp-content/uploads/2026/03/Dannys-Barbershop-All-Rights-Reserved.jpg');
	background-size: cover;
	background-position: center center;
	z-index: 0;
}

/* Cinematic vignette — dark top + bottom, image breathes in the middle */
.ds-standard::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom,
			#00091d 0%,
			rgba(0, 9, 29, 0.72) 18%,
			rgba(0, 9, 29, 0.38) 40%,
			rgba(0, 9, 29, 0.38) 60%,
			rgba(0, 9, 29, 0.82) 82%,
			#00091d 100%
		);
	z-index: 1;
}

/* Content */
.ds-standard-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
	padding: clamp(72px, 10vh, 140px) clamp(24px, 5vw, 48px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

/* Eyebrow */
.ds-standard-eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ds-standard-eyebrow-line {
	flex: 0 0 auto;
	width: 40px;
	height: 1px;
	background: rgba(212, 168, 83, 0.6);
	border-radius: 999px;
}

.ds-standard-eyebrow-text {
	font-family: 'Manrope', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #d4a853;
	white-space: nowrap;
}

/* Heading */
.ds-standard-heading {
	margin: 0;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: clamp(3.6rem, 9vw, 7.2rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.ds-standard-heading span {
	display: block;
	color: #d4a853;
}

/* Scripture blockquote */
.ds-standard-scripture {
	margin: 0;
	padding: 28px 32px 24px;
	border-left: 3px solid #d4a853;
	background: rgba(0, 9, 29, 0.52);
	border-radius: 0 14px 14px 0;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	text-align: left;
}

.ds-standard-scripture p {
	margin: 0 0 10px;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1.08rem, 2.4vw, 1.32rem);
	font-weight: 600;
	font-style: italic;
	line-height: 1.55;
	color: rgba(238, 242, 252, 0.95);
}

.ds-standard-scripture cite {
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #d4a853;
	font-style: normal;
}

/* Divider */
.ds-standard-divider {
	width: 60px;
	height: 1px;
	background: rgba(212, 168, 83, 0.4);
	border-radius: 999px;
}

/* Body */
.ds-standard-body {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(0.98rem, 1.8vw, 1.1rem);
	font-weight: 500;
	line-height: 1.75;
	color: rgba(238, 242, 252, 0.8);
	max-width: 54ch;
	text-align: center;
}

/* CTA */
.ds-standard-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 38px;
	border-radius: 999px;
	border: 1.5px solid #d4a853;
	background: rgba(212, 168, 83, 0.08);
	color: #d4a853;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	transition: background 0.25s ease, color 0.25s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.ds-standard-btn:hover,
.ds-standard-btn:focus {
	background: #d4a853;
	color: #00091d;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(212, 168, 83, 0.32);
}

/* Mobile */
@media (max-width: 767px) {
	.ds-standard-eyebrow-text {
		font-size: 0.65rem;
		letter-spacing: 0.18em;
	}

	.ds-standard-scripture {
		padding: 22px 20px 18px;
	}

	.ds-standard-btn {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   [dannys_slideshow] — Full-width hero banner
   -------------------------------------------------------------------------- */

.ds-slideshow {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #00091d;
	/* min-height scales with viewport: tall on desktop, sensible on mobile */
	min-height: clamp(420px, 72vh, 820px);
}

.ds-slides-track {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.ds-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.9s ease;
	background-size: cover;
	background-position: center center;
}

.ds-slide.is-active {
	opacity: 1;
	z-index: 1;
}

/* Placeholder when no images provided */
.ds-slideshow-placeholder {
	position: relative;
	min-height: clamp(420px, 72vh, 820px);
	background: var(--dannys-panel);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.ds-slideshow-placeholder .ds-slide-content {
	position: static;
	transform: none;
	z-index: auto;
	max-width: 640px;
}

/* Gradient overlay on each slide */
.ds-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 9, 29, 0.28) 0%,
		rgba(0, 9, 29, 0.54) 40%,
		rgba(0, 9, 29, 0.82) 100%
	);
	z-index: 2;
}

/* Content layer on top of overlay */
.ds-slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: clamp(28px, 5vw, 72px) clamp(20px, 5vw, 80px) clamp(60px, 8vh, 100px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	max-width: 720px;
}

.ds-slide-eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--dannys-accent);
}

.ds-slide-heading {
	margin: 0;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: clamp(3rem, 9vw, 6rem);
	font-weight: 400;
	line-height: 0.92;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.ds-slide-subtext {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1rem, 2.2vw, 1.18rem);
	font-weight: 500;
	line-height: 1.6;
	color: rgba(238, 242, 252, 0.84);
	max-width: 44ch;
}

.ds-slide-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.ds-slide-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 28px;
	border-radius: 999px;
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ds-slide-btn:hover,
.ds-slide-btn:focus {
	transform: translateY(-2px);
}

.ds-slide-btn-primary {
	background: linear-gradient(135deg, #dd3333 0%, #ff4444 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(221, 51, 51, 0.38);
}

.ds-slide-btn-primary:hover {
	box-shadow: 0 12px 32px rgba(221, 51, 51, 0.52);
	color: #ffffff;
}

.ds-slide-btn-secondary {
	border: 1.5px solid rgba(238, 242, 252, 0.3);
	background: rgba(238, 242, 252, 0.06);
	color: #eef2fc;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.ds-slide-btn-secondary:hover {
	border-color: rgba(238, 242, 252, 0.55);
	background: rgba(238, 242, 252, 0.12);
	color: #eef2fc;
}

/* Navigation dots */
.ds-slide-dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	gap: 8px;
	align-items: center;
}

.ds-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(238, 242, 252, 0.35);
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: background 0.25s ease, width 0.25s ease;
}

.ds-dot.is-active {
	background: var(--dannys-accent);
	width: 22px;
}

/* Arrow buttons */
.ds-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1.5px solid rgba(238, 242, 252, 0.2);
	background: rgba(0, 9, 29, 0.55);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: #eef2fc;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.ds-arrow:hover {
	background: rgba(221, 51, 51, 0.75);
	border-color: transparent;
}

.ds-arrow-l { left: 16px; }
.ds-arrow-r { right: 16px; }

@media (max-width: 767px) {
	.ds-slideshow,
	.ds-slides-track {
		min-height: clamp(420px, 72vh, 560px) !important;
	}

	.ds-slide-content {
		max-width: none;
		padding: 24px 18px 68px;
		gap: 10px;
	}

	.ds-slide-eyebrow {
		font-size: 0.68rem;
		letter-spacing: 0.16em;
	}

	.ds-slide-heading {
		font-size: clamp(2.35rem, 11vw, 3.85rem);
		line-height: 0.96;
	}

	.ds-slide-subtext {
		font-size: 0.95rem;
		line-height: 1.45;
		max-width: 30ch;
	}

	.ds-slide-actions {
		flex-direction: column;
		width: 100%;
		gap: 10px;
		margin-top: 4px;
	}

	.ds-slide-btn {
		width: 100%;
		min-height: 48px;
		padding: 12px 20px;
	}

	.ds-arrow {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.ds-arrow-l { left: 10px; }
	.ds-arrow-r { right: 10px; }
}


/* --------------------------------------------------------------------------
   [dannys_trust_strip] — Social proof bar
   -------------------------------------------------------------------------- */

.ds-trust-strip {
	width: 100%;
	padding: clamp(18px, 3vw, 28px) clamp(20px, 5vw, 60px);
	background: var(--dannys-panel);
	border-top: 1px solid var(--dannys-line);
	border-bottom: 1px solid var(--dannys-line);
}

.ds-trust-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 1100px;
	margin: 0 auto;
}

.ds-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 20px;
	text-align: center;
	flex: 1 1 140px;
}

.ds-trust-stars {
	display: flex;
	gap: 3px;
	align-items: center;
	margin-bottom: 2px;
}

.ds-trust-star {
	color: #f5c518;
	font-size: 1rem;
	line-height: 1;
}

.ds-trust-rating {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.55rem;
	line-height: 1;
	color: #eef2fc;
	letter-spacing: 0.04em;
}

.ds-trust-reviews {
	font-family: 'Manrope', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dannys-muted);
}

.ds-trust-check {
	display: flex;
	align-items: center;
	gap: 7px;
}

.ds-trust-check-icon {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(221, 51, 51, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.68rem;
	color: var(--dannys-accent);
	flex: 0 0 auto;
}

.ds-trust-badge {
	font-family: 'Manrope', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dannys-paper-soft);
}

/* Separator between items */
.ds-trust-sep {
	width: 1px;
	height: 32px;
	background: var(--dannys-line);
	flex: 0 0 auto;
	align-self: center;
}

@media (max-width: 639px) {
	.ds-trust-sep {
		display: none;
	}

	.ds-trust-inner {
		gap: 4px;
	}

	.ds-trust-item {
		flex: 1 1 44%;
		padding: 10px 12px;
	}
}

/* ==========================================================================
   BOOKING GUIDE — [dannys_booking_guide]
   ========================================================================== */

.dbg-wrap {
	width: 100%;
	color: var(--dannys-paper);
	position: relative;
	background-image: url('https://dannysbarbershoptn.com/wp-content/uploads/2026/03/Untitled-Mobile-Video-5-scaled.jpeg');
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

/* Persistent dark overlay so content stays readable across the full wrap */
.dbg-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 5, 0.52);
	pointer-events: none;
	z-index: 0;
}

/* All sections sit above the overlay */
.dbg-wrap > * {
	position: relative;
	z-index: 1;
}

/* Shared eyebrow */
.dbg-eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--dannys-accent);
	margin-bottom: 12px;
}

/* Frosted glass card — wraps all hero text for crisp readability */
.dbg-hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 660px;
	padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 64px);
	border-radius: 24px;
	background: rgba(0, 0, 10, 0.52);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	backdrop-filter: blur(18px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---- Hero ---- */
.dbg-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 88vh;
	padding: clamp(100px, 14vh, 180px) clamp(24px, 5vw, 80px) clamp(100px, 14vh, 180px);
	isolation: isolate;
	border-bottom: 1px solid rgba(221, 51, 51, 0.18);
}

/* Subtle edge vignette — card handles the text contrast */
.dbg-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(180deg,
			rgba(0, 0, 0, 0.28) 0%,
			transparent 25%,
			transparent 75%,
			rgba(0, 0, 0, 0.38) 100%
		),
		radial-gradient(ellipse at 70% 5%, rgba(221, 51, 51, 0.14) 0%, transparent 50%);
}

/* Bottom fade into the dark section below */
.dbg-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 140px;
	z-index: -1;
	background: linear-gradient(to bottom, transparent, var(--dannys-bg));
}

.dbg-hero-heading {
	margin: 0 0 18px;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: clamp(4.5rem, 11vw, 9rem);
	font-weight: 400;
	line-height: 0.88;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
}

.dbg-hero-heading span {
	color: var(--dannys-accent);
}

.dbg-hero-sub {
	margin: 0 0 32px;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1rem, 2vw, 1.18rem);
	font-weight: 500;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.85);
	max-width: 48ch;
}

.dbg-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 16px 40px;
	border-radius: 999px;
	background: linear-gradient(135deg, #dd3333 0%, #ff4444 100%);
	color: #ffffff;
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 10px 32px rgba(221, 51, 51, 0.42);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dbg-hero-btn:hover {
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(221, 51, 51, 0.56);
}

.dbg-hero-note {
	margin: 14px 0 0;
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
}

/* ---- Step guide ---- */
.dbg-guide {
	padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 80px);
	max-width: 900px;
	margin: 0 auto;
	border-radius: 24px;
	background: rgba(0, 0, 10, 0.52);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	backdrop-filter: blur(18px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dbg-guide-heading {
	text-align: center;
	margin-bottom: 48px;
}

.dbg-guide-heading h2 {
	margin: 4px 0 10px;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 400;
	color: #ffffff;
}

.dbg-guide-heading p {
	margin: 0;
	font-size: 1rem;
	color: #dde2f0;
	max-width: 44ch;
	margin-inline: auto;
}

.dbg-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.dbg-step {
	display: grid;
	grid-template-columns: 56px 48px 1fr;
	gap: 0 16px;
	align-items: flex-start;
	padding: 28px 24px;
	border-radius: 16px;
	transition: background 0.2s ease;
	position: relative;
}

/* Connector line between steps */
.dbg-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 27px;
	top: calc(28px + 28px);
	width: 2px;
	height: calc(100% - 28px);
	background: linear-gradient(to bottom, rgba(221, 51, 51, 0.4), rgba(221, 51, 51, 0.05));
}

.dbg-step:hover {
	background: rgba(221, 51, 51, 0.08);
}

.dbg-step-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	color: var(--dannys-accent);
	padding-top: 4px;
	line-height: 1;
}

.dbg-step-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(221, 51, 51, 0.1);
	border: 1px solid rgba(221, 51, 51, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.dbg-step-body h3 {
	margin: 8px 0 6px;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #ffffff;
}

.dbg-step-body p {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #dde2f0;
}

.dbg-steps-tip {
	margin: 28px auto 0;
	max-width: 580px;
	padding: 14px 20px;
	border-left: 3px solid var(--dannys-accent);
	background: rgba(221, 51, 51, 0.12);
	border-radius: 0 8px 8px 0;
	font-family: 'Manrope', sans-serif;
	font-size: 0.88rem;
	line-height: 1.65;
	color: #dde2f0;
}

.dbg-steps-tip strong {
	color: var(--dannys-accent);
}

.dbg-guide-cta {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.dbg-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 15px 36px;
	border-radius: 999px;
	background: linear-gradient(135deg, #dd3333 0%, #ff4444 100%);
	color: #ffffff;
	font-family: 'Manrope', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(221, 51, 51, 0.38);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dbg-btn-primary:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(221, 51, 51, 0.54);
}

/* ---- Policy notice ---- */
.dbg-policy {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	padding: clamp(32px, 5vw, 48px) clamp(24px, 5vw, 80px);
	background: rgba(120, 10, 10, 0.45);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-top: 1px solid rgba(221, 51, 51, 0.3);
	border-bottom: 1px solid rgba(221, 51, 51, 0.3);
}

.dbg-policy-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 28px;
	flex: 1 1 220px;
}

.dbg-policy-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.dbg-policy-item strong {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ff9090;
	margin-bottom: 6px;
}

.dbg-policy-item p {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: 0.9rem;
	line-height: 1.65;
	color: #dde2f0;
}

.dbg-policy-sep {
	width: 1px;
	align-self: stretch;
	background: rgba(221, 51, 51, 0.2);
	margin: 16px 0;
	flex-shrink: 0;
}

/* ---- Embedded scheduler ---- */
.dbg-embed {
	padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 80px);
	background: rgba(0, 5, 20, 0.35);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--dannys-line);
	border-bottom: 1px solid var(--dannys-line);
}

.dbg-embed-heading {
	text-align: center;
	margin-bottom: 32px;
}

.dbg-embed-heading h2 {
	margin: 4px 0 10px;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	font-weight: 400;
	color: #ffffff;
}

.dbg-embed-heading p {
	margin: 0;
	font-size: 0.95rem;
	color: var(--dannys-paper-soft);
}

.dbg-embed-frame {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--dannys-line);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	background: #ffffff;
}

.dbg-embed-frame iframe {
	display: block;
	width: 100%;
	height: 100vh;
	min-height: 900px;
	border: 0;
}

/* ---- Info strip ---- */
.dbg-info {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	padding: clamp(36px, 5vw, 56px) clamp(24px, 5vw, 80px);
	border-bottom: 1px solid var(--dannys-line);
}

.dbg-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 28px;
	flex: 1 1 200px;
}

.dbg-info-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.dbg-info-item strong {
	display: block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--dannys-accent);
	margin-bottom: 6px;
}

.dbg-info-item p {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--dannys-paper-soft);
}

.dbg-info-item a {
	color: var(--dannys-paper-soft);
	text-decoration: none;
}

.dbg-info-item a:hover {
	color: var(--dannys-accent);
}

.dbg-info-sep {
	width: 1px;
	align-self: stretch;
	background: var(--dannys-line);
	flex-shrink: 0;
}

/* ---- FAQ ---- */
.dbg-faq {
	padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 80px);
	max-width: 780px;
	margin: 0 auto;
}

.dbg-faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dbg-faq-item {
	padding: 24px 28px;
	border-radius: 14px;
	background: rgba(0, 5, 20, 0.35);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid var(--dannys-line);
	transition: border-color 0.2s ease;
}

.dbg-faq-item:hover {
	border-color: rgba(221, 51, 51, 0.2);
}

.dbg-faq-item h3 {
	margin: 0 0 8px;
	font-family: 'Manrope', sans-serif !important;
	font-size: 1rem;
	font-weight: 700;
	color: #ffffff;
}

.dbg-faq-item p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.68;
	color: var(--dannys-paper-soft);
}

.dbg-scheduler-standalone {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--dannys-line);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	max-width: 100%;
}

.dbg-scheduler-standalone iframe {
	display: block;
	width: 100%;
	border: 0;
}

@media (max-width: 767px) {
	.dbg-scheduler-standalone iframe {
		height: 100vh !important;
		min-height: 700px !important;
	}
}

/* Mobile */
@media (max-width: 767px) {
	/* background-attachment: fixed breaks on iOS — scroll instead */
	.dbg-wrap {
		background-attachment: scroll;
	}

	.dbg-hero {
		min-height: unset;
		padding: 48px 16px 40px;
	}

	.dbg-hero-content {
		padding: 32px 24px;
		border-radius: 18px;
		max-width: 100%;
	}

	.dbg-step {
		grid-template-columns: 40px 40px 1fr;
		gap: 0 12px;
		padding: 20px 16px;
	}

	.dbg-step:not(:last-child)::after {
		left: 19px;
	}

	.dbg-step-icon {
		width: 40px;
		height: 40px;
	}

	.dbg-info-sep {
		display: none;
	}

	.dbg-info-item {
		flex: 1 1 44%;
		padding: 14px 16px;
	}

	.dbg-embed-frame iframe {
		height: 100vh;
		min-height: 700px;
	}

	.dbg-faq-item {
		padding: 20px 18px;
	}
}


/* ==========================================================================
   ABOUT SECTION — [dannys_about] shortcode
   ========================================================================== */

.ds-about {
	position: relative;
	overflow: hidden;
	min-height: clamp(320px, 60vh, 920px);
	display: flex;
	align-items: center;
	background: #00091d;
}

/* Background image — centered at 125% */
.ds-about::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 125%;
	height: 100%;
	background-image: url('https://dannysbarbershoptn.com/wp-content/uploads/2026/03/Dannys-Barbershop-All-Rights-Reserved-22-scaled.jpeg');
	background-size: cover;
	background-position: center center;
	z-index: 0;
}

/* Navy-to-transparent fade from left — text area stays completely clean */
.ds-about::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		#00091d 0%,
		#00091d 30%,
		rgba(0, 9, 29, 0.88) 50%,
		rgba(0, 9, 29, 0.38) 72%,
		rgba(0, 9, 29, 0.08) 100%
	);
	z-index: 1;
}

/* Content above both pseudo-elements */
.ds-about-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(64px, 9vh, 128px) clamp(24px, 5vw, 80px);
}

.ds-about-content {
	max-width: 50%;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

/* Eyebrow */
.ds-about-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.ds-about-eyebrow-line {
	display: block;
	width: 48px;
	height: 2px;
	background: #dd3333;
	border-radius: 999px;
	flex: 0 0 auto;
}

.ds-about-eyebrow-text {
	font-family: 'Manrope', sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #dd3333;
}

/* Heading */
.ds-about-heading {
	margin: 0;
	font-family: 'Bebas Neue', sans-serif !important;
	font-size: clamp(3.8rem, 8vw, 7rem);
	font-weight: 400;
	line-height: 0.88;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #ffffff;
}

.ds-about-heading span {
	color: #dd3333;
}

/* Body copy panel */
.ds-about-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px 26px 20px;
	background: rgba(0, 9, 29, 0.62);
	border: 1px solid rgba(221, 51, 51, 0.16);
	border-radius: 18px;
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35),
	            inset 0 1px 0 rgba(238, 242, 252, 0.05);
}

.ds-about-body p {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	font-size: clamp(0.95rem, 1.6vw, 1.06rem);
	font-weight: 500;
	line-height: 1.68;
	color: rgba(238, 242, 252, 0.88);
}

/* CTA buttons */
.ds-about-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.ds-about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 32px;
	border-radius: 999px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ds-about-btn:hover {
	transform: translateY(-2px);
}

.ds-about-btn-primary {
	background: linear-gradient(135deg, #dd3333 0%, #ff4444 100%);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(221, 51, 51, 0.38);
}

.ds-about-btn-primary:hover {
	box-shadow: 0 14px 32px rgba(221, 51, 51, 0.54);
	color: #ffffff;
}

.ds-about-btn-secondary {
	border: 1.5px solid rgba(238, 242, 252, 0.24);
	background: rgba(238, 242, 252, 0.06);
	color: #eef2fc;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.ds-about-btn-secondary:hover {
	border-color: rgba(238, 242, 252, 0.5);
	background: rgba(238, 242, 252, 0.12);
	color: #eef2fc;
}

/* Mobile */
@media (max-width: 767px) {
	.ds-about {
		align-items: flex-end;
	}

	/* On mobile, gradient runs top-to-bottom: photo peeks at top, text area dark */
	.ds-about::before {
		background: linear-gradient(
			to bottom,
			rgba(0, 9, 29, 0.32) 0%,
			rgba(0, 9, 29, 0.78) 38%,
			#00091d 62%,
			#00091d 100%
		);
	}

	.ds-about-inner {
		padding-top: clamp(280px, 55vw, 380px);
		padding-bottom: clamp(40px, 6vh, 64px);
	}

	.ds-about-content {
		max-width: 100%;
		gap: 20px;
	}

	.ds-about-actions {
		flex-direction: column;
	}

	.ds-about-btn {
		width: 100%;
	}
}

/* Barbers page — mobile spacing */
@media (max-width: 767px) {
	.dannys-barbers-page-shell {
		padding-top: 24px;
	}

	.dannys-barbers-page-hero {
		margin-bottom: var(--dannys-space-3);
	}

	.dannys-barbers-page-roster,
	.dannys-barbers-page-cta {
		margin-top: var(--dannys-space-3);
	}
}

/* ============================================================
   Barber gallery — card badge & lightbox
   ============================================================ */

.dannys-barbers-page-card.has-gallery,
.dannys-barber-card.has-gallery {
	cursor: pointer;
}

.dannys-barbers-page-card.has-gallery:hover .dbp-gallery-badge,
.dannys-barber-card.has-gallery:hover .dbp-gallery-badge {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.dbp-gallery-badge {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	background: rgba(0, 0, 0, 0.72);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	pointer-events: none;
	white-space: nowrap;
}

/* Lightbox overlay */
.dbp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	box-sizing: border-box;
}

.dbp-lightbox[hidden] {
	display: none;
}

.dbp-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 15, 0.88);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

/* Lightbox panel */
.dbp-lightbox-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 640px;
	background: #0a0d18;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
	max-height: 90vh;
	overflow-y: auto;
	box-sizing: border-box;
}

.dbp-lightbox-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, 0.08);
	border: none;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.dbp-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.18);
}

.dbp-lightbox-header {
	margin-bottom: 20px;
	padding-right: 40px;
}

.dbp-lightbox-name {
	margin: 0 0 4px;
	font-size: clamp(1.4rem, 5vw, 1.8rem);
	color: #fff;
	line-height: 1.1;
}

.dbp-lightbox-role {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

/* Photo grid */
.dbp-lightbox-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 24px;
}

.dbp-lightbox-photo {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
}

.dbp-lightbox-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.dbp-lightbox-photo img:hover {
	transform: scale(1.04);
}

/* CTA row */
.dbp-lightbox-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dbp-lightbox-actions .dannys-button {
	flex: 1;
	text-align: center;
	min-width: 140px;
}

/* Mobile */
@media (max-width: 480px) {
	.dbp-lightbox-inner {
		padding: 24px 16px;
		border-radius: 14px;
	}

	.dbp-lightbox-actions {
		flex-direction: column;
	}

	.dbp-lightbox-actions .dannys-button {
		width: 100%;
	}

	.dbp-gallery-badge {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}


/* ── STICKY HEADER WRAPPER ── */
#dannys-sticky-wrapper {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9995 !important;
  display: block !important;
}

/* Header inside wrapper stays normal */
#dannys-sticky-wrapper #masthead,
#dannys-sticky-wrapper .site-header,
#dannys-sticky-wrapper #ast-mobile-header {
  position: relative !important;
  top: auto !important;
}

/* Badge strip inside wrapper — no fixed/sticky needed */
#dannys-sticky-wrapper .dannys-global-strip,
.dannys-global-strip {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  z-index: auto !important;
  background: rgba(0, 9, 29, 0.97) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(201,160,85,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 12px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.dannys-global-strip::-webkit-scrollbar {
  display: none;
}

/* No extra padding needed — wrapper is in flow */
#content,
.ast-container > #primary,
.site-content,
#page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.elementor-top-section:first-child {
  margin-top: 0 !important;
}

/* Hide old strip */
.dannys-badge-strip {
  display: none !important;
}

/* Hide floating Book Now */
.ast-fixed-row {
  display: none !important;
}

/* Each badge */
.dannys-badge {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px 14px;
  text-decoration: none !important;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

/* Photo circle */
.dannys-badge-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(201, 160, 85, 0.25);
  transition: border-color 0.22s, transform 0.22s;
  flex-shrink: 0;
}
.dannys-badge-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s;
}
.dannys-badge:hover .dannys-badge-photo {
  border-color: rgba(200, 40, 28, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 40, 28, 0.25);
}
.dannys-badge:hover .dannys-badge-photo img {
  transform: scale(1.07);
}

/* New Client badge — logo styling */
.dannys-badge.new-client .dannys-badge-photo {
  border-color: rgba(201, 160, 85, 0.5);
  background: rgba(0, 9, 29, 0.8);
}
.dannys-badge.new-client .dannys-badge-photo img {
  object-fit: contain;
  object-position: center;
  padding: 4px;
}
.dannys-badge.new-client:hover .dannys-badge-photo {
  border-color: #c9a055;
}
.dannys-badge.new-client .dannys-badge-btn {
  color: rgba(201, 160, 85, 0.8);
}

/* Name + button text */
.dannys-badge-name {
  font-family: 'Manrope', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(240, 232, 216, 0.75);
  white-space: nowrap;
  text-align: center;
  transition: color 0.2s;
}
.dannys-badge:hover .dannys-badge-name {
  color: #ffffff;
}
.dannys-badge-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200, 40, 28, 0.75);
  white-space: nowrap;
  transition: color 0.2s;
}
.dannys-badge:hover .dannys-badge-btn {
  color: #dd3333;
}

/* Separator */
.dannys-badge-sep {
  width: 1px;
  height: 36px;
  background: rgba(201, 160, 85, 0.1);
  flex-shrink: 0;
}

/* Mobile — 2 rows × 3 columns grid */
@media (max-width: 768px) {
  #dannys-sticky-wrapper .dannys-global-strip,
  .dannys-global-strip {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: auto auto !important;
    padding: 8px 12px !important;
    gap: 6px 0 !important;
    overflow-x: visible !important;
    justify-items: center !important;
  }
  .dannys-badge {
    padding: 4px 6px !important;
    width: 100% !important;
    align-items: center !important;
  }
  .dannys-badge-photo {
    width: 46px !important;
    height: 46px !important;
  }
  .dannys-badge-sep {
    display: none !important;
  }
  .dannys-badge-name {
    font-size: 0.6rem !important;
  }
}

/* Hide old floating Book Now button —
   strip replaces it */
.ast-fixed-row {
  display: none !important;
}

/* ============================================
   MOBILE FIXES — dannysbarbershoptn.com
   ============================================ */

/* ── 1. HAMBURGER: hide the ugly box, show clean bars ── */
@media (max-width: 920px) {
  .menu-toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 10px !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .menu-toggle .ast-icon svg,
  .menu-toggle svg {
    width: 24px !important;
    height: 24px !important;
    fill: #ffffff !important;
  }
  .menu-toggle .ast-icon svg path,
  .menu-toggle svg path,
  .menu-toggle svg rect,
  .menu-toggle svg line {
    stroke: #ffffff !important;
    fill: #ffffff !important;
  }
  /* Hide the second icon (X shown alongside bars) */
  .menu-toggle .ast-icon:last-child {
    display: none !important;
  }
  .ast-mobile-menu-open .menu-toggle .ast-icon:first-child {
    display: none !important;
  }
  .ast-mobile-menu-open .menu-toggle .ast-icon:last-child {
    display: flex !important;
  }
}

/* ── 2. BADGE STRIP: fix mobile layout ── */
@media (max-width: 768px) {
  .dannys-badge-strip {
    padding: 14px 16px !important;
    gap: 14px !important;
    justify-content: flex-start !important;
  }
  .strip-label {
    display: none !important;
  }
  .dannys-badge-photo {
    width: 52px !important;
    height: 52px !important;
  }
  .dannys-badge-name {
    font-size: 0.58rem !important;
  }
  .dannys-badge-btn {
    font-size: 0.5rem !important;
  }
  .dannys-badge-sep {
    display: none !important;
  }
  .dannys-strip-cta {
    display: none !important;
  }
}

/* ── 3. FLOATING BOOK NOW BUTTON:
        stop it covering content ── */
.ast-fixed-row,
[class*="elementor-button-wrapper"] .ast-fixed-row {
  bottom: 16px !important;
  right: 16px !important;
  z-index: 100 !important;
}

/* ── 4. INSTAGRAM WIDGET: fix blank space on mobile ── */
@media (max-width: 768px) {
  .eapps-instagram-feed-container,
  [class*="instagram-feed"],
  [id*="instagram-feed"],
  .sbi_load,
  #sb_instagram {
    min-height: 0 !important;
    display: block !important;
  }
  /* If the feed is loading but invisible, show placeholder */
  .eapps-instagram-feed:empty::after,
  #sb_instagram:empty::after {
    content: 'See our latest work @dannysbarbershoptn';
    display: block;
    text-align: center;
    padding: 20px;
    color: rgba(240,232,216,0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

/* ── 5. GENERAL MOBILE SPACING CLEANUP ── */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body, html {
    overflow-x: hidden !important;
  }
  /* Better touch targets for all buttons */
  .elementor-button {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Barber card book buttons — full width on mobile */
  .dannys-barber-team .elementor-button-wrapper {
    width: 100% !important;
  }
}

/* ── PRICING TABLE: real services ── */
.dannys-price-table { width: 100%; }

/* ── BADGE STRIP: bigger photos on mobile ── */
@media (max-width: 768px) {
  .dannys-badge-photo {
    width: 72px !important;
    height: 72px !important;
  }
  .dannys-badge-name {
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
  }
  .dannys-badge-btn {
    font-size: 0.58rem !important;
    color: #dd3333 !important;
  }
  .dannys-badge-strip {
    padding: 20px 16px !important;
    gap: 18px !important;
  }
}

/* ── BOOK PAGES: remove wasted space ── */
.page-id-book-danny .site-main,
.page-id-book-robert .site-main,
.page-id-book-adrian .site-main,
.page-id-book-carlos .site-main,
.page-id-book-daniel .site-main,
body[class*="page-id-"] .dannys-booking-wrap {
  padding: 0 !important;
  margin: 0 !important;
}
.dannys-booking-wrap {
  padding: 0 !important;
  margin: 0 !important;
  background: #ffffff !important;
}
.dannys-booking-wrap h1 {
  padding: 14px 16px 8px !important;
  margin: 0 !important;
  font-size: 0.78rem !important;
  background: #00091d !important;
  color: #dd3333 !important;
  text-align: center !important;
}
.dannys-booking-wrap iframe {
  display: block !important;
  width: 100% !important;
  min-height: 100vh !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}
/* Remove Astra page padding on booking pages */
body[class*="page-id-"] .ast-container,
body[class*="page-id-"] #primary,
body[class*="page-id-"] .entry-content,
body[class*="page-id-"] .post-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
/* Hide page title on booking pages */
body[class*="page-id-"] .entry-header,
body[class*="page-id-"] .ast-post-format-standard-image {
  display: none !important;
}

/* ── HAMBURGER: clean fix ── */
@media (max-width: 920px) {
  .menu-toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
  }
  /* Force only ONE icon visible at a time */
  .menu-toggle .ast-icon {
    display: none !important;
  }
  .menu-toggle .ast-icon:first-child {
    display: flex !important;
  }
  .ast-mobile-menu-open .menu-toggle .ast-icon:first-child {
    display: none !important;
  }
  .ast-mobile-menu-open .menu-toggle .ast-icon:last-child {
    display: flex !important;
  }
  .menu-toggle svg,
  .menu-toggle svg path,
  .menu-toggle svg rect,
  .menu-toggle svg line,
  .menu-toggle svg polyline {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
  }
}

/* ── FIX 1: Badge photos bigger on mobile ── */
@media (max-width: 920px) {
  .dannys-badge-photo {
    width: 76px !important;
    height: 76px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(221,51,51,0.5) !important;
  }
  .dannys-badge-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .dannys-badge {
    gap: 6px !important;
  }
  .dannys-badge-name {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
  }
  .dannys-badge-btn {
    font-size: 0.6rem !important;
    letter-spacing: 0.16em !important;
  }
  .dannys-badge-strip {
    padding: 18px 12px 18px 16px !important;
    gap: 16px !important;
    justify-content: space-around !important;
  }
}

/* ── FIX 2: Booking pages — remove all wasted space ── */
body.page-template-default .dannys-booking-wrap,
body .dannys-booking-wrap {
  background: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
}
body .dannys-booking-wrap h1 {
  background: #00091d !important;
  color: #dd3333 !important;
  padding: 12px 20px !important;
  margin: 0 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
  text-align: center !important;
}
body .dannys-booking-wrap iframe {
  width: 100% !important;
  min-height: 100vh !important;
  border: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
}
/* Remove Astra padding around booking pages */
body .dannys-booking-wrap ~ *,
.entry-content:has(.dannys-booking-wrap),
.post-content:has(.dannys-booking-wrap) {
  padding: 0 !important;
  margin: 0 !important;
}
.ast-article-single:has(.dannys-booking-wrap),
#primary:has(.dannys-booking-wrap),
.site-main:has(.dannys-booking-wrap) {
  padding: 0 !important;
  margin: 0 !important;
}
