/**
 * Erbaa Yaprak - Premium E-Commerce Theme
 * Inspired by egricayir.com - Premium Turkish e-commerce design
 *
 * @package Erbaa_Yaprak
 * @since 1.0.0
 */

/* ========================================
   CSS Variables & Design Tokens
   ======================================== */

:root {
	/* Primary Palette - Deep Forest & Vine Greens */
	--primary: #1a3a0a;
	--primary-light: #2d5016;
	--primary-rgb: 26, 58, 10;
	--accent: #c8a84e;
	--accent-light: #d4b96a;
	--accent-dark: #a68b3a;
	--accent-glow: rgba(200, 168, 78, 0.18);
	--accent-rgb: 200, 168, 78;

	/* Secondary Greens */
	--sage: #8cb369;
	--sage-light: #a3c585;
	--sage-glow: rgba(140, 179, 105, 0.15);

	/* Neutrals */
	--bg-cream: #faf7f2;
	--bg-warm: #f3efe8;
	--bg-white: #ffffff;
	--text-dark: #1a1a1a;
	--text-body: #4a4a4a;
	--text-muted: #6b6b6b;
	--border: #e5e0d8;
	--border-light: #f0ece6;

	/* Functional Colors */
	--gold: #c8a84e;
	--gold-light: #d4b96a;
	--error: #c0392b;
	--success: #27ae60;
	--info: #2980b9;
	--whatsapp: #25d366;

	/* Typography */
	--font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	/* Layout */
	--container-width: 1280px;
	--container-narrow: 960px;
	--header-height: 80px;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 32px;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07);
	--shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.12);
	--shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
	--shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
	--shadow-gold: 0 4px 20px rgba(200, 168, 78, 0.3);

	/* Transitions */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
	--transition-fast: 0.2s var(--ease);
	--transition-base: 0.3s var(--ease);
	--transition-slow: 0.5s var(--ease);

	/* Backward compat aliases */
	--color-dark-green: var(--primary);
	--color-light-green: var(--sage);
	--color-gold: var(--accent);
}

/* ========================================
   Reset & Base
   ======================================== */

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-body);
	background-color: var(--bg-cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--transition-base);
}

a:hover {
	color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--text-dark);
	line-height: 1.25;
	margin-top: 0;
	font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-top: 0; }

::selection {
	background: rgba(var(--accent-rgb), 0.2);
	color: var(--text-dark);
}

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

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* WordPress block alignment */
.alignwide {
	width: 100%;
	max-width: 100%;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
}

.content-area {
	display: flex;
	gap: 40px;
}

.content-area--full {
	display: block;
	width: 100%;
}

.widget-area {
	width: 300px;
	flex-shrink: 0;
}

/* ========================================
   Topbar / Announcement Bar
   ======================================== */

.topbar {
	background: var(--primary);
	color: var(--bg-cream);
	font-size: 0.8125rem;
	letter-spacing: 0.03em;
	text-align: center;
	padding: 8px 0;
	position: relative;
	z-index: 1001;
}

.topbar p {
	margin: 0;
}

.topbar a {
	color: var(--accent);
	text-decoration: underline;
}

.topbar a:hover {
	color: var(--accent-light);
}

/* Announcement Bar (Customizer-based, alternative to topbar) */
.announcement-bar {
	background: var(--accent);
	color: var(--text-dark);
	font-size: 0.8125rem;
	font-weight: 500;
	text-align: center;
	padding: 8px 0;
}

.announcement-bar .announcement-text {
	margin: 0;
}

/* ========================================
   Skip Link & Screen Reader
   ======================================== */

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	z-index: 10001;
	padding: 8px 16px;
	background: var(--primary);
	color: var(--bg-white);
	font-size: 0.875rem;
	transition: top var(--transition-base);
}

.skip-link:focus {
	top: 0;
	color: var(--bg-white);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ========================================
   Header - Premium Sticky Glass Effect
   ======================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	height: var(--header-height);
	transition: all var(--transition-base);
}

.site-header.scrolled {
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 32px;
}

/* Site Branding */
.site-branding {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.site-logo img {
	max-height: 50px;
	width: auto;
}

.site-branding-text {
	display: flex;
	flex-direction: column;
}

.site-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	letter-spacing: -0.01em;
}

.site-title a {
	color: var(--primary);
	transition: color var(--transition-base);
}

.site-title a:hover {
	color: var(--accent);
}

.site-description {
	font-size: 0.75rem;
	color: var(--text-muted);
	margin: 0;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 500;
}

/* Main Navigation */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.main-navigation a {
	display: block;
	padding: 10px 18px;
	color: var(--text-dark);
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	border-radius: var(--radius-sm);
	transition: all var(--transition-base);
	position: relative;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 20px;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
	transition: transform var(--transition-base);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
	transform: translateX(-50%) scaleX(1);
}

.main-navigation a:hover {
	color: var(--primary);
	background: rgba(var(--primary-rgb), 0.04);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--primary);
	font-weight: 600;
}

/* Dropdown Menus */
.main-navigation ul ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--bg-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-light);
	padding: 8px;
	z-index: 1000;
	opacity: 0;
	transform: translateY(8px);
	animation: dropdownFade 0.25s var(--ease) forwards;
}

.main-navigation li:hover > ul {
	display: block;
}

.main-navigation ul ul a {
	padding: 10px 16px;
	font-size: 0.88rem;
	border-radius: var(--radius-sm);
}

.main-navigation ul ul a::after {
	display: none;
}

.main-navigation ul ul a:hover {
	background: rgba(var(--accent-rgb), 0.08);
	color: var(--primary);
}

@keyframes dropdownFade {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: var(--radius-sm);
	transition: background var(--transition-base);
}

.menu-toggle:hover {
	background: rgba(0, 0, 0, 0.04);
}

.hamburger-box {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 22px;
}

.hamburger-inner,
.hamburger-box::before,
.hamburger-box::after {
	content: '';
	display: block;
	height: 2px;
	background: var(--text-dark);
	border-radius: 2px;
	transition: all var(--transition-base);
}

.menu-toggle[aria-expanded="true"] .hamburger-box::before {
	transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-box::after {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.header-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: var(--text-dark);
	transition: all var(--transition-base);
}

.header-cart:hover {
	background: rgba(var(--primary-rgb), 0.06);
	color: var(--primary);
}

.header-cart svg {
	width: 22px;
	height: 22px;
}

.cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent);
	color: var(--bg-white);
	font-size: 0.65rem;
	font-weight: 700;
	border-radius: var(--radius-full);
	line-height: 1;
}

/* Topbar Close */
.topbar {
	position: relative;
}

.topbar-close,
.announcement-close {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: inherit;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity var(--transition-base);
	padding: 4px 8px;
	line-height: 1;
}

.topbar-close:hover,
.announcement-close:hover {
	opacity: 1;
}

/* Header Search Toggle */
.header-search-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: none;
	color: var(--text-dark);
	cursor: pointer;
	transition: all var(--transition-base);
}

.header-search-toggle:hover {
	background: rgba(var(--primary-rgb), 0.06);
	color: var(--primary);
}

