/* ============================================
   Harry Drinks Store — Premium Theme Styles
   ============================================ */

/* === CSS Variables === */
:root {
	/* Brand Colors — warm, premium alcohol store palette */
	--harry-brown-dark: #2C1810;
	--harry-brown: #4A2C1A;
	--harry-brown-medium: #6B3A2A;
	--harry-brown-light: #8B5E3C;
	--harry-orange: #D4853B;
	--harry-orange-light: #E8A65C;
	--harry-cream: #FDF5E6;
	--harry-cream-dark: #F5E6CC;
	--harry-beige: #EDE0D0;
	--harry-gold: #C9A05C;
	--harry-gold-light: #D4B87C;
	--harry-white: #FFFAF4;
	--harry-black: #1A0E08;
	--harry-gray: #8C7B6B;
	--harry-gray-light: #B8A99A;
	--harry-success: #4A7C59;
	--harry-error: #C44B4B;

	/* Typography */
	--font-primary: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;
	--space-4xl: 6rem;

	/* Borders & Radius */
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-full: 50%;

	/* Shadows — clean single-layer */
	--shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.08);
	--shadow-md: 0 4px 12px rgba(44, 24, 16, 0.1);
	--shadow-lg: 0 8px 24px rgba(44, 24, 16, 0.12);
	--shadow-xl: 0 12px 40px rgba(44, 24, 16, 0.14);
	--shadow-card-hover: 0 12px 32px rgba(44, 24, 16, 0.14);

	/* Section spacing */
	--section-padding: clamp(4rem, 8vw, 6rem);

	/* Transitions — premium easing */
	--transition-fast: 150ms ease;
	--transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
	--ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

	/* Letter Spacing */
	--ls-tight: -0.01em;
	--ls-normal: 0;
	--ls-wide: 0.03em;
	--ls-wider: 0.06em;

	/* Container */
	--container-max: 1280px;
	--container-wide: 1440px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--harry-brown-dark);
	background-color: var(--harry-white);
	direction: rtl;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--harry-brown);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--harry-orange);
}

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

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.3;
	color: var(--harry-brown-dark);
	letter-spacing: var(--ls-tight);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

::selection {
	background: var(--harry-orange);
	color: #fff;
}

/* === Utility === */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--space-lg);
}

.container-wide {
	max-width: var(--container-wide);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* === Buttons === */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.75rem 1.75rem;
	font-family: var(--font-primary);
	font-size: 0.95rem;
	font-weight: 600;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all var(--transition-base);
	text-decoration: none;
	line-height: 1;
}

.btn-primary {
	background: var(--harry-orange);
	color: #fff;
	border-color: var(--harry-orange);
}

.btn-primary:hover {
	background: var(--harry-brown-medium);
	border-color: var(--harry-brown-medium);
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: var(--harry-brown);
	border-color: var(--harry-brown-light);
}

.btn-outline:hover {
	background: var(--harry-brown);
	color: var(--harry-cream);
	border-color: var(--harry-brown);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}

.btn-lg {
	padding: 1rem 2.5rem;
	font-size: 1.05rem;
}

/* === Announcement Bar === */
.harry-announcement-bar {
	background: linear-gradient(90deg, var(--harry-brown-dark), var(--harry-brown));
	color: var(--harry-cream);
	text-align: center;
	padding: 0.6rem 0;
	font-size: 0.85rem;
	font-weight: 500;
}

.harry-announcement-bar p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	margin: 0;
}

.harry-announcement-bar svg {
	flex-shrink: 0;
}

/* === Header === */
.harry-header {
	background: rgba(255, 250, 244, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--harry-beige);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: box-shadow var(--transition-base);
}

.harry-header.scrolled {
	box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}

.harry-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-md) var(--space-lg);
	max-width: var(--container-wide);
	margin: 0 auto;
	gap: var(--space-xl);
}

.harry-logo {
	flex-shrink: 0;
}

.harry-logo a {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--harry-brown-dark);
}

.harry-logo img {
	max-height: 55px;
	width: auto;
}

.harry-logo .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.harry-logo .logo-text .store-name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--harry-brown-dark);
}

.harry-logo .logo-text .store-tagline {
	font-family: var(--font-primary);
	font-size: 0.7rem;
	font-weight: 400;
	color: var(--harry-gray);
	letter-spacing: 0.5px;
}

/* === Navigation === */
.harry-nav {
	flex: 1;
}

.harry-nav ul {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	list-style: none;
}

.harry-nav a {
	display: block;
	padding: 0.5rem 0.9rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--harry-brown);
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
	position: relative;
}

.harry-nav a:hover,
.harry-nav .current-menu-item a {
	color: var(--harry-orange);
	background: rgba(212, 133, 59, 0.08);
}

/* Navigation Dropdown */
.harry-nav li {
	position: relative;
}

.harry-nav .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 220px;
	background: var(--harry-white);
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: var(--space-sm);
	list-style: none;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--transition-base);
	z-index: 100;
}

.harry-nav li:hover > .sub-menu,
.harry-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.harry-nav .sub-menu li {
	position: static;
}

.harry-nav .sub-menu a {
	padding: 0.45rem 0.8rem;
	font-size: 0.85rem;
	border-radius: var(--radius-sm);
	white-space: nowrap;
}

.harry-nav .sub-menu .harry-submenu-all a {
	color: var(--harry-orange);
	font-weight: 600;
	border-bottom: 1px solid var(--harry-beige);
	margin-bottom: var(--space-xs);
	padding-bottom: var(--space-sm);
	border-radius: 0;
}

/* Header Actions (Search, Cart, etc.) */
.harry-header-actions {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.harry-search-toggle,
.harry-cart-toggle,
.harry-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: var(--radius-full);
	background: var(--harry-brown);
	color: #fff;
	cursor: pointer;
	transition: all var(--transition-fast);
	position: relative;
}

.harry-search-toggle:hover,
.harry-cart-toggle:hover {
	background: var(--harry-brown-dark);
	color: #fff;
	transform: scale(1.05);
}

.harry-cart-toggle .cart-badge {
	position: absolute;
	top: -2px;
	left: -2px;
	min-width: 18px;
	height: 18px;
	background: var(--harry-orange);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	animation: badgePop 0.3s ease;
}

@keyframes badgePop {
	0% { transform: scale(0); }
	50% { transform: scale(1.3); }
	100% { transform: scale(1); }
}

.harry-mobile-toggle {
	display: none;
}

/* === Search Overlay === */
.harry-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 14, 8, 0.85);
	z-index: 2000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 15vh;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-base);
	backdrop-filter: blur(8px);
}

.harry-search-overlay.active {
	opacity: 1;
	visibility: visible;
}

.harry-search-box {
	width: 90%;
	max-width: 600px;
	transform: translateY(-20px);
	transition: transform var(--transition-base);
}

.harry-search-overlay.active .harry-search-box {
	transform: translateY(0);
}

.harry-search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.harry-search-box input[type="search"] {
	width: 100%;
	padding: 1.2rem 3.5rem 1.2rem 1.5rem;
	font-family: var(--font-primary);
	font-size: 1.2rem;
	border: none;
	border-radius: var(--radius-lg);
	background: var(--harry-white);
	color: var(--harry-brown-dark);
	box-shadow: var(--shadow-xl);
	outline: none;
}

.harry-search-box input::placeholder {
	color: var(--harry-gray-light);
}

.harry-search-submit {
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: none;
	background: var(--harry-orange);
	color: #fff;
	border-radius: var(--radius-md);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition-fast);
}

.harry-search-submit:hover {
	background: var(--harry-brown);
}

.harry-search-hint {
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	margin-top: var(--space-md);
}

/* === Hero Section — Premium Full-Width === */
.harry-hero {
	position: relative;
	min-height: 75vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.harry-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--harry-brown-dark);
}

.harry-hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}

.harry-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 14, 8, 0.55);
}

.harry-hero-container {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: var(--space-4xl) var(--space-lg);
	max-width: 900px;
	margin: 0 auto;
}

/* Main Title */
.harry-hero-title {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 700;
	color: var(--harry-gold);
	text-shadow: 0 2px 20px rgba(201, 160, 92, 0.25);
	margin-bottom: var(--space-md);
	line-height: 1.1;
	letter-spacing: var(--ls-tight);
	animation: heroTitleIn 0.8s var(--ease-expo) 0.2s both;
}

@keyframes heroTitleIn {
	from { opacity: 0; transform: translateY(30px) scale(0.96); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Gold divider */
.harry-hero-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: var(--harry-gold);
	margin: var(--space-lg) auto 0;
	opacity: 0.6;
}

/* Subtitle */
.harry-hero-subtitle {
	font-size: clamp(1.05rem, 2.2vw, 1.4rem);
	font-weight: 300;
	color: var(--harry-cream-dark);
	margin-bottom: var(--space-2xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	letter-spacing: var(--ls-wide);
	animation: heroTitleIn 0.8s var(--ease-expo) 0.4s both;
}

/* CTA Buttons */
.harry-hero-ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	margin-bottom: var(--space-2xl);
	animation: heroTitleIn 0.8s var(--ease-expo) 0.6s both;
}

.btn-hero-navigate {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 36px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	border-radius: var(--radius-xl);
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s var(--ease-expo);
}

.btn-hero-navigate:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
	transform: translateY(-2px);
}

.btn-hero-order {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 36px;
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-gold));
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	border-radius: var(--radius-xl);
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.4s var(--ease-expo);
	box-shadow: 0 4px 16px rgba(212, 133, 59, 0.3);
}

.btn-hero-order:hover {
	background: linear-gradient(135deg, var(--harry-orange-light), var(--harry-orange));
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(212, 133, 59, 0.4);
}

/* Hero Delivery Text */
.harry-hero-delivery {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	font-size: 0.9rem;
	color: var(--harry-cream-dark);
	opacity: 0.85;
	animation: heroTitleIn 0.8s var(--ease-expo) 0.8s both;
}

.harry-hero-delivery svg {
	color: var(--harry-orange-light);
	flex-shrink: 0;
}

.harry-hero-seo-tagline {
	margin-top: var(--space-md);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.02em;
}


/* === Categories Section — Auto-scrolling Carousel === */
.harry-categories-section {
	padding: var(--space-4xl) 0 var(--space-3xl);
	background: var(--harry-white);
	position: relative;
	overflow: hidden;
}

/* Carousel wrapper — full width, no container constraint */
/* Categories carousel — forced LTR for reliable animation */
.harry-cat-carousel {
	overflow: hidden;
	width: 100%;
	direction: ltr;
	mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.harry-cat-track {
	display: flex;
	gap: var(--space-md);
	width: max-content;
	will-change: transform;
}

.harry-cat-carousel:hover .harry-cat-track {
	/* JS handles pause on hover */
}

/* Individual category card */
.harry-cat-slide {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 170px;
	width: 170px;
	height: 210px;
	border-radius: var(--radius-lg);
	text-decoration: none;
	cursor: pointer;
	direction: rtl;
	position: relative;
	overflow: hidden;
	transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
}

.harry-cat-slide:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Photo-based category card */
.harry-cat-slide.has-photo .harry-cat-slide-photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s var(--ease-expo);
}

.harry-cat-slide.has-photo:hover .harry-cat-slide-photo {
	transform: scale(1.08);
}

.harry-cat-slide.has-photo .harry-cat-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 14, 8, 0.85) 0%, rgba(26, 14, 8, 0.3) 50%, rgba(26, 14, 8, 0.1) 100%);
}

.harry-cat-slide.has-photo .harry-cat-slide-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-md);
	z-index: 1;
}

.harry-cat-slide.has-photo .harry-cat-slide-name {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
}

.harry-cat-slide.has-photo .harry-cat-slide-count {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
}

/* Icon-based category card (no photo) */
.harry-cat-slide.no-photo {
	background: var(--harry-white);
	border: 1px solid var(--harry-beige);
	justify-content: center;
	gap: var(--space-sm);
	padding: var(--space-md);
}

.harry-cat-slide.no-photo:hover {
	border-color: var(--harry-orange);
}

.harry-cat-slide-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 133, 59, 0.08);
	color: var(--harry-orange);
	border-radius: var(--radius-full);
}

.harry-cat-slide-name {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--harry-brown-dark);
	white-space: nowrap;
}

.harry-cat-slide-count {
	font-size: 0.78rem;
	color: var(--harry-gray);
}

.harry-section-header {
	text-align: center;
	margin-bottom: var(--space-2xl);
}

.harry-section-header h2 {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	position: relative;
	display: inline-block;
	letter-spacing: var(--ls-tight);
}

.harry-section-header h2::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: var(--harry-gold);
	margin: var(--space-md) auto 0;
}

/* Right-aligned headers for categories and events (RTL variety) */
.harry-categories-section .harry-section-header,
.harry-events-section .harry-section-header {
	text-align: right;
}

.harry-categories-section .harry-section-header h2::after,
.harry-events-section .harry-section-header h2::after {
	margin: var(--space-md) 0 0 auto;
}