/* Header Search Overlay */
.header-search-overlay {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--bg-white);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	padding: 16px 0;
	z-index: 1000;
	display: none;
	border-top: 1px solid var(--border-color);
}

.header-search-overlay.active {
	display: block;
}

.header-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-search-input {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 1rem;
	font-family: var(--font-body);
	outline: none;
	transition: border-color var(--transition-base);
}

.header-search-input:focus {
	border-color: var(--primary);
}

.header-search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-md);
	border: none;
	background: var(--primary);
	color: var(--bg-white);
	cursor: pointer;
	transition: background var(--transition-base);
}

.header-search-submit:hover {
	background: var(--primary-dark);
}

.header-search-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: none;
	background: none;
	font-size: 1.6rem;
	color: var(--text-muted);
	cursor: pointer;
	transition: color var(--transition-base);
}

.header-search-close:hover {
	color: var(--text-dark);
}

/* Header Transparent (over hero) */
.header-transparent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: transparent;
}

.header-transparent .site-title a,
.header-transparent .main-navigation a,
.header-transparent .header-cart,
.header-transparent .header-search-toggle {
	color: var(--bg-white);
}

.header-transparent.scrolled {
	position: fixed;
	background: var(--bg-white);
}

.header-transparent.scrolled .site-title a,
.header-transparent.scrolled .main-navigation a,
.header-transparent.scrolled .header-cart,
.header-transparent.scrolled .header-search-toggle {
	color: var(--text-dark);
}

/* Footer Widget Area */
.footer-widgets-area {
	padding: 48px 0 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets-grid {
	display: grid;
	gap: 32px;
}

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

.footer-widgets-grid.footer-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.footer-widgets-grid.footer-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.footer-widget-col .widget {
	margin-bottom: 24px;
}

.footer-widget-col .widget-title {
	color: var(--bg-white);
	font-family: var(--font-heading);
	font-size: 1rem;
	margin: 0 0 16px;
}

.footer-widget-col .widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widget-col .widget ul li {
	margin-bottom: 8px;
}

.footer-widget-col .widget a {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.875rem;
	transition: color var(--transition-base);
}

.footer-widget-col .widget a:hover {
	color: var(--accent);
}

/* Footer Social & Logo - see footer section below */

/* Payment Icons SVG */
.payment-icon svg {
	display: block;
}

/* ========================================
   Hero Section - Premium Split Layout
   ======================================== */

.hero-section {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 0;
	color: var(--bg-white);
	overflow: hidden;
	min-height: 90vh;
	display: flex;
	align-items: center;
}

.hero-section--inner {
	min-height: auto;
	padding: 120px 0 100px;
	text-align: center;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.hero-section--inner .hero-content {
	max-width: 720px;
	margin: 0 auto;
}

.hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(135deg, rgba(26,58,10,0.92) 0%, rgba(45,80,22,0.88) 50%, rgba(26,58,10,0.85) 100%);
	z-index: 1;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background:
		radial-gradient(ellipse at 20% 80%, rgba(200, 168, 78, 0.15) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(140, 179, 105, 0.12) 0%, transparent 60%);
	pointer-events: none;
	z-index: 2;
}

.hero-section .container {
	position: relative;
	z-index: 3;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	min-height: 90vh;
	padding: 120px 0 80px;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 580px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-full);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 28px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.hero-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	color: var(--bg-white);
	margin: 0 0 24px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 36px;
	line-height: 1.8;
	max-width: 480px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.hero-btn {
	margin-bottom: 0;
}

.hero-btn svg {
	transition: transform 0.3s ease;
}

.hero-btn:hover svg {
	transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 48px;
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
	text-align: center;
}

.hero-stat-number {
	display: block;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1.2;
}

.hero-stat-label {
	display: block;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 6px;
	letter-spacing: 0.02em;
}

/* Hero Trust Badges */
.hero-trust-badges {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.82rem;
	font-weight: 500;
}

.trust-badge svg {
	color: var(--accent);
	flex-shrink: 0;
}

/* Hero Visual - Right Side */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-product-showcase {
	position: relative;
	width: 420px;
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-product-ring {
	position: absolute;
	width: 380px;
	height: 380px;
	border: 2px solid rgba(200, 168, 78, 0.3);
	border-radius: 50%;
	animation: hero-ring-rotate 20s linear infinite;
}

.hero-product-ring::before {
	content: '';
	position: absolute;
	top: -4px; left: 50%;
	transform: translateX(-50%);
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
}

@keyframes hero-ring-rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.hero-product-image {
	width: 320px;
	height: 320px;
	object-fit: contain;
	filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
	animation: hero-float 6s ease-in-out infinite;
	position: relative;
	z-index: 2;
}

@keyframes hero-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

/* Hero Floating Cards */
.hero-floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--radius-md);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	z-index: 3;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	animation: hero-card-float 5s ease-in-out infinite;
}

.hero-floating-card--top {
	top: 15%;
	right: -20px;
	animation-delay: 0s;
}

.hero-floating-card--bottom {
	bottom: 20%;
	left: -30px;
	animation-delay: 2.5s;
}

@keyframes hero-card-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

.floating-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(39, 174, 96, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #27ae60;
	flex-shrink: 0;
}

.floating-card-icon--gold {
	background: rgba(200, 168, 78, 0.15);
	color: var(--accent-dark);
}

.floating-card-text strong {
	display: block;
	font-size: 0.88rem;
	color: var(--text-dark);
}

.floating-card-text span {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* Hero Responsive */
@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		min-height: auto;
		padding: 100px 0 60px;
	}
	.hero-content {
		max-width: 600px;
		margin: 0 auto;
	}
	.hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}
	.hero-actions {
		justify-content: center;
	}
	.hero-trust-badges {
		justify-content: center;
	}
	.hero-visual {
		display: none;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 2rem;
	}
	.hero-trust-badges {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}

/* ========================================
   Buttons
   ======================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition-base);
	text-decoration: none;
	white-space: nowrap;
}

.btn:active {
	transform: scale(0.97);
}

/* Primary Button - Golden accent */
.btn-primary {
	background: var(--accent);
	color: var(--text-dark);
	border-color: var(--accent);
	box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.25);
}

.btn-primary:hover {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	color: var(--text-dark);
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
	background: var(--primary);
	color: var(--bg-white);
	border-color: var(--primary);
}

.btn-secondary:hover {
	background: var(--primary-light);
	border-color: var(--primary-light);
	color: var(--bg-white);
	transform: translateY(-2px);
}