/* Location header — no underline */
.harry-location-section .harry-section-header h2::after {
	display: none;
}

.harry-section-header p {
	color: var(--harry-gray);
	margin-top: var(--space-md);
	font-size: 1rem;
	letter-spacing: var(--ls-wide);
	font-weight: 300;
}

/* Dark section header variant */
.harry-events-section .harry-section-header h2::after {
	background: var(--harry-orange-light);
}

/* (Old category grid styles removed — now using carousel above) */

/* === Latest Products Section === */
.harry-latest-products {
	padding: var(--space-4xl) 0;
	background: linear-gradient(180deg, var(--harry-white) 0%, var(--harry-cream) 100%);
	position: relative;
}

.harry-latest-products::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(to right, transparent, var(--harry-gold), var(--harry-orange), var(--harry-gold), transparent);
}

.harry-latest-products .harry-section-header {
	margin-bottom: var(--space-2xl);
}

/* === Breadcrumbs === */
.harry-breadcrumbs {
	background: var(--harry-cream);
	padding: var(--space-md) 0;
	border-bottom: 1px solid var(--harry-beige);
	font-size: 0.85rem;
}

.harry-breadcrumbs .breadcrumb-sep {
	color: var(--harry-gray-light);
	margin: 0 var(--space-xs);
}

.harry-breadcrumbs a {
	color: var(--harry-gray);
}

.harry-breadcrumbs a:hover {
	color: var(--harry-orange);
}

.harry-breadcrumbs .breadcrumb-item:last-child {
	color: var(--harry-brown);
	font-weight: 500;
}

/* === Footer === */
.harry-footer {
	background: var(--harry-brown-dark);
	color: var(--harry-cream);
	padding-top: var(--space-2xl);
	position: relative;
}

.harry-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: var(--space-2xl);
	padding-bottom: var(--space-xl);
}

.harry-footer .footer-brand h3 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	color: var(--harry-cream);
	margin-bottom: var(--space-md);
}

.harry-footer .footer-contact {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: var(--space-md);
}

.harry-footer .footer-contact a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--harry-gray-light);
	font-size: 0.88rem;
}

.harry-footer .footer-contact a:hover {
	color: var(--harry-orange-light);
}

.harry-footer .footer-contact svg {
	flex-shrink: 0;
	color: var(--harry-orange);
}

.harry-footer .footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
}

.harry-footer h4 {
	color: var(--harry-cream);
	font-size: 0.88rem;
	margin-bottom: var(--space-sm);
}

.harry-footer ul {
	list-style: none;
}

.harry-footer ul li {
	margin-bottom: 4px;
}

.harry-footer ul a {
	color: var(--harry-gray-light);
	font-size: 0.84rem;
	transition: color var(--transition-fast);
}

.harry-footer ul a:hover {
	color: var(--harry-orange-light);
}

.harry-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: var(--space-md) 0;
	text-align: center;
	font-size: 0.78rem;
	color: var(--harry-gray);
}

.footer-legal-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	margin: var(--space-xs) 0;
}

.footer-legal-links a {
	color: var(--harry-gray-light);
	font-size: 0.78rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-legal-links a:hover {
	color: var(--harry-orange-light);
}

.harry-footer-bottom .footer-disclaimer {
	margin-top: 4px;
	font-size: 0.68rem;
	opacity: 0.7;
}

/* === Age Gate === */
/* === Age Gate — Full Screen Premium === */
.harry-age-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1a0e08;
}

.age-gate-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	object-fit: cover;
}

.harry-age-gate .age-gate-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(26, 14, 8, 0.7) 0%, rgba(26, 14, 8, 0.92) 100%);
}

.age-gate-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 440px;
	width: 90%;
	animation: ageGateFadeIn 0.8s var(--ease-expo);
}

@keyframes ageGateFadeIn {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.age-gate-logo {
	margin-bottom: var(--space-lg);
}

.age-gate-logo img {
	max-height: 120px;
	width: auto;
	border-radius: 50%;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.age-gate-divider {
	width: 50px;
	height: 2px;
	background: var(--harry-gold);
	margin: 0 auto var(--space-lg);
	opacity: 0.6;
}

.age-gate-content h2 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: #fff;
	margin-bottom: var(--space-sm);
	letter-spacing: var(--ls-tight);
}

.age-gate-content p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.92rem;
	line-height: 1.6;
	margin-bottom: var(--space-xs);
}

.age-gate-question {
	font-size: 1.1rem !important;
	font-weight: 600;
	color: #fff !important;
	margin-top: var(--space-md) !important;
	margin-bottom: var(--space-lg) !important;
}

.age-gate-buttons {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	margin-bottom: var(--space-lg);
}

.age-gate-buttons button {
	width: 100%;
	padding: 14px 24px;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

#age-verify-yes {
	background: var(--harry-orange);
	color: #fff;
	box-shadow: 0 4px 16px rgba(212, 133, 59, 0.35);
}

#age-verify-yes:hover {
	background: var(--harry-orange-dark, #c06a20);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(212, 133, 59, 0.45);
}

#age-verify-no {
	background: transparent;
	color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

#age-verify-no:hover {
	border-color: rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.7);
}

.age-gate-notice {
	display: block;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.3);
	line-height: 1.5;
}

/* === Floating Bar — Centered Split Pill === */
.harry-floating-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9000;
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
	pointer-events: none;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.5s var(--ease-expo), opacity 0.5s ease;
}

.harry-floating-bar.visible {
	transform: translateY(0);
	opacity: 1;
}

.harry-floating-pill {
	display: flex;
	align-items: stretch;
	pointer-events: all;
	border-radius: 50px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(44, 24, 16, 0.25), 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Divider between pill halves */
.harry-pill-navigate {
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.harry-pill-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--font-primary);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all var(--transition-base);
	white-space: nowrap;
	line-height: 1;
	position: relative;
}

.harry-pill-btn svg {
	flex-shrink: 0;
}

/* Navigate button — brown/dark */
.harry-pill-navigate {
	background: var(--harry-brown-dark);
	color: var(--harry-cream);
	border-radius: 0 50px 50px 0; /* RTL: right side rounded */
}

.harry-pill-navigate:hover {
	background: var(--harry-brown);
	color: #fff;
}

/* Order button — gold/orange */
.harry-pill-order {
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-gold));
	color: #fff;
	border-radius: 50px 0 0 50px; /* RTL: left side rounded */
}

.harry-pill-order:hover {
	background: linear-gradient(135deg, var(--harry-orange-light), var(--harry-orange));
	color: #fff;
}