/* Outline Button */
.btn-outline {
	background: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline:hover {
	background: var(--primary);
	color: var(--bg-white);
	transform: translateY(-2px);
}

/* Outline Light (for dark backgrounds) */
.btn-outline-light {
	background: transparent;
	color: var(--bg-white);
	border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--bg-white);
	border-color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Button */
.btn-whatsapp {
	background: var(--whatsapp);
	color: var(--bg-white);
	border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
	background: #1ebe57;
	border-color: #1ebe57;
	color: var(--bg-white);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
	transform: translateY(-2px);
}

.btn-whatsapp svg {
	margin-right: 4px;
}

/* Large Button */
.btn-lg {
	padding: 16px 40px;
	font-size: 1.05rem;
}

/* WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 28px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	border: none;
	border-radius: var(--radius-sm);
	background: var(--accent);
	color: var(--text-dark);
	cursor: pointer;
	transition: all var(--transition-base);
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(var(--accent-rgb), 0.2);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:hover {
	background: var(--accent-dark);
	color: var(--text-dark);
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active {
	transform: scale(0.97);
}

/* ========================================
   Section Styles
   ======================================== */

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
	margin: 0 0 16px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

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

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	text-align: center;
	max-width: 560px;
	margin: 0 auto 56px;
	line-height: 1.7;
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-action {
	text-align: center;
	margin-top: 40px;
}

/* ========================================
   Grid System
   ======================================== */

.erbaa-grid {
	display: grid;
	gap: 28px;
}

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

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

.erbaa-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   Product Cards - Premium E-Commerce
   ======================================== */

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.erbaa-product-card {
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--bg-white);
	box-shadow: var(--shadow-card);
	transition: all var(--transition-base);
}

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

.product-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: var(--bg-warm);
}

.product-card-image a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.erbaa-product-card:hover .product-card-image a img {
	transform: scale(1.08);
}

/* Product Badges */
.product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	z-index: 2;
	pointer-events: none;
}

.product-badge {
	display: inline-block;
	padding: 5px 12px;
	font-size: 0.68rem;
	font-weight: 700;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.product-badge.new-badge {
	background: var(--info);
	color: var(--bg-white);
}

.product-badge.sale-badge {
	background: var(--error);
	color: var(--bg-white);
}

.product-badge.featured-badge {
	background: var(--accent);
	color: var(--text-dark);
}

/* Product Card Overlay */
.product-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
	padding: 32px 16px 16px;
	opacity: 0;
	transition: opacity 0.4s var(--ease);
	display: flex;
	justify-content: center;
}

.erbaa-product-card:hover .product-card-overlay {
	opacity: 1;
}

.quick-view-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bg-white);
	font-size: 0.85rem;
	font-weight: 500;
}

.quick-view-link:hover {
	color: var(--bg-white);
}

/* Product Card Details */
.product-card-details {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card-category {
	display: block;
	margin-bottom: 6px;
}

.product-card-category a {
	font-size: 0.72rem;
	color: var(--accent-dark);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
}

.product-card-link {
	color: var(--text-dark);
}

.product-card-link:hover {
	color: var(--primary);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 8px;
	line-height: 1.35;
	padding: 0;
}

.woocommerce ul.products li.product .price {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary);
	padding: 0;
	margin: 0 0 8px;
}

.woocommerce ul.products li.product .price del {
	color: var(--text-muted);
	font-weight: 400;
	font-size: 0.88rem;
	opacity: 0.7;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	font-weight: 700;
	color: var(--error);
}

/* Stock Status */
.product-card-stock {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.product-card-stock.out-of-stock { color: var(--error); }
.product-card-stock.low-stock { color: var(--accent-dark); }

/* Product Card Actions */
.product-card-actions {
	margin-top: auto;
	padding-top: 12px;
}

.product-card-actions .button {
	width: 100%;
	text-align: center;
	padding: 10px 20px !important;
	font-size: 0.85rem !important;
	border-radius: var(--radius-sm) !important;
}

/* Sale Badge (WooCommerce default) */
.woocommerce span.onsale {
	display: none; /* We use custom badge system */
}

/* Star Rating */
.woocommerce ul.products li.product .star-rating {
	margin: 4px 0 8px;
	font-size: 0.82rem;
	color: var(--gold);
}

/* ========================================
   Featured Products Section
   ======================================== */

.featured-products-section {
	padding: 100px 0;
	background: var(--bg-cream);
	position: relative;
	text-align: center;
}

.featured-products-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--accent), transparent);
}

/* ========================================
   Categories Section
   ======================================== */

.categories-section {
	padding: 100px 0;
	background: var(--bg-white);
	text-align: center;
}

.category-card {
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-white);
	box-shadow: var(--shadow-card);
	transition: all 0.4s var(--ease);
	text-decoration: none;
	position: relative;
}

.category-card:hover {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
	transform: translateY(-8px);
	color: inherit;
}

.category-card-image {
	height: 260px;
	overflow: hidden;
	background: var(--bg-warm);
	position: relative;
}

.category-card-image::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
	z-index: 1;
	transition: opacity 0.4s ease;
}

.category-card:hover .category-card-image::after {
	opacity: 0.8;
}

.category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.category-card:hover .category-card-image img {
	transform: scale(1.1);
}

.category-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	background: linear-gradient(135deg, var(--bg-warm), var(--bg-cream));
}

.category-card-info {
	padding: 24px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.category-card-title {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 8px;
	transition: color 0.3s ease;
}

.category-card:hover .category-card-title {
	color: var(--primary);
}

.category-card-count {
	font-size: 0.82rem;
	color: var(--text-muted);
	font-weight: 500;
	letter-spacing: 0.02em;
}

/* ========================================
   Features Section (Trust/Credibility)
   ======================================== */

.features-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background:
		radial-gradient(ellipse at 20% 80%, rgba(200, 168, 78, 0.1) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(140, 179, 105, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.features-section .section-title {
	color: var(--bg-white);
}

.features-section .section-subtitle {
	color: rgba(255, 255, 255, 0.7);
}

.feature-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--radius-lg);
	padding: 40px 28px;
	text-align: center;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
	transition: all 0.4s var(--ease);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.14);
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 255, 255, 0.25);
}

.feature-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	background: rgba(200, 168, 78, 0.15);
	border-radius: 50%;
	margin-bottom: 20px;
	color: var(--accent);
	transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
	background: rgba(200, 168, 78, 0.25);
	transform: scale(1.1);
}

.feature-card h3 {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	margin: 0 0 12px;
	color: var(--bg-white);
}

.feature-card p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	line-height: 1.7;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
	padding: 100px 0;
	background: var(--bg-white);
	position: relative;
	overflow: hidden;
}

.about-section::before {
	content: '';
	position: absolute;
	top: -50%; right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-image {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.about-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.about-image-badge {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: var(--primary);
	color: var(--bg-white);
	padding: 16px 20px;
	border-radius: var(--radius-md);
	text-align: center;
	box-shadow: var(--shadow-lg);
}

.about-badge-number {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	color: var(--accent);
}

.about-badge-text {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
	opacity: 0.9;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.06));
	border: 1px solid rgba(var(--accent-rgb), 0.2);
	color: var(--accent-dark);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: var(--radius-full);
	margin-bottom: 16px;
}

.section-badge--light {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.2);
	color: var(--accent);
}

/* (Old about styles removed - see About Page section below) */

.feature-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(var(--accent-rgb), 0.1);
	border-radius: 50%;
	color: var(--accent-dark);
	flex-shrink: 0;
}

.feature-item strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1rem;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.feature-item p {
	font-size: 0.88rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.5;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
	padding: 100px 0;
	background: var(--bg-warm);
	position: relative;
	text-align: center;
}

.testimonial-card {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	padding: 36px;
	box-shadow: var(--shadow-card);
	transition: all 0.4s var(--ease);
	border: 1px solid var(--border-light);
	position: relative;
	text-align: left;
}