.harry-pill-badge {
	background: var(--harry-brown-dark);
	color: #fff;
	min-width: 20px;
	height: 20px;
	border-radius: var(--radius-full);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0 5px;
	margin-right: -4px;
}

/* Pulse animation on cart when items added */
#harryFloatCart.pulse {
	animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
	0% { transform: scale(1); }
	30% { transform: scale(1.15); }
	60% { transform: scale(0.95); }
	100% { transform: scale(1); }
}

/* === Mobile Menu === */
.harry-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 380px;
	height: 100vh;
	height: 100dvh;
	background: var(--harry-white);
	z-index: 10000;
	transition: right var(--transition-slow);
	overflow-y: auto;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
}

.harry-mobile-menu.active {
	right: 0;
}

.harry-mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(26, 14, 8, 0.6);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-base);
}

.harry-mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.harry-mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-lg);
	border-bottom: 1px solid var(--harry-beige);
}

.harry-mobile-close {
	width: 36px;
	height: 36px;
	border: none;
	background: var(--harry-cream);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--harry-brown);
	transition: all var(--transition-fast);
}

.harry-mobile-close:hover {
	background: var(--harry-orange);
	color: #fff;
}

.harry-mobile-menu nav ul {
	list-style: none;
	padding: var(--space-md);
}

.harry-mobile-menu nav a {
	display: block;
	padding: 0.8rem var(--space-md);
	font-size: 1rem;
	font-weight: 500;
	color: var(--harry-brown);
	border-radius: var(--radius-sm);
	transition: all var(--transition-fast);
}

.harry-mobile-menu nav a:hover {
	background: var(--harry-cream);
	color: var(--harry-orange);
}

/* Mobile menu — sub-menu (categories under Shop) */
.harry-mobile-menu nav .sub-menu {
	list-style: none;
	padding: 0 var(--space-md) var(--space-sm);
	display: none;
}

.harry-mobile-menu nav .harry-has-dropdown.open > .sub-menu {
	display: block;
}

.harry-mobile-menu nav .sub-menu a {
	font-size: 0.88rem;
	padding: 0.5rem var(--space-lg);
	color: var(--harry-gray);
}

.harry-mobile-menu nav .sub-menu a:hover {
	color: var(--harry-orange);
}

.harry-mobile-menu nav .harry-submenu-all a {
	color: var(--harry-orange);
	font-weight: 600;
}

/* Dropdown toggle arrow for mobile */
.harry-mobile-menu nav .harry-has-dropdown > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.harry-mobile-menu nav .harry-has-dropdown > a::after {
	content: '';
	width: 6px;
	height: 6px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
	transition: transform var(--transition-fast);
	flex-shrink: 0;
}

.harry-mobile-menu nav .harry-has-dropdown.open > a::after {
	transform: rotate(135deg);
}

/* Mobile menu — footer section */
.harry-mobile-menu-footer {
	margin-top: auto;
	padding: var(--space-lg) var(--space-xl);
	border-top: 1px solid var(--harry-beige);
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.harry-mobile-navigate {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: 0.85rem;
	color: var(--harry-gray);
	text-decoration: none;
}

.harry-mobile-navigate svg {
	color: var(--harry-orange);
	flex-shrink: 0;
}

.harry-mobile-social {
	display: flex;
	gap: var(--space-md);
}

.harry-mobile-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-full);
	color: var(--harry-gray);
	transition: all var(--transition-base);
}

.harry-mobile-social a:hover {
	border-color: var(--harry-orange);
	color: var(--harry-orange);
}

/* === Page Content === */
.harry-page-header {
	background: linear-gradient(135deg, var(--harry-brown-dark), var(--harry-brown));
	padding: var(--space-3xl) 0 var(--space-2xl);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.harry-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 50% 100%, rgba(212, 133, 59, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

.harry-page-header .container {
	position: relative;
	z-index: 1;
}

.harry-page-header h1 {
	color: var(--harry-cream);
	font-family: var(--font-display);
}

.harry-page-header p {
	color: var(--harry-gold-light);
	margin-top: var(--space-sm);
}

.harry-content {
	padding: var(--space-2xl) 0 var(--space-4xl);
}

/* === FAQ Section — Homepage === */
.harry-faq-section {
	padding: var(--space-4xl) 0;
	background: var(--harry-cream);
}

.harry-faq-section .faq-items {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}

.faq-item {
	background: var(--harry-white);
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.faq-item[open] {
	border-color: var(--harry-orange);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	padding: var(--space-md) var(--space-lg);
	cursor: pointer;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--harry-brown-dark);
	list-style: none;
	user-select: none;
	transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question:hover {
	background: var(--harry-cream);
}

.faq-chevron {
	flex-shrink: 0;
	color: var(--harry-gray-light);
	transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
	transform: rotate(180deg);
	color: var(--harry-orange);
}

.faq-answer {
	padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
	color: var(--harry-gray);
	line-height: 1.8;
	font-size: 0.92rem;
	margin: 0;
}

/* === Legal Pages (Terms, Privacy) === */
.harry-legal-page {
	padding: var(--space-2xl) 0 var(--space-4xl);
}

.legal-content {
	max-width: 780px;
	margin: 0 auto;
}

.legal-updated {
	font-size: 0.85rem;
	color: var(--harry-gray-light);
	margin-bottom: var(--space-xl);
	padding-bottom: var(--space-sm);
	border-bottom: 1px solid var(--harry-beige);
}

.legal-content h2 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--harry-brown-dark);
	margin-top: var(--space-xl);
	margin-bottom: var(--space-sm);
}

.legal-content p {
	color: var(--harry-gray);
	line-height: 1.8;
	font-size: 0.92rem;
	margin-bottom: var(--space-sm);
}

.legal-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-md);
}

.legal-content ul li {
	position: relative;
	padding-right: 20px;
	padding-bottom: var(--space-xs);
	color: var(--harry-gray);
	line-height: 1.8;
	font-size: 0.92rem;
}

.legal-content ul li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--harry-orange);
}

/* === Features Bar === */
.harry-features {
	background: var(--harry-cream);
	padding: var(--space-lg) 0;
	border-top: 1px solid var(--harry-beige);
	border-bottom: 1px solid var(--harry-beige);
}

.harry-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--space-md);
}

.harry-feature {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm) var(--space-md);
}

.harry-feature > svg {
	color: var(--harry-orange);
	flex-shrink: 0;
}

.harry-feature h4 {
	font-size: 0.85rem;
	margin-bottom: 1px;
}

.harry-feature p {
	font-size: 0.78rem;
	color: var(--harry-gray);
	margin: 0;
}

/* === Search Form === */
.search-form {
	display: flex;
	gap: var(--space-sm);
	max-width: 500px;
	margin: 0 auto;
}

.search-form label {
	flex: 1;
}

.search-form .search-field {
	width: 100%;
	padding: 0.65rem 1rem;
	border: 2px solid var(--harry-beige);
	border-radius: var(--radius-sm);
	font-family: var(--font-primary);
	font-size: 0.9rem;
	transition: border-color var(--transition-fast);
}

.search-form .search-field:focus {
	border-color: var(--harry-orange);
	outline: none;
}

/* === Promotions Section — Showcase Layout === */
.harry-promotions-section {
	padding: var(--space-4xl) 0;
	background: linear-gradient(170deg, var(--harry-cream) 0%, var(--harry-cream-dark) 100%);
	position: relative;
	overflow: hidden;
}

/* Showcase grid — featured + 3 smaller */
.harry-promo-showcase {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: var(--space-lg);
}

/* All promo items share base styles */
.harry-promo-item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	text-decoration: none;
	display: flex;
	transition: all 0.5s var(--ease-expo);
	cursor: pointer;
	min-height: 200px;
}

.harry-promo-item:hover {
	transform: scale(1.02);
	box-shadow: var(--shadow-lg);
}

/* Background layer with real product photo */
.harry-promo-item-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s var(--ease-expo);
}

.harry-promo-item-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 14, 8, 0.92) 0%, rgba(26, 14, 8, 0.6) 50%, rgba(26, 14, 8, 0.35) 100%);
}

.harry-promo-item:hover .harry-promo-item-bg {
	transform: scale(1.06);
}

/* Content */
.harry-promo-item-content {
	position: relative;
	z-index: 1;
	padding: var(--space-xl);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
}

.harry-promo-item-badge {
	display: inline-flex;
	align-self: flex-start;
	padding: 5px 14px;
	background: var(--harry-orange);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	border-radius: 50px;
	margin-bottom: var(--space-md);
}

.harry-promo-item h3 {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--harry-cream);
	margin-bottom: var(--space-sm);
}

.harry-promo-item p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
	margin-bottom: var(--space-md);
}

.harry-promo-item-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--harry-orange-light);
	transition: all 0.3s ease;
}

.harry-promo-item:hover .harry-promo-item-link {
	color: #fff;
	gap: 10px;
}

/* Featured promo — spans full left column */
.harry-promo-featured {
	grid-row: 1 / 3;
	min-height: 420px;
}

.harry-promo-featured h3 {
	font-size: 1.6rem;
}

.harry-promo-featured p {
	font-size: 0.95rem;
	max-width: 380px;
}

/* === Events Section === */
.harry-events-section {
	padding: var(--space-4xl) 0;
	background: linear-gradient(135deg, var(--harry-brown-dark) 0%, var(--harry-brown) 60%, var(--harry-brown-medium) 100%);
	color: var(--harry-cream);
	position: relative;
	overflow: hidden;
}

.harry-events-section .harry-section-header h2 {
	color: var(--harry-cream);
}

.harry-events-section .harry-section-header p {
	color: var(--harry-gold-light);
}

.harry-events-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
	margin-bottom: var(--space-2xl);
}

.harry-event-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 260px;
	border-radius: var(--radius-lg);
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
	cursor: pointer;
}

.harry-event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.event-card-photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s var(--ease-expo);
}

.harry-event-card:hover .event-card-photo {
	transform: scale(1.06);
}

.event-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 14, 8, 0.88) 0%, rgba(26, 14, 8, 0.3) 55%, rgba(26, 14, 8, 0.1) 100%);
}

.event-card-content {
	position: relative;
	z-index: 1;
	padding: var(--space-lg);
}

.harry-event-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: var(--space-xs);
}

.event-card-desc {
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.6;
}

/* Events intro paragraph */
.harry-events-intro {
	max-width: 800px;
	margin: 0 auto var(--space-2xl);
	text-align: center;
}

.harry-events-intro p {
	font-size: 1.05rem;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: var(--ls-wide);
}

/* Services list */
.harry-events-services {
	margin-bottom: var(--space-2xl);
	text-align: center;
}

.harry-events-services > h3 {
	font-size: 1.15rem;
	color: var(--harry-cream);
	margin-bottom: var(--space-lg);
}

.harry-events-services-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-md) var(--space-xl);
}

.harry-events-service-item {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	font-size: 0.92rem;
	color: var(--harry-cream-dark);
}

.harry-events-service-item svg {
	color: var(--harry-orange-light);
	flex-shrink: 0;
}

/* Events CTA */
.harry-events-cta {
	text-align: center;
}

.harry-events-cta p {
	color: var(--harry-gold-light);
	font-size: 1.05rem;
	margin-bottom: var(--space-lg);
}

.harry-events-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
}

/* === Reviews Section === */
.harry-reviews-section {
	padding: var(--space-4xl) 0;
	background: linear-gradient(180deg, var(--harry-white) 0%, #FBF3E4 100%);
}

.harry-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-lg);
	margin-bottom: var(--space-xl);
}

.harry-review-card {
	background: var(--harry-white);
	border: none;
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	padding-top: var(--space-2xl);
	transition: all 0.4s var(--ease-expo);
	box-shadow: var(--shadow-sm);
	position: relative;
}

/* Decorative quote mark */
.harry-review-card::before {
	content: '\201D';
	position: absolute;
	top: -4px;
	right: 20px;
	font-family: var(--font-display);
	font-size: 4rem;
	line-height: 1;
	color: var(--harry-orange);
	opacity: 0.12;
	pointer-events: none;
}

.harry-review-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card-hover);
}

.review-stars {
	display: flex;
	gap: 2px;
	margin-bottom: var(--space-md);
	color: var(--harry-orange);
	filter: drop-shadow(0 0 4px rgba(212, 133, 59, 0.3));
}

.review-text {
	font-size: 0.95rem;
	color: var(--harry-brown);
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	font-style: italic;
}

.review-author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.review-avatar {
	width: 36px;
	height: 36px;
	border-radius: var(--radius-full);
	background: linear-gradient(135deg, var(--harry-orange), var(--harry-gold));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
}

.review-author span {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--harry-brown);
}

/* === Store Location Section === */
.harry-location-section {
	padding: var(--space-4xl) 0;
	background: var(--harry-cream);
	position: relative;
	overflow: hidden;
}

.harry-location-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: var(--harry-white);
	border: none;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	min-height: 420px;
}

/* Embedded Google Maps container */
.location-map-embed {
	min-height: 420px;
	position: relative;
	background: var(--harry-cream-dark);
}