.testimonial-card::before {
	content: '\201C';
	position: absolute;
	top: 16px;
	right: 24px;
	font-family: var(--font-heading);
	font-size: 4rem;
	color: var(--accent);
	opacity: 0.15;
	line-height: 1;
}

.testimonial-card:hover {
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
	transform: translateY(-6px);
	border-color: rgba(var(--accent-rgb), 0.3);
}

.testimonial-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 16px;
}

.testimonial-stars .star {
	color: var(--border);
	font-size: 1.1rem;
}

.testimonial-stars .star.filled {
	color: var(--gold);
}

.testimonial-text {
	font-size: 0.95rem;
	color: var(--text-body);
	line-height: 1.7;
	margin: 0 0 20px;
	padding: 0;
	border: none;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid var(--border-light);
}

.testimonial-author img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.testimonial-author-info {
	display: flex;
	flex-direction: column;
}

.testimonial-author-info strong {
	font-size: 0.9rem;
	color: var(--text-dark);
}

.testimonial-product {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* ========================================
   Social / Instagram Section
   ======================================== */

.social-section {
	padding: 80px 0;
	background: var(--bg-white);
}

.instagram-feed-area {
	margin-bottom: 40px;
}

.social-links-bar {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.92rem;
	transition: all var(--transition-base);
	border: 2px solid var(--border);
	color: var(--text-body);
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.social-link--instagram:hover {
	border-color: #e4405f;
	color: #e4405f;
	background: rgba(228, 64, 95, 0.04);
}

.social-link--facebook:hover {
	border-color: #1877f2;
	color: #1877f2;
	background: rgba(24, 119, 242, 0.04);
}

.social-link--twitter:hover {
	border-color: #1da1f2;
	color: #1da1f2;
	background: rgba(29, 161, 242, 0.04);
}

.social-link--whatsapp:hover {
	border-color: var(--whatsapp);
	color: var(--whatsapp);
	background: rgba(37, 211, 102, 0.04);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	background-size: cover;
	background-position: center;
	color: var(--bg-white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background:
		linear-gradient(135deg, rgba(26,58,10,0.9), rgba(45,80,22,0.85)),
		radial-gradient(ellipse at 30% 50%, rgba(200, 168, 78, 0.15) 0%, transparent 60%);
	pointer-events: none;
}

.cta-section::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(to right, var(--accent), var(--sage), var(--accent));
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
	margin: 0 auto;
}

.cta-title {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	color: var(--bg-white);
	margin: 0 0 16px;
}

.cta-text {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 32px;
	line-height: 1.7;
}

.cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ========================================
   Page Hero (inner pages)
   ======================================== */

.page-hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: var(--bg-white);
	padding: 56px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* Page hero - no curve */

.page-hero-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--bg-white);
	margin: 0 0 10px;
}

.page-hero-subtitle {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
   Breadcrumbs
   ======================================== */

.breadcrumbs {
	padding: 16px 0;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.82rem;
	color: var(--text-muted);
}

.breadcrumb-item a {
	color: var(--text-muted);
	transition: color var(--transition-base);
}

.breadcrumb-item a:hover {
	color: var(--accent);
}

.breadcrumb-separator {
	color: var(--border);
}

.breadcrumb-item.current {
	color: var(--text-dark);
	font-weight: 500;
}

/* ========================================
   About Page - Premium Immersive Design
   ======================================== */

/* --- About Hero --- */
.about-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(30, 58, 14, 0.88), rgba(45, 80, 22, 0.75));
}
.about-hero-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--bg-white);
	padding: 80px 0;
}
.about-hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.2);
}
.about-hero-title {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 16px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}
.about-hero-desc {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.85);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* --- Story Section --- */
.about-story {
	padding: 80px 0;
}
.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.about-story-image {
	position: relative;
}
.about-story-image img {
	width: 100%;
	border-radius: var(--radius-lg, 16px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-story-image-badge {
	position: absolute;
	bottom: -16px;
	right: -16px;
	background: var(--primary);
	color: var(--bg-white);
	padding: 16px 20px;
	border-radius: var(--radius-md);
	text-align: center;
	box-shadow: 0 8px 32px rgba(45, 80, 22, 0.4);
}
.about-badge-year {
	display: block;
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}
.about-badge-text {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 4px;
	opacity: 0.85;
}
.about-story-content h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	margin: 12px 0 16px;
	line-height: 1.25;
}
.about-story-content p {
	font-size: 0.95rem;
	color: var(--text-body);
	line-height: 1.8;
	margin-bottom: 12px;
}
.about-story-highlights {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}
.about-highlight {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-dark);
}
.about-highlight svg {
	color: var(--primary);
	flex-shrink: 0;
}

/* --- Homepage About Stats (inside .about-section) --- */
.about-section .about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
	padding: 20px 24px;
	background: linear-gradient(135deg, var(--primary) 0%, #1a2f0d 100%);
	border-radius: var(--radius-md);
	text-align: center;
	color: var(--bg-white);
}
.about-section .about-stat-number {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 4px;
}
.about-section .about-stat-label {
	font-size: 0.7rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.about-section .about-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 20px 0 24px;
}
.about-section .about-text {
	font-size: 0.95rem;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 8px;
}

/* --- About Page Stats Counter (inside .page-about) --- */
.page-about .about-stats {
	padding: 56px 0;
	background: linear-gradient(135deg, var(--primary) 0%, #1a2f0d 100%);
	color: var(--bg-white);
}
.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
.page-about .about-stat-number {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}
.page-about .about-stat-number::after {
	content: '+';
	font-size: 1.5rem;
	opacity: 0.7;
}
.page-about .about-stat-label {
	font-size: 0.85rem;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* --- Production Timeline --- */
.about-production {
	padding: 80px 0;
	background: var(--bg-cream);
}
.about-section-header {
	text-align: center;
	margin-bottom: 48px;
}
.about-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
.about-timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--primary), var(--accent));
	transform: translateX(-50%);
	border-radius: 3px;
}
.about-timeline-item {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 40px;
	padding-right: calc(50% + 40px);
	position: relative;
}
.about-timeline-item--right {
	padding-right: 0;
	padding-left: calc(50% + 40px);
	flex-direction: row-reverse;
	text-align: right;
}
.about-timeline-dot {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 44px;
	height: 44px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bg-white);
	font-weight: 700;
	font-size: 0.95rem;
	z-index: 2;
	box-shadow: 0 4px 16px rgba(45, 80, 22, 0.35);
	border: 3px solid var(--bg-cream);
}
.about-timeline-card {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-light);
	transition: all var(--transition-base);
	flex: 1;
}
.about-timeline-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}
.about-timeline-icon {
	font-size: 1.5rem;
	margin-bottom: 8px;
}
.about-timeline-card h3 {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	margin: 0 0 8px;
}
.about-timeline-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin: 0;
}