.location-map-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.location-details {
	padding: var(--space-2xl) var(--space-3xl);
	display: flex;
	flex-direction: column;
	gap: var(--space-lg);
	justify-content: center;
}

.location-detail-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-md);
}

.location-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 133, 59, 0.1);
	border-radius: var(--radius-md);
	color: var(--harry-orange);
	flex-shrink: 0;
}

.location-detail-item strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--harry-brown-dark);
	margin-bottom: 4px;
}

.location-detail-item p {
	font-size: 0.95rem;
	color: var(--harry-brown);
	margin: 0;
	line-height: 1.6;
}

.location-detail-item a {
	color: var(--harry-brown);
}

.location-detail-item a:hover {
	color: var(--harry-orange);
}

.location-note {
	font-size: 0.8rem;
	color: var(--harry-gray);
	display: block;
	margin-top: 2px;
}

.location-buttons {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
	margin-top: var(--space-md);
}

.location-nav-btn {
	width: fit-content;
}

/* === Events Page === */
.harry-events-page {
	padding: var(--space-2xl) 0 var(--space-4xl);
}

.events-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--space-2xl);
}

.events-intro p {
	color: var(--harry-gray);
	font-size: 1.05rem;
	line-height: 1.8;
}

/* Events page hero with background photo */
.events-page-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 280px;
	display: flex;
	align-items: center;
}

.events-page-hero .container {
	position: relative;
	z-index: 1;
}

.events-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 14, 8, 0.85), rgba(26, 14, 8, 0.5));
}

/* Event type cards — photo-based */
.events-types-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
	margin-bottom: var(--space-3xl);
}

.event-type-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
}

.event-type-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.event-type-photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s var(--ease-expo);
}

.event-type-card:hover .event-type-photo {
	transform: scale(1.05);
}

.event-type-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 14, 8, 0.85) 0%, rgba(26, 14, 8, 0.3) 55%, rgba(26, 14, 8, 0.1) 100%);
	pointer-events: none;
}

.event-type-content {
	position: relative;
	z-index: 1;
	padding: var(--space-lg);
}

.event-type-content h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 4px;
}

.event-type-content p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.88rem;
	line-height: 1.6;
}

/* Supply section */
.events-supply-section {
	margin-bottom: var(--space-3xl);
}

.events-supply-section h2 {
	font-family: var(--font-display);
	text-align: center;
	margin-bottom: var(--space-xl);
}

.events-supply-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
	max-width: 800px;
	margin: 0 auto;
}

.events-supply-col h4 {
	font-size: 0.95rem;
	color: var(--harry-brown);
	margin-bottom: var(--space-sm);
	padding-bottom: var(--space-xs);
	border-bottom: 2px solid var(--harry-orange);
	display: inline-block;
}

.events-supply-col ul {
	list-style: none;
}

.events-supply-col li {
	position: relative;
	padding-right: 18px;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 0.92rem;
	color: var(--harry-gray);
	line-height: 1.5;
}

.events-supply-col li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 14px;
	width: 6px;
	height: 6px;
	background: var(--harry-orange);
	border-radius: 50%;
}

/* Advantages strip */
.events-advantages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
	margin-bottom: var(--space-3xl);
	padding: var(--space-xl);
	background: var(--harry-cream);
	border-radius: var(--radius-lg);
}

.events-advantage-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
}

.events-advantage-item svg {
	color: var(--harry-orange);
	flex-shrink: 0;
	margin-top: 2px;
}

.events-advantage-item strong {
	display: block;
	font-size: 0.88rem;
	margin-bottom: 2px;
}

.events-advantage-item span {
	font-size: 0.82rem;
	color: var(--harry-gray);
	line-height: 1.4;
}

/* CTA box */
.events-cta-box {
	background: var(--harry-brown-dark);
	color: var(--harry-cream);
	border-radius: var(--radius-lg);
	padding: var(--space-3xl);
	text-align: center;
}

.events-cta-box h2 {
	font-family: var(--font-display);
	color: var(--harry-cream);
	margin-bottom: var(--space-sm);
}

.events-cta-box p {
	color: var(--harry-gold-light);
	font-size: 1rem;
	margin-bottom: var(--space-xl);
}

.events-cta-box .btn-outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

.events-cta-box .btn-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.events-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
	flex-wrap: wrap;
}

/* === Promotions Page === */
.harry-promos-page {
	padding: var(--space-2xl) 0 var(--space-4xl);
}

.promos-page-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto var(--space-xl);
}

.promos-page-intro p {
	color: var(--harry-gray);
	font-size: 1.05rem;
	line-height: 1.7;
}

/* === Contact Page === */
.harry-contact-page {
	padding: var(--space-2xl) 0 var(--space-4xl);
}

/* Contact Cards Row */
.contact-cards-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-md);
	margin-bottom: var(--space-2xl);
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
	padding: var(--space-xl) var(--space-md);
	background: var(--harry-white);
	border: 1px solid var(--harry-beige);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--harry-brown);
	transition: all var(--transition-base);
}

a.contact-card:hover {
	border-color: var(--harry-orange);
	box-shadow: var(--shadow-md);
}

.contact-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 133, 59, 0.08);
	border-radius: var(--radius-full);
	color: var(--harry-orange);
	margin-bottom: var(--space-xs);
}

.contact-card strong {
	font-size: 0.95rem;
}

.contact-card span {
	font-size: 0.88rem;
	color: var(--harry-gray);
}

.contact-card-note {
	font-size: 0.78rem !important;
	color: var(--harry-gray-light) !important;
}

.contact-hours {
	line-height: 1.7;
}

/* Main Section — info + map */
.contact-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-2xl);
	align-items: start;
}

.contact-info-block h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: var(--space-md);
}

.contact-info-block p {
	color: var(--harry-gray);
	line-height: 1.8;
	margin-bottom: var(--space-md);
	font-size: 0.95rem;
}

.contact-cta-row {
	display: flex;
	gap: var(--space-md);
	flex-wrap: wrap;
	margin: var(--space-xl) 0;
}

.contact-social-block {
	padding-top: var(--space-lg);
	border-top: 1px solid var(--harry-beige);
}

.contact-social-block strong {
	display: block;
	font-size: 0.9rem;
	margin-bottom: var(--space-sm);
}

/* Contact page — Embedded map */
.contact-map-embed {
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 420px;
	position: relative;
	background: var(--harry-cream-dark);
}

.contact-map-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Contact page — Social links */
.contact-social-links {
	display: flex;
	gap: var(--space-md);
}