/* --- Why Erbaa Section --- */
.about-why-erbaa {
	padding: 80px 0;
}
.about-why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.about-why-content h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	margin: 12px 0 16px;
	line-height: 1.25;
}
.about-why-content > p {
	font-size: 0.95rem;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 24px;
}
.about-why-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.about-why-feature {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.about-why-feature-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--primary-rgb), 0.08);
	border-radius: 10px;
}
.about-why-feature h4 {
	font-size: 0.95rem;
	margin: 0 0 4px;
	font-weight: 600;
}
.about-why-feature p {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.5;
}
.about-why-image img {
	width: 100%;
	border-radius: var(--radius-lg, 16px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* --- Mission & Vision --- */
.about-mv-section {
	padding: 80px 0;
	background: var(--bg-warm);
}
.about-mv-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.about-mv-card {
	padding: 40px 32px;
	border-radius: var(--radius-md);
	background: var(--bg-white);
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-light);
	transition: all var(--transition-base);
	position: relative;
	overflow: hidden;
}
.about-mv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
}
.about-mv-card--mission::before { background: var(--primary); }
.about-mv-card--vision::before { background: var(--accent); }
.about-mv-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-3px);
}
.about-mv-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: rgba(var(--primary-rgb), 0.08);
	border-radius: 50%;
	color: var(--primary);
	margin-bottom: 16px;
}
.about-mv-card h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin: 0 0 12px;
}
.about-mv-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0;
}

/* --- Values Grid --- */
.about-values {
	padding: 80px 0;
	background: linear-gradient(175deg, #1e3a0e 0%, var(--primary) 40%, #1a2f0d 100%);
	color: var(--bg-white);
}
.about-values .section-title { color: var(--bg-white); }
.about-values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.about-value-card {
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius-md);
	padding: 32px 24px;
	text-align: center;
	transition: all var(--transition-base);
}
.about-value-card:hover {
	background: rgba(255,255,255,0.14);
	transform: translateY(-4px);
}
.about-value-icon {
	font-size: 2rem;
	margin-bottom: 14px;
}
.about-value-card h3 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin: 0 0 8px;
	color: var(--bg-white);
}
.about-value-card p {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.75);
	margin: 0;
	line-height: 1.6;
}

/* --- About Page Responsive --- */
@media (max-width: 992px) {
	.about-hero-title { font-size: 2rem; }
	.about-story-grid,
	.about-why-grid { grid-template-columns: 1fr; gap: 32px; }
	.about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.about-mv-grid { grid-template-columns: 1fr; }
	.about-values-grid { grid-template-columns: repeat(2, 1fr); }

	/* Timeline: single column */
	.about-timeline-line { left: 22px; }
	.about-timeline-item,
	.about-timeline-item--right {
		padding-left: 64px;
		padding-right: 0;
		flex-direction: row;
		text-align: left;
	}
	.about-timeline-dot {
		left: 22px;
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}
}

@media (max-width: 576px) {
	.about-hero { min-height: 320px; background-attachment: scroll; }
	.about-hero-inner { padding: 48px 0; }
	.about-hero-title { font-size: 1.6rem; }
	.about-hero-desc { font-size: 0.9rem; }
	.about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.page-about .about-stat-number { font-size: 2rem; }
	.about-values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.about-value-card { padding: 20px 14px; }
	.about-story-image-badge { bottom: -10px; right: -6px; padding: 10px 14px; }
	.about-badge-year { font-size: 1.4rem; }
}

/* ========================================
   Contact Page
   ======================================== */

/* Contact Hero */
.contact-hero {
	background: linear-gradient(135deg, var(--primary) 0%, #1a3a0a 100%);
	color: #fff;
	padding: 80px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.contact-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
	border-radius: 50%;
}

.contact-hero .about-hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.2);
}

.contact-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
}

.contact-hero-desc {
	font-size: 1.1rem;
	opacity: 0.85;
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Contact Quick Strip */
.contact-strip {
	padding: 0;
	margin-top: -30px;
	position: relative;
	z-index: 2;
}

.contact-strip-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.contact-strip-item {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--bg-white);
	padding: 20px 24px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-light);
	text-decoration: none;
	color: var(--text-dark);
	transition: all var(--transition-base);
}

a.contact-strip-item:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

.contact-strip-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(var(--primary-rgb), 0.08);
	border-radius: 50%;
	color: var(--primary);
	flex-shrink: 0;
}

.contact-strip-item--whatsapp .contact-strip-icon {
	background: rgba(37, 211, 102, 0.1);
	color: #25d366;
}

.contact-strip-item strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 2px;
}

.contact-strip-item span {
	display: block;
	font-size: 0.82rem;
	color: var(--text-muted);
}

/* Contact Content */
.contact-content-section {
	padding: 60px 0 80px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 40px;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Contact Detail Cards */
.contact-detail-card {
	display: flex;
	gap: 16px;
	background: var(--bg-white);
	border-radius: var(--radius-md);
	padding: 24px;
	border: 1px solid var(--border-light);
	transition: all var(--transition-base);
}

.contact-detail-card:hover {
	box-shadow: var(--shadow-sm);
}

.contact-detail-card--highlight {
	background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, rgba(var(--primary-rgb), 0.04) 100%);
	border-color: rgba(var(--accent-rgb), 0.2);
}

.contact-detail-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(var(--primary-rgb), 0.08);
	border-radius: var(--radius-sm);
	color: var(--primary);
	flex-shrink: 0;
}

.contact-detail-card--highlight .contact-detail-icon {
	background: rgba(var(--accent-rgb), 0.12);
	color: var(--accent-dark);
}

.contact-detail-body h3 {
	font-family: var(--font-heading);
	font-size: 1rem;
	margin: 0 0 6px;
}

.contact-detail-body p {
	font-size: 0.88rem;
	color: var(--text-muted);
	margin: 0 0 8px;
	line-height: 1.6;
}

.contact-detail-link {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--accent-dark);
	text-decoration: none;
	transition: color var(--transition-base);
}

.contact-detail-link:hover {
	color: var(--primary);
}

.contact-social-links {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 4px;
}

.contact-social-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: var(--radius-sm);
	background: var(--bg-white);
	color: var(--text-body);
	font-size: 0.82rem;
	font-weight: 500;
	transition: all var(--transition-base);
	border: 1px solid var(--border-light);
	text-decoration: none;
}

.contact-social-links a:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

/* Contact Form */
.contact-form-area {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	padding: 40px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-light);
}

.contact-form-header {
	margin-bottom: 28px;
}

.contact-form-header h2 {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	margin: 0 0 8px;
}

.contact-form-header p {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin: 0;
}

/* CF7 + Fallback Form Shared Styles */
.form-row-group,
.cf7-row-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.erbaa-contact-form .form-row,
.wpcf7-form .cf7-row {
	margin-bottom: 18px;
}

.erbaa-contact-form .form-row--hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
	height: 0;
}

.erbaa-contact-form label,
.wpcf7-form label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 6px;
}

.erbaa-contact-form .required,
.wpcf7-form .required {
	color: var(--error);
}

.erbaa-contact-form input[type="text"],
.erbaa-contact-form input[type="email"],
.erbaa-contact-form input[type="tel"],
.erbaa-contact-form select,
.erbaa-contact-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.92rem;
	color: var(--text-dark);
	background: var(--bg-cream);
	transition: all var(--transition-base);
	box-sizing: border-box;
}

.erbaa-contact-form select,
.wpcf7-form select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.erbaa-contact-form input[type="text"]:focus,
.erbaa-contact-form input[type="email"]:focus,
.erbaa-contact-form input[type="tel"]:focus,
.erbaa-contact-form select:focus,
.erbaa-contact-form textarea:focus,
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px var(--accent-glow);
	background: var(--bg-white);
}

.erbaa-contact-form input::placeholder,
.erbaa-contact-form textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--text-muted);
	opacity: 0.7;
}

/* CF7 wpcf7 overrides */
.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-form .wpcf7-not-valid-tip {
	color: var(--error);
	font-size: 0.82rem;
	margin-top: 4px;
}

.wpcf7-form .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 14px 20px;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	border: none;
}

.wpcf7-form .wpcf7-mail-sent-ok {
	background: rgba(var(--success-rgb, 34, 197, 94), 0.1);
	color: var(--success, #16a34a);
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-mail-sent-ng {
	background: rgba(var(--error-rgb, 239, 68, 68), 0.1);
	color: var(--error);
}

/* CF7 Submit Button */
.cf7-submit-row .wpcf7-submit,
.wpcf7-form input[type="submit"] {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	background: var(--accent);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-base);
}

.cf7-submit-row .wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
	box-shadow: var(--shadow-sm);
}

/* CF7 Spinner */
.wpcf7-form .wpcf7-spinner {
	margin: 12px auto 0;
	display: block;
}

.btn-full {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.contact-form-response {
	margin-top: 16px;
	padding: 14px 20px;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
}

/* Map Section */
.contact-map-section {
	padding: 0 0 80px;
}

.contact-map-header {
	text-align: center;
	margin-bottom: 32px;
}

.contact-map-header h2 {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	margin: 0 0 8px;
}

.contact-map-header p {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin: 0;
}

.map-embed {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.map-embed iframe {
	width: 100%;
	height: 400px;
	border: none;
}

.map-placeholder {
	background: linear-gradient(135deg, var(--bg-warm) 0%, rgba(var(--primary-rgb), 0.04) 100%);
	padding: 64px 32px;
	text-align: center;
	border: 1px solid var(--border-light);
}

.map-placeholder-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: rgba(var(--primary-rgb), 0.08);
	border-radius: 50%;
	color: var(--primary);
	margin-bottom: 20px;
}

.map-placeholder h3 {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	margin: 0 0 8px;
}

.map-placeholder p {
	font-size: 0.92rem;
	color: var(--text-muted);
	margin: 0 0 24px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Contact Responsive */
@media (max-width: 992px) {
	.contact-strip-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.contact-hero {
		padding: 60px 0 50px;
	}
	.contact-hero-title {
		font-size: 1.6rem;
	}
	.contact-strip {
		margin-top: -20px;
	}
	.contact-strip-grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.contact-strip-item {
		padding: 14px 16px;
		gap: 10px;
	}
	.contact-strip-icon {
		width: 40px;
		height: 40px;
	}
	.contact-strip-icon svg {
		width: 20px;
		height: 20px;
	}
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.contact-form-area {
		padding: 28px 20px;
	}
	.form-row-group,
	.cf7-row-group {
		grid-template-columns: 1fr;
	}
	.contact-content-section {
		padding: 40px 0 60px;
	}
	.contact-map-section {
		padding: 0 0 60px;
	}
}

/* ========================================
   FAQ Page
   ======================================== */

/* FAQ Hero */
.faq-hero {
	background: linear-gradient(135deg, var(--primary) 0%, #1a3a0a 100%);
	color: #fff;
	padding: 80px 0 60px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.faq-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
	border-radius: 50%;
}

.faq-hero .about-hero-badge {
	display: inline-block;
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 20px;
	border: 1px solid rgba(255,255,255,0.2);
}

.faq-hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 2.8rem);
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
}

.faq-hero-desc {
	font-size: 1.1rem;
	opacity: 0.85;
	max-width: 520px;
	margin: 0 auto;
	line-height: 1.6;
}

/* FAQ Content */
.faq-content-section {
	padding: 80px 0;
}

.faq-content-area {
	max-width: 900px;
	margin: 0 auto;
}

/* ---- Elementor Accordion on FAQ Page ---- */

/* Section spacing between category groups */
.page-faq .elementor-section {
	margin-bottom: 12px;
}

/* Category Headings */
.page-faq .elementor-widget-heading {
	margin-bottom: 4px !important;
}

.page-faq .elementor-heading-title {
	font-family: var(--font-heading) !important;
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	color: var(--text-dark) !important;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent);
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Accordion Container */
.page-faq .elementor-accordion {
	border: none !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Accordion Items - Card Style */
.page-faq .elementor-accordion-item {
	background: var(--bg-white) !important;
	border: 1px solid var(--border-light) !important;
	border-radius: 12px !important;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.page-faq .elementor-accordion-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	border-color: rgba(var(--accent-rgb), 0.3) !important;
	transform: translateY(-1px);
}

/* Active state - accent glow */
.page-faq .elementor-accordion-item:has(.elementor-active) {
	border-color: var(--accent) !important;
	box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.12);
}

/* Tab Title (Question) */
.page-faq .elementor-tab-title {
	padding: 20px 24px !important;
	font-family: var(--font-body) !important;
	font-size: 0.95rem !important;
	font-weight: 600 !important;
	color: var(--text-dark) !important;
	border: none !important;
	background: transparent !important;
	transition: all 0.25s ease !important;
	cursor: pointer;
	line-height: 1.5 !important;
}

.page-faq .elementor-tab-title:hover {
	background: rgba(var(--accent-rgb), 0.03) !important;
}

/* Active title - accent color */
.page-faq .elementor-tab-title.elementor-active {
	color: var(--accent-dark) !important;
	background: rgba(var(--accent-rgb), 0.03) !important;
}

/* Accordion Icon */
.page-faq .elementor-accordion-icon {
	width: 32px;
	height: 32px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: rgba(var(--primary-rgb), 0.06);
	border-radius: 8px;
	flex-shrink: 0;
	transition: all 0.3s ease;
	margin-right: 4px !important;
}

.page-faq .elementor-accordion-icon svg {
	width: 12px !important;
	height: 12px !important;
	fill: var(--text-muted);
	transition: all 0.3s ease;
}

/* Active icon state */
.page-faq .elementor-active .elementor-accordion-icon {
	background: var(--accent) !important;
	border-radius: 8px;
}

.page-faq .elementor-active .elementor-accordion-icon svg {
	fill: #fff !important;
}

.page-faq .elementor-active .elementor-accordion-icon-closed {
	display: none !important;
}

/* Tab Content (Answer) */
.page-faq .elementor-tab-content {
	padding: 0 24px 24px 60px !important;
	border-top: none !important;
	color: var(--text-body) !important;
	font-size: 0.92rem !important;
	line-height: 1.8 !important;
}

/* ---- Elementor Toggle Widget (alternative) ---- */
.page-faq .elementor-toggle {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.page-faq .elementor-toggle-item {
	background: var(--bg-white) !important;
	border: 1px solid var(--border-light) !important;
	border-radius: 12px !important;
	overflow: hidden;
	transition: all 0.3s ease;
}

.page-faq .elementor-toggle-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.page-faq .elementor-toggle-item .elementor-tab-title {
	padding: 20px 24px !important;
	font-weight: 600 !important;
	color: var(--text-dark) !important;
	border: none !important;
}

.page-faq .elementor-toggle-item .elementor-tab-content {
	padding: 0 24px 24px 60px !important;
	border-top: none !important;
	color: var(--text-body) !important;
	font-size: 0.92rem !important;
	line-height: 1.8 !important;
}

/* ---- CTA Section ---- */
.faq-cta-section {
	padding: 0 0 80px;
}

.faq-cta {
	max-width: 700px;
	margin: 0 auto;
	padding: 52px 40px;
	background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--accent-rgb), 0.08) 100%);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(var(--accent-rgb), 0.15);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.faq-cta::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	background: rgba(var(--accent-rgb), 0.06);
	border-radius: 50%;
}