.contact-social-links a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.88rem;
	color: var(--harry-brown);
	transition: color var(--transition-fast);
}

.contact-social-links a:hover {
	color: var(--harry-orange);
}

/* Footer — Social icons */
.footer-social {
	display: flex;
	gap: var(--space-md);
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-full);
	color: var(--harry-gray-light);
	transition: all var(--transition-base);
}

.footer-social a:hover {
	background: var(--harry-orange);
	border-color: var(--harry-orange);
	color: #fff;
}

/* === Loading Spinner === */
.harry-loading {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
}

.harry-loading::after {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid transparent;
	border-top-color: currentColor;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

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

/* === Toast Notification === */
.harry-toast {
	position: fixed;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: var(--harry-brown-dark);
	color: var(--harry-cream);
	padding: 0.8rem 1.5rem;
	border-radius: var(--radius-md);
	font-size: 0.9rem;
	font-weight: 500;
	box-shadow: var(--shadow-lg);
	z-index: 10001;
	opacity: 0;
	transition: all var(--transition-base);
	pointer-events: none;
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.harry-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.harry-toast svg {
	color: var(--harry-success);
}

/* === Scroll Animation Classes (set by JS) === */
.harry-animate {
	opacity: 0;
	will-change: transform, opacity;
}

/* Scale up + fade (categories) */
.harry-animate[data-anim="scaleUp"] {
	transform: scale(0.9);
	transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}

/* Slide up + fade (promos, default) */
.harry-animate[data-anim="slideUp"] {
	transform: translateY(24px);
	transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}

/* Scale in (events) */
.harry-animate[data-anim="scaleIn"] {
	transform: scale(0.85);
	transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}

/* Slide from side (reviews, RTL aware) */
.harry-animate[data-anim="slideRight"] {
	transform: translateX(-30px);
	transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}

/* Section header reveal */
.harry-animate[data-anim="headerReveal"] {
	transform: translateY(16px);
	transition: opacity 0.5s var(--ease-expo), transform 0.5s var(--ease-expo);
}

/* Animated state */
.harry-animate.animated {
	opacity: 1;
	transform: none;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
	.harry-promo-showcase {
		grid-template-columns: 1fr 1fr;
	}

	.harry-promo-featured {
		grid-row: auto;
		min-height: 260px;
	}

	.harry-promo-featured h3 {
		font-size: 1.2rem;
	}

	.harry-events-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.harry-location-card {
		grid-template-columns: 1fr;
	}

	.location-map-embed {
		min-height: 250px;
	}
}

@media (max-width: 768px) {
	/* === Header — RTL mobile: logo left, icons right === */
	.harry-header-inner {
		flex-direction: row-reverse;
	}

	.harry-nav {
		display: none;
	}

	.harry-mobile-toggle {
		display: flex;
	}

	/* === Hero — balanced on mobile === */
	.harry-hero {
		min-height: 70vh;
		min-height: 70dvh;
		display: flex;
		flex-direction: column;
	}

	.harry-hero-container {
		padding: var(--space-2xl) var(--space-md);
		flex: 1;
	}

	.harry-hero-title {
		font-size: clamp(2.2rem, 8vw, 3rem);
	}

	.harry-hero-subtitle {
		font-size: 0.95rem;
		margin-bottom: var(--space-xl);
	}

	.harry-hero-ctas {
		gap: var(--space-sm);
		margin-bottom: var(--space-xl);
	}

	.btn-hero-navigate,
	.btn-hero-order {
		justify-content: center;
		padding: 12px 20px;
		font-size: 0.85rem;
	}

	/* === Categories Carousel === */
	.harry-categories-section {
		padding: var(--space-2xl) 0 var(--space-xl);
	}

	.harry-cat-slide {
		min-width: 140px;
		width: 140px;
		height: 180px;
	}

	.harry-cat-slide.no-photo {
		padding: var(--space-sm);
	}

	.harry-cat-slide-icon {
		width: 40px;
		height: 40px;
	}

	.harry-cat-slide-icon svg {
		width: 22px;
		height: 22px;
	}

	.harry-cat-slide-name {
		font-size: 0.82rem;
	}

	.harry-cat-slide-count {
		font-size: 0.72rem;
	}

	/* === Promotions — Vertical stack on mobile === */
	.harry-promotions-section {
		padding: var(--space-2xl) 0;
	}

	.harry-promo-showcase {
		display: flex;
		flex-direction: column;
		gap: var(--space-md);
	}

	.harry-promo-item {
		min-height: 200px;
	}

	.harry-promo-featured {
		min-height: 260px;
		grid-row: auto;
	}

	.harry-promo-featured h3 {
		font-size: 1.15rem;
	}

	.harry-promo-item-content {
		padding: var(--space-lg);
	}

	.harry-promo-item h3 {
		font-size: 1rem;
	}

	.harry-promo-item p {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-bottom: var(--space-sm);
	}

	/* === Events Section === */
	.harry-events-section {
		padding: var(--space-2xl) 0;
	}

	.harry-events-intro p {
		font-size: 0.9rem;
		line-height: 1.7;
	}

	.harry-events-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
		margin-bottom: var(--space-xl);
	}

	.harry-event-card {
		min-height: 200px;
	}

	.harry-event-card h3 {
		font-size: 0.92rem;
	}

	.event-card-desc {
		font-size: 0.78rem;
		line-height: 1.5;
	}

	.event-card-content {
		padding: var(--space-md);
	}

	.harry-events-services-grid {
		gap: var(--space-sm) var(--space-md);
	}

	.harry-events-service-item {
		font-size: 0.82rem;
	}

	.harry-events-cta p {
		font-size: 0.9rem;
	}

	.harry-events-cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.harry-events-cta-buttons .btn {
		width: 100%;
		max-width: 280px;
	}

	/* === Location Section === */
	.harry-location-section {
		padding: var(--space-2xl) 0;
	}

	.harry-location-card {
		grid-template-columns: 1fr;
	}

	.location-map-embed {
		min-height: 220px;
	}

	.location-details {
		padding: var(--space-xl);
		gap: var(--space-md);
	}

	.location-icon {
		width: 42px;
		height: 42px;
	}

	.location-detail-item strong {
		font-size: 0.85rem;
	}

	.location-detail-item p {
		font-size: 0.88rem;
	}

	.location-buttons {
		flex-direction: column;
	}

	.location-buttons .btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	/* === Section Headers (global) === */
	.harry-section-header {
		margin-bottom: var(--space-lg);
	}

	.harry-section-header p {
		font-size: 0.88rem;
	}

	/* === Footer — compact mobile === */
	.harry-footer {
		padding-top: var(--space-xl);
		padding-bottom: 80px;
	}

	.harry-footer-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.harry-footer .footer-brand h3 {
		font-size: 1.15rem;
		text-align: center;
	}

	.harry-footer .footer-contact {
		align-items: center;
	}

	.harry-footer .footer-social {
		justify-content: center;
	}

	.harry-footer .footer-links {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-md);
		text-align: center;
	}

	/* Right-aligned headers revert to center on mobile */
	.harry-categories-section .harry-section-header,
	.harry-events-section .harry-section-header {
		text-align: center;
	}

	.harry-categories-section .harry-section-header h2::after,
	.harry-events-section .harry-section-header h2::after {
		margin: var(--space-md) auto 0;
	}

	/* === Floating Widget === */
	.harry-pill-btn {
		padding: 12px 20px;
		font-size: 0.85rem;
	}

	/* === Reviews === */
	.harry-reviews-grid {
		grid-template-columns: 1fr 1fr;
	}

	/* === Events Page mobile === */
	.events-page-hero {
		min-height: 200px;
	}

	.events-types-grid {
		grid-template-columns: 1fr;
	}

	.event-type-card {
		min-height: 200px;
	}

	.events-supply-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.events-advantages {
		grid-template-columns: 1fr 1fr;
	}

	.contact-cards-row {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.contact-card {
		padding: var(--space-md);
	}

	.contact-main {
		grid-template-columns: 1fr;
	}

	.contact-map-embed {
		min-height: 280px;
	}

	.contact-cta-row {
		flex-direction: column;
		align-items: stretch;
	}

	.contact-cta-row .btn {
		justify-content: center;
	}

	/* === Buttons global mobile sizing === */
	.btn-lg {
		padding: 0.8rem 1.8rem;
		font-size: 0.92rem;
	}
}

@media (max-width: 480px) {
	/* === Hero small screens === */
	.harry-hero-title {
		font-size: clamp(1.8rem, 8vw, 2.5rem);
	}

	.harry-hero-container {
		padding: var(--space-xl) var(--space-sm);
	}

	/* === Categories — smaller cards on small screens === */
	.harry-cat-slide {
		min-width: 120px;
		width: 120px;
		height: 160px;
	}

	/* === Events — small screens === */
	.harry-events-grid {
		grid-template-columns: 1fr;
	}

	.harry-event-card {
		min-height: 180px;
	}

	.events-advantages {
		grid-template-columns: 1fr;
		gap: var(--space-sm);
	}

	.events-cta-box {
		padding: var(--space-xl);
	}

	.events-cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.events-cta-buttons .btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}

	/* === Reviews — single column on small screens === */
	.harry-reviews-grid {
		grid-template-columns: 1fr;
	}

	/* === Floating bar — full width pill === */
	.harry-floating-bar {
		padding-bottom: 12px;
	}

	.harry-floating-pill {
		max-width: 320px;
		width: calc(100% - 24px);
	}

	.harry-pill-btn {
		padding: 12px 18px;
		font-size: 0.82rem;
		gap: 6px;
		flex: 1;
		justify-content: center;
	}

	/* === Global mobile — tap targets & text wrap === */
	.harry-footer ul a,
	.harry-nav a,
	.harry-mobile-menu nav a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.harry-hero-container,
	.harry-promo-item-content,
	.location-details,
	.contact-info-block {
		overflow-wrap: break-word;
	}

	.contact-cards-row {
		gap: var(--space-xs);
	}

	.contact-card-icon {
		width: 44px;
		height: 44px;
	}

	.contact-card strong {
		font-size: 0.88rem;
	}

	.contact-card span {
		font-size: 0.82rem;
	}
}