.faq-cta::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 80px;
	height: 80px;
	background: rgba(var(--primary-rgb), 0.05);
	border-radius: 50%;
}

.faq-cta-icon {
	font-size: 2.8rem;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
}

.faq-cta h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin: 0 0 10px;
	position: relative;
	z-index: 1;
}

.faq-cta p {
	font-size: 1rem;
	color: var(--text-body);
	margin: 0 0 28px;
	position: relative;
	z-index: 1;
}

.faq-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* ---- Erbaa Custom Accordion (non-Elementor fallback) ---- */
.erbaa-accordion {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.accordion-item {
	background: var(--bg-white);
	border-radius: 12px;
	border: 1px solid var(--border-light);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.accordion-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.accordion-item.is-open {
	border-color: var(--accent);
	box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.12);
}

.accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-dark);
	text-align: left;
	transition: all 0.25s ease;
}

.accordion-header::after {
	content: '+';
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(var(--primary-rgb), 0.06);
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--text-muted);
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 16px;
}

.accordion-header[aria-expanded="true"]::after {
	content: '\2212';
	background: var(--accent);
	color: #fff;
}

.accordion-header:hover {
	background: rgba(var(--accent-rgb), 0.03);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 24px;
	color: var(--text-body);
	font-size: 0.92rem;
	line-height: 1.8;
	transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.is-open .accordion-content {
	padding: 0 24px 24px;
}

.accordion-content p {
	margin: 0;
}

/* ---- FAQ Responsive ---- */
@media (max-width: 768px) {
	.faq-hero {
		padding: 60px 0 40px;
	}
	.faq-hero-title {
		font-size: 1.6rem;
	}
	.faq-hero-desc {
		font-size: 0.95rem;
		margin-bottom: 0;
	}
	.faq-content-section {
		padding: 48px 0;
	}
	/* Elementor accordion mobile */
	.page-faq .elementor-tab-title {
		padding: 16px 16px !important;
		font-size: 0.88rem !important;
	}
	.page-faq .elementor-accordion-icon {
		width: 28px;
		height: 28px;
	}
	.page-faq .elementor-tab-content {
		padding: 0 16px 18px 48px !important;
		font-size: 0.88rem !important;
	}
	.page-faq .elementor-heading-title {
		font-size: 1.15rem !important;
	}
	/* Erbaa accordion mobile */
	.accordion-header {
		padding: 16px;
		font-size: 0.88rem;
	}
	.accordion-header::after {
		width: 28px;
		height: 28px;
		font-size: 1rem;
	}
	.accordion-content {
		padding: 0 16px;
	}
	.accordion-item.is-open .accordion-content {
		padding: 0 16px 18px;
	}
	/* CTA mobile */
	.faq-cta {
		padding: 36px 24px;
	}
	.faq-cta h3 {
		font-size: 1.25rem;
	}
	.faq-cta-section {
		padding: 0 0 60px;
	}
}

.faq-page-content {
	margin: 32px 0;
}

/* ========================================
   Footer - Premium Multi-Column
   ======================================== */

/* ---- Footer Base ---- */
.site-footer {
	background: linear-gradient(175deg, #1e3a0e 0%, var(--primary, #2d5016) 40%, #1a2f0d 100%);
	color: rgba(255, 255, 255, 0.85);
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--accent, #6ba33e), transparent);
}

/* ---- Footer Main ---- */
.footer-main {
	padding: 56px 0 40px;
	position: relative;
	z-index: 1;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr;
	gap: 48px;
}

/* ---- Footer Brand Column ---- */
.footer-logo {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	color: #fff;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
}

.footer-logo a { color: #fff; }
.footer-logo a:hover { color: var(--accent); }

.footer-logo-img { display: inline-block; margin-bottom: 14px; }
.footer-logo-img img { max-height: 44px; width: auto; filter: brightness(1.1); }

.footer-brand p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
	line-height: 1.65;
	margin-bottom: 20px;
	max-width: 320px;
}

.footer-contact-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
}

.footer-contact-links a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
	transition: all 0.2s ease;
}

.footer-contact-links a:hover {
	color: #fff;
	transform: translateX(3px);
}

.footer-contact-links svg {
	flex-shrink: 0;
	opacity: 0.5;
	transition: opacity 0.2s;
}

.footer-contact-links a:hover svg {
	opacity: 1;
	color: var(--accent);
}

/* ---- Footer Links Column ---- */
.site-footer h4 {
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.45);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer ul li {
	margin-bottom: 0;
}

.site-footer ul li a {
	display: block;
	padding: 7px 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.88rem;
	transition: all 0.2s ease;
	position: relative;
}

.site-footer ul li a:hover {
	color: #fff;
	padding-left: 8px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.2s ease;
	font-size: 0.88rem;
}

.site-footer a:hover {
	color: var(--accent);
}

/* ---- Footer Payment & Info Column ---- */
.footer-payment-info .payment-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.payment-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.2s ease;
}

.payment-icon:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.2);
}

.footer-address {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
}

.footer-address svg {
	flex-shrink: 0;
	margin-top: 2px;
	opacity: 0.5;
}

/* ---- Social Icons ---- */
.footer-social {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.25s ease;
}

.footer-social a:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(107, 163, 62, 0.3);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	text-align: center;
	background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.01em;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--accent);
}

/* ---- Footer Mobile ---- */
@media (max-width: 768px) {
	.footer-main { padding: 40px 0 28px; }
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	.footer-brand p { max-width: none; }
	.footer-contact-links { align-items: center; }
	.footer-contact-links a:hover { transform: none; }
	.footer-social { justify-content: center; }
	.site-footer h4 { border-bottom: none; padding-bottom: 0; }
	.footer-payment-info .payment-icons { justify-content: center; }
	.footer-address { justify-content: center; }
	.site-footer ul li a:hover { padding-left: 0; }
}

/* ========================================
   Blog / Posts
   ======================================== */

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.post-card {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: all var(--transition-base);
}

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

.post-card-image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card-content {
	padding: 24px;
}

.entry-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	margin: 0 0 10px;
}

.entry-title a {
	color: var(--text-dark);
}

.entry-title a:hover {
	color: var(--accent);
}

.entry-meta {
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.entry-meta a {
	color: var(--text-muted);
}

.entry-meta a:hover {
	color: var(--accent);
}

.entry-summary {
	font-size: 0.92rem;
	color: var(--text-body);
	line-height: 1.7;
}

/* Single Post */
.single-post-content {
	max-width: 720px;
	margin: 0 auto;
}

.single-post-content .entry-content {
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--text-body);
}

/* ========================================
   Sidebar / Widgets
   ======================================== */

.widget {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	padding: 28px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-light);
	margin-bottom: 24px;
}

.widget-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	color: var(--text-dark);
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--accent);
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget ul li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-light);
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: var(--text-body);
	font-size: 0.9rem;
}

.widget ul li a:hover {
	color: var(--accent);
}

/* ========================================
   Search Form
   ======================================== */

.search-form {
	display: flex;
	gap: 8px;
}

.search-form .search-field {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-dark);
	background: var(--bg-cream);
	transition: all var(--transition-base);
}

.search-form .search-field:focus {
	border-color: var(--accent);
	outline: none;
	box-shadow: 0 0 0 3px var(--accent-glow);
	background: var(--bg-white);
}

.search-form .search-submit {
	padding: 12px 24px;
	background: var(--accent);
	color: var(--text-dark);
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition-base);
}

.search-form .search-submit:hover {
	background: var(--accent-dark);
}

/* ========================================
   Pagination
   ======================================== */

.pagination,
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 48px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-body);
	background: var(--bg-white);
	border: 1px solid var(--border);
	transition: all var(--transition-base);
}

.page-numbers:hover {
	background: var(--accent);
	color: var(--text-dark);
	border-color: var(--accent);
}

.page-numbers.current {
	background: var(--primary);
	color: var(--bg-white);
	border-color: var(--primary);
	font-weight: 700;
}

.page-numbers.dots {
	background: none;
	border: none;
	color: var(--text-muted);
}

/* ========================================
   Quantity Wrapper
   ======================================== */

.quantity-wrapper {
	display: flex;
	align-items: center;
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

.qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--bg-warm);
	border: none;
	cursor: pointer;
	color: var(--text-body);
	font-size: 1.1rem;
	transition: all var(--transition-base);
}

.qty-btn:hover {
	background: var(--accent);
	color: var(--text-dark);
}

.quantity-wrapper .qty {
	width: 56px;
	height: 40px;
	text-align: center;
	border: none;
	font-size: 0.95rem;
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--text-dark);
	background: var(--bg-white);
}

/* ========================================
   404 Page
   ======================================== */

.error-404 {
	padding: 80px 0;
	text-align: center;
}

.error-404 .page-title {
	font-family: var(--font-heading);
	font-size: 6rem;
	color: var(--accent);
	margin: 0 0 16px;
	line-height: 1;
}

.error-404 .page-content {
	max-width: 480px;
	margin: 0 auto;
}

.error-404 .page-content p {
	color: var(--text-muted);
	margin-bottom: 24px;
}

.error-404-widgets {
	margin-top: 40px;
	text-align: left;
}

/* ========================================
   Page Content
   ======================================== */

.page-content-section {
	padding: 80px 0;
}

.page-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	margin: 0 0 20px;
}

/* ========================================
   Scroll to Top
   ======================================== */

.scroll-to-top {
	position: fixed;
	bottom: 28px;
	right: 28px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary);
	color: var(--bg-white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all var(--transition-base);
	z-index: 900;
}

.scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background: var(--accent);
	color: var(--text-dark);
	box-shadow: var(--shadow-gold);
	transform: translateY(-2px);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 88px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--whatsapp);
	color: var(--bg-white);
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
	z-index: 900;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	transition: all 0.4s var(--ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.whatsapp-float.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
	color: var(--bg-white);
}

.whatsapp-float.pulse {
	animation: whatsapp-pulse 1s ease-out;
}

@keyframes whatsapp-pulse {
	0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
	50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.15); }
	100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
}

/* ========================================
   Tab Navigation
   ======================================== */

.tab-nav {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid var(--border);
	margin-bottom: 24px;
}

.tab-btn {
	padding: 12px 24px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--text-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: all var(--transition-base);
}

.tab-btn:hover {
	color: var(--text-dark);
}

.tab-btn.active {
	color: var(--accent);
	border-bottom-color: var(--accent);
	font-weight: 600;
}

/* ========================================
   Animations - Fade In on Scroll
   ======================================== */

.animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-on-scroll.animated,
.animate-on-scroll.is-animated {
	opacity: 1;
	transform: translateY(0);
}

/* ========================================
   WooCommerce Notices
   ======================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 16px 24px;
	border-radius: var(--radius-sm);
	font-size: 0.92rem;
	margin-bottom: 24px;
	border: none;
	line-height: 1.5;
}

.woocommerce-message {
	background: rgba(39, 174, 96, 0.08);
	color: var(--success);
	border-left: 4px solid var(--success);
}

.woocommerce-info {
	background: rgba(41, 128, 185, 0.08);
	color: var(--info);
	border-left: 4px solid var(--info);
}

.woocommerce-error {
	background: rgba(192, 57, 43, 0.08);
	color: var(--error);
	border-left: 4px solid var(--error);
	list-style: none;
	padding-left: 24px;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	display: none;
}

.woocommerce-message a,
.woocommerce-info a {
	font-weight: 600;
}

/* ========================================
   Utility Classes
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ========================================
   Mobile Header Fix
   ======================================== */
@media (max-width: 992px) {
	:root { --header-height: 56px; }

	.site-header { height: var(--header-height); }

	/* 2-column: branding left, actions right */
	.header-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		height: 100%;
	}

	.site-branding {
		flex: 1;
		min-width: 0;
		gap: 6px;
	}
	.site-branding-text { min-width: 0; }
	.site-title { font-size: 1rem; margin: 0; }
	.site-title a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		display: block;
	}
	.site-description { display: none !important; }
	.site-logo img { max-height: 30px; }

	/* Hide desktop nav — menu items go in dropdown */
	.main-navigation {
		display: none;
	}

	/* Actions: search + cart + hamburger all inline */
	.header-actions {
		display: flex;
		align-items: center;
		gap: 2px;
		flex-shrink: 0;
	}

	.header-cart,
	.header-search-toggle {
		width: 36px;
		height: 36px;
	}
	.header-cart svg { width: 18px; height: 18px; }
	.header-search-toggle svg { width: 18px; height: 18px; }
	.cart-count {
		font-size: 0.55rem;
		min-width: 14px;
		height: 14px;
		line-height: 14px;
		padding: 0 3px;
	}

	/* Hamburger — now inside header-actions */
	.menu-toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		padding: 0;
	}
	.hamburger-box { width: 18px; gap: 4px; }

	/* Mobile dropdown menu — absolute from header */
	.primary-menu-container {
		display: none;
		position: absolute;
		top: var(--header-height);
		left: 0;
		right: 0;
		background: var(--bg-white, #fff);
		box-shadow: 0 8px 24px rgba(0,0,0,0.1);
		padding: 8px 0;
		z-index: 999;
		border-top: 1px solid rgba(0,0,0,0.06);
	}
	.primary-menu-container.toggled { display: block; }
}