/* ═══════════════════════════════════════════
 * Elementor Integration & Overrides
 * ═══════════════════════════════════════════ */

/* Full-width wrapper for Elementor pages */
.harry-elementor-page {
	width: 100%;
}

/* Boxed sections respect theme container width */
.harry-elementor-page .elementor-section.elementor-section-boxed > .elementor-container {
	max-width: 1200px;
}

/* Hide default page header on Elementor-built pages */
.harry-elementor-active .harry-page-header {
	display: none;
}

/* Ensure Elementor sections go full width */
.harry-elementor-active .harry-content {
	padding: 0;
}

/* Fix Elementor editor RTL alignment */
.elementor-editor-active .elementor-widget-wrap {
	direction: rtl;
}

/* ─── Homepage: swap Elementor area / PHP sections ─── */
/* Elementor editor: show Elementor content, hide PHP sections */
.elementor-editor-active .harry-elementor-home-area {
	display: block !important;
}

.elementor-editor-active .harry-home-sections {
	display: none !important;
}

/* Elementor font consistency */
.harry-elementor-page .elementor-heading-title {
	font-family: 'Rubik', sans-serif;
}

.harry-elementor-page .elementor-widget-text-editor {
	font-family: 'Heebo', sans-serif;
}

/* ─── Global: kill ALL sidebars ─── */
body.harry-store .widget-area,
body.harry-store #secondary,
body.harry-store aside.sidebar,
body.harry-store .elementor-widget-sidebar,
body.harry-store .wp-block-woocommerce-product-categories,
body.page .widget-area,
body.home .widget-area,
body.single-product .widget-area,
body.single-product #secondary,
body.single-product aside.sidebar {
	display: none !important;
}

/* Main content — full width, no float */
.harry-site-main {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
}

.harry-site-main > .widget,
.harry-site-main > aside {
	display: none !important;
}

/* ─── Product page — Elementor-proof layout ─── */
.harry-product-page .harry-site-main,
.single-product .harry-site-main {
	display: block;
	width: 100% !important;
}

.harry-single-product-content {
	max-width: 100%;
	overflow: visible;
}

/* The 2-column product grid — highest specificity */
.harry-product-top {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 4rem !important;
	align-items: start !important;
	margin-bottom: 4rem;
}

@media (max-width: 1024px) {
	.harry-product-top {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}
}

/* ─── Google Business Reviews Link ─── */
.harry-reviews-google-link {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	margin-top: var(--space-xl);
	padding: 0.8rem 1.8rem;
	background: var(--harry-white);
	color: var(--harry-brown);
	border: 2px solid var(--harry-beige);
	border-radius: var(--radius-md);
	font-size: 0.95rem;
	font-weight: 600;
	transition: all var(--transition-base);
	text-decoration: none;
}

.harry-reviews-google-link:hover {
	background: var(--harry-orange);
	color: #fff;
	border-color: var(--harry-orange);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.harry-reviews-google-link svg {
	flex-shrink: 0;
}
