/**
 * ExpertsPunch Theme — Main Stylesheet
 *
 * Reconstructed from HTML sample templates.
 * This file contains all visual styles for the theme's header, footer,
 * navigation, common page elements, and reusable components.
 *
 * NOTE: Page-level content sections (hero, about, services, portfolio, etc.)
 * are intended to be built with Elementor. These base styles are provided
 * as fallback for non-Elementor pages and as reference.
 *
 * @package ExpertsPunch
 * @since   1.0.0
 */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
	/* Colors */
	--ep-color-primary: #282828;
	--ep-color-secondary: #1e1e1e;
	--ep-color-accent: #D9361E;
	--ep-color-accent-hover: #B4260F;
	--ep-color-accent-light: rgba(217, 54, 30, 0.1);

	--ep-color-darker: #1a1a1a;
	--ep-color-dark: #282828;
	--ep-color-text: #555555;
	--ep-color-soft: #999999;
	--ep-color-muted: #bbbbbb;
	--ep-color-glossy: #e8e8e8;
	--ep-color-light: #f5f5f5;
	--ep-color-white: #ffffff;

	/* WhatsApp green */
	--ep-color-whatsapp: #25d366;
	--ep-color-whatsapp-hover: #1fb855;

	/* Typography */
	--ep-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ep-font-body: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Spacing */
	--ep-container-width: 1200px;
	--ep-section-padding: 80px 0;

	/* Borders & Radius */
	--ep-card-radius: 12px;
	--ep-btn-radius: 8px;

	/* Shadows */
	--ep-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
	--ep-shadow-md: 0 5px 25px rgba(0, 0, 0, 0.08);
	--ep-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
	--ep-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

	/* Transitions */
	--ep-transition: all 0.3s ease;
	--ep-transition-slow: all 0.5s ease;

	/* Header */
	--ep-header-height: 80px;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ep-font-heading);
	font-weight: 700;
	line-height: 1.3;
	color: var(--ep-color-darker);
	margin: 0 0 15px 0;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
	margin: 0 0 15px 0;
	color: var(--ep-color-text);
	line-height: 1.8;
}

a {
	color: var(--ep-color-accent);
	text-decoration: none;
	transition: var(--ep-transition);
}

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

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

/* ==========================================================================
   3. LAYOUT & CONTAINER
   ========================================================================== */

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

.section {
	padding: var(--ep-section-padding);
}

.section-gray {
	background-color: var(--ep-color-light);
}

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

.mb-40 {
	margin-bottom: 40px;
}

.mb-60 {
	margin-bottom: 60px;
}

.mt-60 {
	margin-top: 60px;
}

/* Grid System */
.grid {
	display: grid;
	gap: 30px;
}

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

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

/* ==========================================================================
   4. SECTION LABELS & TITLES
   ========================================================================== */

.section-label {
	display: inline-block;
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--ep-color-accent);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 15px;
}

.section-title span {
	color: var(--ep-color-accent);
}

.section-desc {
	max-width: 650px;
	margin: 0 auto 40px;
	font-size: 15px;
	color: var(--ep-color-text);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ep-font-heading);
	font-weight: 600;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--ep-btn-radius);
	cursor: pointer;
	transition: var(--ep-transition);
	white-space: nowrap;
}

.btn-sm {
	padding: 8px 20px;
	font-size: 13px;
}

.btn-lg {
	padding: 14px 32px;
	font-size: 15px;
}

.btn-primary {
	background-color: var(--ep-color-accent);
	color: var(--ep-color-white);
	border-color: var(--ep-color-accent);
}

.btn-primary:hover {
	background-color: var(--ep-color-accent-hover);
	border-color: var(--ep-color-accent-hover);
	color: var(--ep-color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(249, 76, 48, 0.35);
}

.btn-outline {
	background: transparent;
	color: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
}

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

.btn-whatsapp {
	background-color: var(--ep-color-whatsapp);
	color: var(--ep-color-white);
	border-color: var(--ep-color-whatsapp);
}

.btn-whatsapp:hover {
	background-color: var(--ep-color-whatsapp-hover);
	border-color: var(--ep-color-whatsapp-hover);
	color: var(--ep-color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
}

.btn-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 15px 0;
	transition: var(--ep-transition);
	background: transparent;
}

.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header.scrolled {
	background: var(--ep-color-darker);
	box-shadow: var(--ep-shadow-md);
	padding: 10px 0;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ep-font-heading);
	font-size: 24px;
	font-weight: 800;
	color: var(--ep-color-white);
	text-decoration: none;
	flex-shrink: 0;
}

.logo .custom-logo,
.logo .ep-logo-img {
	height: 42px;
	width: auto;
	object-fit: contain;
	transition: var(--ep-transition);
}

/* On the transparent header (front page top), invert the logo to white */
.header:not(.scrolled) .logo .ep-logo-img {
	filter: brightness(0) invert(1);
}

/* On scrolled / inner pages, show logo in original dark colors */
.header.scrolled .logo .ep-logo-img {
	filter: none;
}

.header.scrolled .logo .custom-logo {
	filter: brightness(0) invert(1);
}

.logo i {
	font-size: 28px;
	color: var(--ep-color-accent);
}

.logo span {
	color: var(--ep-color-accent);
}

/* Text logo fallback — shown when no image logo is uploaded */
.ep-text-logo {
	font-family: var(--ep-font-heading);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.5px;
	color: var(--ep-color-white);
	line-height: 1;
}
.ep-text-logo .ep-text-logo-accent {
	color: var(--ep-color-accent);
}
.header.scrolled .ep-text-logo {
	color: var(--ep-color-white);
}
.footer-logo .ep-text-logo {
	color: var(--ep-color-white);
	font-size: 20px;
}

.header.scrolled .logo {
	color: var(--ep-color-white);
}

/* Footer logo */
.footer-logo .ep-logo-img,
.footer-logo .custom-logo {
	height: 34px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Navigation Links */
.nav-links {
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-links > a,
.nav-dropdown > a {
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	padding: 8px 15px;
	position: relative;
	transition: var(--ep-transition);
	text-decoration: none;
}

.nav-links > a::after,
.nav-dropdown > a::after {
	content: '';
	position: absolute;
	bottom: 2px;
	left: 15px;
	right: 15px;
	height: 2px;
	background: var(--ep-color-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.nav-links > a:hover,
.nav-dropdown > a:hover {
	color: var(--ep-color-white);
}

.nav-links > a:hover::after,
.nav-dropdown > a:hover::after {
	transform: scaleX(1);
}

.nav-links > a.active {
	color: var(--ep-color-white);
}

.nav-links > a.active::after {
	transform: scaleX(1);
}

.header.scrolled .nav-links > a,
.header.scrolled .nav-dropdown > a {
	color: var(--ep-color-white);
}

.header.scrolled .nav-links > a:hover,
.header.scrolled .nav-dropdown > a:hover {
	color: var(--ep-color-accent);
}

.header.scrolled .nav-links > a:hover::after,
.header.scrolled .nav-dropdown > a:hover::after {
	transform: scaleX(1);
}

.header.scrolled .nav-links > a.active {
	color: var(--ep-color-accent);
}

.header.scrolled .nav-links > a.active::after {
	transform: scaleX(1);
}

/* Dropdown Menu */
.nav-dropdown {
	position: relative;
}

.nav-dropdown > a i {
	font-size: 10px;
	margin-left: 3px;
	transition: var(--ep-transition);
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-lg);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--ep-transition);
	z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu a {
	display: block;
	padding: 10px 20px;
	font-family: var(--ep-font-heading);
	font-size: 13px;
	font-weight: 500;
	color: var(--ep-color-text);
	text-decoration: none;
	transition: var(--ep-transition);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
	color: var(--ep-color-accent);
	background: var(--ep-color-accent-light);
	padding-left: 25px;
}

/* Header Right */
.header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header-social {
	display: flex;
	gap: 8px;
}

.header-social a {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: var(--ep-color-white);
	font-size: 13px;
	transition: var(--ep-transition);
	text-decoration: none;
}

.header-social a:hover {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
}

.header.scrolled .header-social a {
	background: var(--ep-color-light);
	color: var(--ep-color-text);
}

.header.scrolled .header-social a:hover {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
}

.header-cta-btn {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px !important;
}

/* Header icon buttons (account + cart) */
.ep-header-icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: var(--ep-color-white);
	font-size: 15px;
	text-decoration: none;
	transition: var(--ep-transition);
	flex-shrink: 0;
}
.ep-header-icon-btn:hover {
	background: var(--ep-color-accent);
	color: #fff;
}
.header.scrolled .ep-header-icon-btn {
	background: var(--ep-color-light);
	color: var(--ep-color-text);
}
.header.scrolled .ep-header-icon-btn:hover {
	background: var(--ep-color-accent);
	color: #fff;
}
.ep-cart-count {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--ep-color-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	line-height: 1;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.2s, transform 0.2s;
}
.ep-cart-count--has-items {
	opacity: 1;
	transform: scale(1);
}

/* Mobile Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--ep-color-white);
	font-size: 22px;
	cursor: pointer;
	padding: 5px;
}

.header.scrolled .menu-toggle {
	color: var(--ep-color-white);
}

/* Mobile Overlay */
.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: var(--ep-transition);
}

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

/* ==========================================================================
   7. PAGE BANNER (Inner Pages)
   ========================================================================== */

.page-banner {
	position: relative;
	padding: 160px 0 80px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
}

.page-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(15, 15, 35, 0.92) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.page-banner-default {
	background: linear-gradient(135deg, var(--ep-color-primary) 0%, var(--ep-color-secondary) 100%);
	padding: 140px 0 60px;
}

.page-banner-default::before {
	display: none;
}

.page-banner-content {
	position: relative;
	z-index: 2;
}

.page-banner-content h1 {
	font-size: 44px;
	font-weight: 800;
	color: var(--ep-color-white);
	margin-bottom: 15px;
}

.page-banner-content h1 span {
	color: var(--ep-color-accent);
}

/* Breadcrumb */
.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--ep-transition);
}

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

.breadcrumb i {
	font-size: 10px;
	color: var(--ep-color-accent);
}

.breadcrumb span {
	color: var(--ep-color-accent);
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(15, 15, 35, 0.92) 0%, rgba(26, 26, 46, 0.80) 100%);
}

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

.hero-content {
	max-width: 750px;
	padding: 100px 0 60px;
}

.hero-content .section-label {
	color: var(--ep-color-accent);
}

.hero-content h1 {
	font-size: 52px;
	font-weight: 900;
	color: var(--ep-color-white);
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero-content h1 span {
	color: var(--ep-color-accent);
}

.hero-content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
	line-height: 1.8;
}

.hero-stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
	font-size: 28px;
	font-weight: 800;
	color: var(--ep-color-accent);
	margin-bottom: 2px;
}

.hero-stat p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */

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

.about-images {
	position: relative;
}

.about-img-main {
	width: 100%;
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-lg);
}

.about-img-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	padding: 25px 30px;
	border-radius: var(--ep-card-radius);
	text-align: center;
	box-shadow: var(--ep-shadow-lg);
}

.about-img-badge h3 {
	font-size: 32px;
	font-weight: 800;
	color: var(--ep-color-white);
	margin-bottom: 0;
}

.about-img-badge p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.4;
}

.about-text h2 {
	font-size: 34px;
	font-weight: 800;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 25px 0;
}

.about-feature {
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 500;
	color: var(--ep-color-darker);
	display: flex;
	align-items: center;
	gap: 8px;
}

.about-feature i {
	color: var(--ep-color-accent);
	font-size: 16px;
}

/* ==========================================================================
   10. SERVICE CARDS
   ========================================================================== */

.service-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
	border: 1px solid transparent;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--ep-shadow-lg);
	border-color: var(--ep-color-accent);
}

.service-icon {
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ep-color-accent-light);
	margin: 0 auto 20px;
	font-size: 28px;
	color: var(--ep-color-accent);
	transition: var(--ep-transition);
}

.service-card:hover .service-icon {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
}

.service-card h5 {
	font-weight: 700;
	margin-bottom: 12px;
}

.service-card p {
	font-size: 14px;
	margin-bottom: 20px;
}

/* ==========================================================================
   11. SERVICE DETAIL PAGES
   ========================================================================== */

.service-detail {
	padding: 80px 0;
}

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

.service-intro-img {
	width: 100%;
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-lg);
}

.service-intro-text h2 {
	font-size: 34px;
	font-weight: 800;
}

.service-categories {
	padding: 80px 0;
}

/* Category Cards */
.category-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

.category-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ep-shadow-lg);
}

.category-card-img {
	overflow: hidden;
	height: 220px;
}

.category-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ep-transition-slow);
}

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

.category-card-body {
	padding: 25px;
}

.category-card-body h5 {
	font-weight: 700;
	margin-bottom: 10px;
}

.category-card-body p {
	font-size: 14px;
	margin-bottom: 15px;
}

/* ==========================================================================
   11b. INDUSTRY CARDS — ep_industries_served shortcode
   ========================================================================== */

.ep-industries-section {
	background: var(--ep-color-primary);
}

.ep-industry-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 3px solid transparent;
	border-radius: var(--ep-card-radius);
	padding: 30px 22px;
	text-align: center;
	transition: var(--ep-transition);
}

.ep-industry-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-bottom-color: var(--ep-color-accent);
	transform: translateY(-5px);
}

.ep-industry-icon {
	width: 68px;
	height: 68px;
	background: rgba(249, 76, 48, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 26px;
	color: var(--ep-color-accent);
	transition: var(--ep-transition);
}

.ep-industry-card:hover .ep-industry-icon {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
}

.ep-industry-card h5 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--ep-color-white);
}

.ep-industry-card p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 18px;
	line-height: 1.6;
}

.ep-industry-card .ep-industry-btns {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.ep-industry-card .btn-wa-sm {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--ep-color-whatsapp);
	color: var(--ep-color-white);
	padding: 7px 14px;
	border-radius: var(--ep-btn-radius);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--ep-transition);
}

.ep-industry-card .btn-wa-sm:hover {
	background: var(--ep-color-whatsapp-hover);
	color: var(--ep-color-white);
}

/* Category card dual CTAs */
.category-card-body .ep-card-btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.category-card-body .ep-card-btns .btn-wa-sm {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--ep-color-whatsapp);
	color: var(--ep-color-white);
	padding: 7px 14px;
	border-radius: var(--ep-btn-radius);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--ep-transition);
}

.category-card-body .ep-card-btns .btn-wa-sm:hover {
	background: var(--ep-color-whatsapp-hover);
	color: var(--ep-color-white);
}

/* Industries section heading override for dark bg */
.ep-industries-section .section-label {
	color: var(--ep-color-accent);
}

.ep-industries-section .section-title,
.ep-industries-section .section-desc {
	color: var(--ep-color-white);
}

.ep-industries-section .section-title span {
	color: var(--ep-color-accent);
}

/* ==========================================================================
   12. PROCESS STEPS
   ========================================================================== */

.process-section {
	padding: 80px 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.process-step {
	text-align: center;
	padding: 30px 20px;
	position: relative;
}

.process-number {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	font-family: var(--ep-font-heading);
	font-size: 22px;
	font-weight: 800;
	margin: 0 auto 20px;
}

.process-step h5 {
	font-weight: 700;
	margin-bottom: 10px;
}

.process-step p {
	font-size: 14px;
}

/* ==========================================================================
   12a. SERVICES LANDING PAGE  (ep-service-tile*, ep-stats-bar, ep-why-best, ep-service-ctas)
   ========================================================================== */

/* ── Service Intro Tiles ── */
.ep-service-tiles-section { padding: var(--ep-section-padding); }

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

.ep-service-tile {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 40px 32px;
	text-decoration: none;
	border: 2px solid transparent;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ep-service-tile::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--ep-color-glossy);
	transition: var(--ep-transition);
}

.ep-service-tile:hover {
	transform: translateY(-8px);
	box-shadow: var(--ep-shadow-lg);
	border-color: var(--ep-color-accent);
}

.ep-service-tile:hover::before { background: var(--ep-color-accent); }

.ep-service-tile--featured {
	background: var(--ep-color-dark);
	border-color: var(--ep-color-accent);
}

.ep-service-tile--featured::before { background: var(--ep-color-accent); }

.ep-service-tile--featured h4,
.ep-service-tile--featured p,
.ep-service-tile--featured li,
.ep-service-tile--featured .ep-service-tile-cta { color: var(--ep-color-white); }

.ep-service-tile-badge {
	position: absolute;
	top: 18px; right: 18px;
	background: var(--ep-color-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 50px;
}

.ep-service-tile-icon {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: var(--ep-color-accent-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--ep-color-accent);
	margin-bottom: 4px;
}

.ep-service-tile--featured .ep-service-tile-icon {
	background: rgba(249,76,48,0.2);
}

.ep-service-tile h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--ep-color-dark);
	margin: 0;
}

.ep-service-tile p {
	font-size: 14px;
	color: var(--ep-color-text);
	margin: 0;
	line-height: 1.6;
}

.ep-service-tile ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ep-service-tile li {
	font-size: 13px;
	color: var(--ep-color-text);
	display: flex;
	align-items: center;
	gap: 8px;
}

.ep-service-tile li i {
	color: var(--ep-color-accent);
	font-size: 11px;
}

.ep-service-tile-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ep-font-heading);
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-color-accent);
	margin-top: auto;
}

/* ── Services Landing: Why Best & CTAs (uses ep-detail-row from 12b) ── */
.ep-services-landing .ep-detail-row { margin-bottom: 80px; }
.ep-services-landing .ep-detail-row:last-child { margin-bottom: 0; }

.ep-why-best {
	margin: 28px 0 24px;
	padding: 20px 24px;
	background: var(--ep-color-light);
	border-left: 4px solid var(--ep-color-accent);
	border-radius: 0 var(--ep-btn-radius) var(--ep-btn-radius) 0;
}

.ep-why-best h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--ep-color-accent);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.ep-service-ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.ep-service-ctas .btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: var(--ep-btn-radius);
	text-decoration: none;
	transition: var(--ep-transition);
}

.ep-service-ctas .btn i {
	font-size: 13px;
}

/* ── Stats Bar ── */
.ep-stats-bar {
	padding: 48px 0;
}

.ep-stats-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.ep-stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.ep-stat-num {
	font-family: var(--ep-font-heading);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 900;
	color: var(--ep-color-dark);
	line-height: 1;
}

.ep-stat-plus {
	font-size: 0.6em;
	color: var(--ep-color-accent);
	font-weight: 700;
}

.ep-stat-label {
	font-size: 13px;
	color: var(--ep-color-soft);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.ep-stat-divider {
	width: 1px;
	height: 50px;
	background: var(--ep-color-glossy);
	flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.ep-service-tiles { grid-template-columns: 1fr; }
	.ep-stats-wrap { flex-wrap: wrap; justify-content: center; gap: 24px; }
	.ep-stat-divider { display: none; }
}

@media (max-width: 768px) {
	.ep-service-tiles { grid-template-columns: repeat(2, 1fr); }
	.ep-services-landing .ep-detail-row { margin-bottom: 50px; }
}

@media (max-width: 500px) {
	.ep-service-tiles { grid-template-columns: 1fr; }
	.ep-service-ctas { flex-direction: column; }
	.ep-service-ctas .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   12b. SERVICE DETAILS (Alternating Rows)
   ========================================================================== */

.ep-service-details {
	padding: 80px 0;
}

.ep-detail-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.ep-detail-row:last-child {
	margin-bottom: 0;
}

.ep-detail-reversed {
	direction: rtl;
}

.ep-detail-reversed > * {
	direction: ltr;
}

.ep-detail-image img {
	width: 100%;
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-lg);
	transition: var(--ep-transition);
}

.ep-detail-image img:hover {
	transform: scale(1.02);
	box-shadow: var(--ep-shadow-xl);
}

.ep-detail-content h3 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 18px;
	color: var(--ep-color-darker);
}

.ep-detail-content p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--ep-color-text);
	margin-bottom: 15px;
}

.ep-detail-features {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.ep-detail-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 500;
	color: var(--ep-color-darker);
	line-height: 1.5;
}

.ep-detail-features li i {
	color: var(--ep-color-accent);
	font-size: 16px;
	margin-top: 2px;
	flex-shrink: 0;
}

/* ==========================================================================
   12c. PROCESS STEPS — Horizontal connector lines
   ========================================================================== */

.process-step::after {
	content: '';
	position: absolute;
	top: 32px;
	right: -15px;
	width: 30px;
	height: 2px;
	background: var(--ep-color-glossy);
}

.process-step:last-child::after {
	display: none;
}

.process-step {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

.process-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--ep-shadow-md);
}

/* ==========================================================================
   13. PORTFOLIO
   ========================================================================== */

.portfolio-filters {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.portfolio-filter {
	font-family: var(--ep-font-heading);
	font-size: 13px;
	font-weight: 600;
	padding: 10px 24px;
	border: 2px solid var(--ep-color-glossy);
	border-radius: 50px;
	background: transparent;
	color: var(--ep-color-text);
	cursor: pointer;
	transition: var(--ep-transition);
}

.portfolio-filter:hover,
.portfolio-filter.active {
	background: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: var(--ep-color-white);
}

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

.portfolio-item {
	position: relative;
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	cursor: pointer;
	height: 280px;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ep-transition-slow);
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 25px;
	background: linear-gradient(transparent, rgba(15, 15, 35, 0.9));
	transform: translateY(100%);
	transition: var(--ep-transition);
}

.portfolio-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-overlay h5 {
	color: var(--ep-color-white);
	margin-bottom: 3px;
}

.portfolio-overlay span {
	color: var(--ep-color-accent);
	font-size: 13px;
	font-weight: 500;
}

/* ── Combined comparison cards (before+after in one image, spans 2 cols) ──── */
.portfolio-item--combined {
	grid-column: span 2;
	height: 320px;
	background: var(--ep-color-primary, #1a1a1a);
}
.portfolio-item--combined img {
	object-fit: contain;
	padding: 16px;
	background: transparent;
}
.portfolio-item--combined:hover img {
	transform: scale(1.04);
}

/* ── Before / After Slider ────────────────────────────────────────────────── */

.ep-ba-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: ew-resize;
	user-select: none;
	-webkit-user-select: none;
}

/* Both after and before layers fill the entire card at identical size */
.ep-ba-after,
.ep-ba-before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ep-ba-after img,
.ep-ba-before img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	transition: none;
	transform: none !important;
}

/*
 * The before layer uses clip-path to reveal only the LEFT portion.
 * JS updates the right inset: clip-path: inset(0 X% 0 0)
 * where X = (100 - handle_percent).
 * Starting at 50% → right half hidden.
 */
.ep-ba-before {
	clip-path: inset(0 50% 0 0);
}

/* Vertical divider line */
.ep-ba-line {
	position: absolute;
	top: 0;
	left: 50%;        /* JS updates this */
	width: 3px;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 10;
}

/* Draggable circle handle */
.ep-ba-circle {
	position: absolute;
	top: 50%;
	left: 50%;        /* JS updates this */
	width: 42px;
	height: 42px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 11;
}

.ep-ba-circle svg {
	width: 20px;
	height: 20px;
	fill: var(--ep-color-primary);
	flex-shrink: 0;
}

/* Before / After labels */
.ep-ba-label {
	position: absolute;
	top: 10px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding: 3px 7px;
	border-radius: 3px;
	pointer-events: none;
	z-index: 12;
}

.ep-ba-label-before { left: 8px; }
.ep-ba-label-after  { right: 8px; }

/* Stop the generic hover scale from firing on slider images */
.portfolio-item:hover .ep-ba-slider img {
	transform: none !important;
}

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */

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

.testimonial-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 35px 30px;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
	border: 1px solid transparent;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ep-shadow-md);
	border-color: var(--ep-color-accent);
}

.testimonial-quote {
	font-size: 50px;
	font-weight: 700;
	color: var(--ep-color-accent);
	line-height: 1;
	margin-bottom: 5px;
	font-family: Georgia, serif;
}

.testimonial-stars {
	margin-bottom: 15px;
}

.testimonial-stars i {
	color: #ffc107;
	font-size: 14px;
}

.testimonial-card > p {
	font-size: 14px;
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-avatar-initial {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
	flex-shrink: 0;
}

.testimonial-author h6 {
	margin-bottom: 2px;
	font-weight: 600;
}

.testimonial-author span {
	font-size: 12px;
	color: var(--ep-color-soft);
}

/* ==========================================================================
   15. PRICING CARDS
   ========================================================================== */

.pricing-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 40px 30px;
	text-align: center;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
	border: 2px solid transparent;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--ep-shadow-lg);
}

.pricing-card.featured {
	border-color: var(--ep-color-accent);
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	font-family: var(--ep-font-heading);
	font-size: 12px;
	font-weight: 600;
	padding: 5px 20px;
	border-radius: 50px;
	white-space: nowrap;
}

.pricing-icon {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--ep-color-accent-light);
	margin: 0 auto 15px;
	font-size: 24px;
	color: var(--ep-color-accent);
}

.pricing-card h5 {
	font-weight: 700;
	margin-bottom: 5px;
}

.price {
	font-family: var(--ep-font-heading);
	font-size: 48px;
	font-weight: 800;
	color: var(--ep-color-darker);
	margin: 20px 0;
}

.price sup {
	font-size: 22px;
	position: relative;
	top: -15px;
}

.price small {
	font-size: 14px;
	font-weight: 500;
	color: var(--ep-color-soft);
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	text-align: left;
}

.pricing-features li {
	padding: 8px 0;
	border-bottom: 1px solid var(--ep-color-glossy);
	font-size: 14px;
	color: var(--ep-color-text);
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-features li i {
	font-size: 13px;
}

.pricing-features li .fa-check {
	color: var(--ep-color-accent);
}

.pricing-features li.disabled {
	color: var(--ep-color-muted);
}

.pricing-features li.disabled .fa-times {
	color: var(--ep-color-muted);
}

.ep-pricing-cta-btn {
	width: 100%;
	justify-content: center;
	margin-top: 8px;
	font-size: 15px;
	letter-spacing: 0.3px;
}

.pricing-card.featured .ep-pricing-cta-btn.btn-primary {
	box-shadow: 0 4px 18px rgba(249, 76, 48, 0.30);
}

.ep-pricing-cta-btn.btn-outline {
	color: var(--ep-color-darker);
	border-color: var(--ep-color-border);
}

.ep-pricing-cta-btn.btn-outline:hover {
	background-color: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: var(--ep-color-white);
	box-shadow: 0 4px 18px rgba(249, 76, 48, 0.25);
}

/* ==========================================================================
   15b. PRICING TABS (Pricing Page)
   ========================================================================== */

.ep-pricing-tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.ep-pricing-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 600;
	padding: 14px 28px;
	border: 2px solid var(--ep-color-glossy);
	border-radius: 50px;
	background: transparent;
	color: var(--ep-color-text);
	cursor: pointer;
	transition: var(--ep-transition);
}

.ep-pricing-tab:hover {
	border-color: var(--ep-color-accent);
	color: var(--ep-color-accent);
}

.ep-pricing-tab.active {
	background: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: var(--ep-color-white);
}

.ep-pricing-tab i {
	font-size: 16px;
}

.ep-pricing-panel {
	display: none;
}

.ep-pricing-panel.active {
	display: block;
	animation: epFadeIn 0.4s ease;
}

.ep-pricing-panel .section {
	padding: 0;
}

@keyframes epFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   16. PRODUCT / SHOP CARDS
   ========================================================================== */

.shop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.product-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ep-shadow-lg);
}

.product-img {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ep-transition-slow);
}

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

.product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	font-family: var(--ep-font-heading);
	font-size: 11px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 50px;
}

.product-body {
	padding: 20px;
}

.product-category {
	font-size: 12px;
	color: var(--ep-color-accent);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.product-body h5 {
	font-weight: 700;
	margin: 6px 0 10px;
}

.product-price {
	font-family: var(--ep-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--ep-color-darker);
	display: block;
	margin-bottom: 15px;
}

.product-price small {
	font-size: 14px;
	color: var(--ep-color-soft);
	text-decoration: line-through;
	font-weight: 400;
}

.product-actions {
	display: flex;
	gap: 8px;
}

/* ==========================================================================
   16b. ENHANCED SHOP (Shop Page — custom product cards)
   ========================================================================== */

/* Shop Feature Highlights */
.ep-shop-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.ep-shop-feature {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

.ep-shop-feature:hover {
	transform: translateY(-3px);
	box-shadow: var(--ep-shadow-md);
}

.ep-shop-feature-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--ep-color-accent-light);
	color: var(--ep-color-accent);
	font-size: 20px;
}

.ep-shop-feature h6 {
	margin-bottom: 3px;
	font-weight: 600;
	font-size: 14px;
}

.ep-shop-feature p {
	font-size: 12px;
	color: var(--ep-color-soft);
	margin: 0;
	line-height: 1.4;
}

/* Shop Product Grid */
.ep-shop-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.ep-product-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
	display: flex;
	flex-direction: column;
}

.ep-product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ep-shadow-lg);
}

/* Product Image */
.ep-product-img {
	position: relative;
	height: 230px;
	overflow: hidden;
}

.ep-product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ep-transition-slow);
}

.ep-product-card:hover .ep-product-img img,
.ep-product-card:hover .ep-card-slide img {
	transform: scale(1.12);
}

/* Badge */
.ep-product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	font-family: var(--ep-font-heading);
	font-size: 11px;
	font-weight: 600;
	padding: 4px 14px;
	border-radius: 50px;
	z-index: 2;
}

/* Discount badge */
.ep-product-discount {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--ep-color-darker);
	color: var(--ep-color-white);
	font-family: var(--ep-font-heading);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 50px;
	z-index: 2;
}

/* Hover overlay with quick-action icons */

/* Product Body */
.ep-product-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ep-product-cat {
	font-size: 11px;
	color: var(--ep-color-accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ep-product-title {
	font-weight: 700;
	margin: 6px 0 8px;
	font-size: 16px;
	line-height: 1.4;
}

.ep-product-desc {
	font-size: 13px;
	color: var(--ep-color-soft);
	line-height: 1.6;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Star ratings */
.ep-product-rating {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-bottom: 12px;
}

.ep-product-rating i {
	font-size: 12px;
	color: #ffc107;
}

.ep-product-rating .far.fa-star {
	color: var(--ep-color-glossy);
}

.ep-product-review-count {
	font-size: 12px;
	color: var(--ep-color-soft);
	margin-left: 6px;
}

/* Price row */
.ep-product-price-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 15px;
	margin-top: auto;
}

.ep-product-price {
	font-family: var(--ep-font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--ep-color-darker);
}

.ep-product-old-price {
	font-size: 14px;
	color: var(--ep-color-muted);
	text-decoration: line-through;
	font-weight: 400;
}

/* Action buttons */
.ep-product-actions {
	display: flex;
	gap: 8px;
}

.ep-product-actions .btn {
	flex: 1;
	font-size: 12px;
	padding: 10px 10px;
}

/* Product title link — inherits card heading colour, no underline */
.ep-product-title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--ep-transition);
}
.ep-product-title a:hover {
	color: var(--ep-color-accent);
}

/* Image link — no border/outline artefacts */
.ep-product-img-link {
	display: block;
	width: 100%;
	height: 100%;
}

/* Featured badge variant — use primary colour instead of accent */
.ep-product-badge--featured {
	background: var(--ep-color-primary);
}
.ep-product-badge--sale {
	background: var(--ep-color-accent);
}

/* ==========================================================================
   16b. SHOP FILTER SYSTEM (Two-Axis: Type × Style)
   ========================================================================== */

.ep-filter-system {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 50px;
	align-items: center;
}

/* ── Row 1: Product Type buttons ── */
.ep-type-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.ep-type-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 22px;
	border: 2px solid var(--ep-color-glossy);
	border-radius: 50px;
	background: var(--ep-color-white);
	color: var(--ep-color-soft);
	font-family: var(--ep-font-heading);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--ep-transition);
	white-space: nowrap;
}

.ep-type-btn i {
	font-size: 13px;
}

.ep-type-btn:hover {
	border-color: var(--ep-color-accent);
	color: var(--ep-color-accent);
	background: var(--ep-color-accent-light);
}

.ep-type-btn.active {
	background: var(--ep-color-dark);
	border-color: var(--ep-color-dark);
	color: var(--ep-color-white);
	box-shadow: var(--ep-shadow-sm);
}

/* ── Divider between rows ── */
.ep-filter-system::after {
	content: '';
	display: none;
}

/* ── Row 2: Style / Category pills ── */
.ep-cat-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	padding: 14px 24px;
	background: var(--ep-color-light);
	border-radius: 50px;
}

.ep-cat-btn {
	padding: 7px 18px;
	border: 1.5px solid transparent;
	border-radius: 50px;
	background: transparent;
	color: var(--ep-color-text);
	font-family: var(--ep-font-heading);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--ep-transition);
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ep-cat-btn:hover {
	color: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	background: var(--ep-color-white);
}

.ep-cat-btn.active {
	background: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: var(--ep-color-white);
}

/* ── Product type tag on card ── */
.ep-product-cat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	margin-bottom: 4px;
}

.ep-product-type-tag {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: 4px;
	flex-shrink: 0;
}

.ep-product-type-tag--embroidery-designs {
	background: rgba(249, 76, 48, 0.1);
	color: var(--ep-color-accent);
}

.ep-product-type-tag--print-designs {
	background: rgba(40, 40, 40, 0.1);
	color: var(--ep-color-dark);
}

/* ==========================================================================
   Product Card — Image Slider
   ========================================================================== */

/* Slider wrapper — fills the .ep-product-img area */
.ep-card-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: var(--ep-card-radius) var(--ep-card-radius) 0 0;
}

/* Slides track — flex row, no-wrap, transitions on transform */
.ep-card-slides-wrap {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* Individual slide */
.ep-card-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
}

.ep-card-slide a,
.ep-card-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Prev / Next buttons */
.ep-slide-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ep-color-dark);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	opacity: 0;
	transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	padding: 0;
	line-height: 1;
}

.ep-slide-prev { left: 8px; }
.ep-slide-next { right: 8px; }

/* Show buttons on card hover */
.ep-product-card:hover .ep-slide-btn {
	opacity: 1;
}

.ep-slide-btn:hover {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	transform: translateY(-50%) scale(1.1);
}

.ep-slide-btn:focus-visible {
	outline: 2px solid var(--ep-color-accent);
	outline-offset: 2px;
}

/* Dot indicators */
.ep-slide-dots {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 5px;
	z-index: 10;
}

.ep-slide-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	display: block;
}

.ep-slide-dot.active {
	background: var(--ep-color-white);
	transform: scale(1.3);
}

/* On mobile — always show buttons (no hover available) */
@media (max-width: 768px) {
	.ep-slide-btn {
		opacity: 1;
		width: 26px;
		height: 26px;
		font-size: 10px;
	}
}

/* ── No-results message ── */
.ep-no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: var(--ep-color-soft);
	font-size: 16px;
}

/* ── Shop Pagination ── */
.ep-shop-pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 36px 0 10px;
	flex-wrap: wrap;
}
.ep-pager-btn {
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1.5px solid var(--ep-color-border, #e0e0e0);
	background: var(--ep-color-white);
	color: var(--ep-color-primary);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
}
.ep-pager-btn:hover:not(:disabled) {
	background: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: #fff;
}
.ep-pager-btn.active {
	background: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: #fff;
}
.ep-pager-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.ep-pager-ellipsis {
	color: var(--ep-color-soft);
	font-size: 16px;
	padding: 0 4px;
	line-height: 40px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.ep-type-filters { gap: 8px; }
	.ep-type-btn { padding: 9px 16px; font-size: 12px; }
	.ep-cat-filters { padding: 10px 14px; gap: 6px; border-radius: 16px; }
	.ep-cat-btn { padding: 6px 12px; font-size: 11px; }
}

/* ==========================================================================
   17. CONTACT SECTION
   ========================================================================== */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

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

.contact-info-card {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 20px;
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

.contact-info-card:hover {
	transform: translateX(5px);
	box-shadow: var(--ep-shadow-md);
}

.contact-info-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--ep-color-accent-light);
	color: var(--ep-color-accent);
	font-size: 18px;
}

.contact-info-card h6 {
	margin-bottom: 5px;
	font-weight: 600;
}

.contact-info-card p {
	font-size: 14px;
	margin: 0;
	color: var(--ep-color-text);
}

/* Live Chat inline button inside contact cards */
.ep-inline-chat-btn {
	background: none;
	border: none;
	padding: 0;
	font-size: 14px;
	color: var(--ep-color-accent);
	cursor: pointer;
	font-family: inherit;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.2s;
}
.ep-inline-chat-btn:hover {
	color: var(--ep-color-primary);
}
.ep-chat-card {
	border-color: var(--ep-color-accent) !important;
}
.ep-chat-card .contact-info-icon {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
}

/* Contact Form */
.contact-form {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 35px;
	box-shadow: var(--ep-shadow-md);
}

.contact-form h4 {
	margin-bottom: 25px;
	font-weight: 700;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 15px;
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	font-family: var(--ep-font-heading);
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-color-darker);
	margin-bottom: 6px;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	font-family: var(--ep-font-body);
	font-size: 14px;
	color: var(--ep-color-darker);
	background: var(--ep-color-light);
	border: 2px solid transparent;
	border-radius: var(--ep-btn-radius);
	transition: var(--ep-transition);
	outline: none;
}

.form-control:focus {
	border-color: var(--ep-color-accent);
	background: var(--ep-color-white);
	box-shadow: 0 0 0 4px rgba(249, 76, 48, 0.1);
}

textarea.form-control {
	resize: vertical;
	min-height: 100px;
}

select.form-control {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	padding-right: 35px;
}

/* File attachment dropzone */
.ep-file-attach-wrap {
	margin-top: 0;
}

.ep-file-dropzone {
	position: relative;
	border: 2px dashed var(--ep-color-glossy);
	border-radius: 10px;
	background: var(--ep-color-light);
	padding: 24px;
	text-align: center;
	cursor: pointer;
	transition: var(--ep-transition);
}

.ep-file-dropzone:hover,
.ep-file-dropzone.drag-over {
	border-color: var(--ep-color-accent);
	background: var(--ep-color-accent-light);
}

.ep-file-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.ep-file-dropzone-inner {
	pointer-events: none;
}

.ep-file-dropzone-inner i {
	font-size: 36px;
	color: var(--ep-color-accent);
	margin-bottom: 10px;
	display: block;
}

.ep-file-dropzone-text {
	font-weight: 500;
	color: var(--ep-color-darker);
	margin: 0 0 6px;
}

.ep-file-dropzone-hint {
	font-size: 12px;
	color: var(--ep-color-soft);
	margin: 0;
}

.ep-file-preview {
	margin-top: 12px;
	min-height: 24px;
	font-size: 13px;
	color: var(--ep-color-accent);
}

.ep-file-preview .ep-file-preview-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ep-file-preview .ep-file-remove {
	background: none;
	border: none;
	color: var(--ep-color-accent);
	cursor: pointer;
	font-size: 14px;
	padding: 0 4px;
}

.ep-file-preview .ep-file-remove:hover {
	color: var(--ep-color-accent-hover);
}

.ep-file-dropzone.error {
	border-color: #dc3545;
	background: rgba(220, 53, 69, 0.08);
}

/* ==========================================================================
   18. QUOTE SECTION
   ========================================================================== */

.quote-section {
	background: linear-gradient(135deg, var(--ep-color-primary) 0%, var(--ep-color-secondary) 100%);
}

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

.quote-text h2 {
	color: var(--ep-color-white);
	font-size: 34px;
	font-weight: 800;
}

.quote-text p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
}

.quote-benefits {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 25px 0;
}

.quote-benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.85);
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 500;
}

.quote-benefit i {
	color: var(--ep-color-accent);
}

.quote-form {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 35px;
	box-shadow: var(--ep-shadow-xl);
}

.quote-form h4 {
	margin-bottom: 25px;
	font-weight: 700;
}

/* ==========================================================================
   19. CTA BANNER
   ========================================================================== */

.cta-banner {
	background: linear-gradient(135deg, var(--ep-color-primary) 0%, var(--ep-color-secondary) 100%);
	padding: 70px 0;
	text-align: center;
}

.cta-banner h2 {
	color: var(--ep-color-white);
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 15px;
}

.cta-banner p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	max-width: 600px;
	margin: 0 auto 30px;
}

.cta-banner .btn-group {
	justify-content: center;
}

/* ==========================================================================
   20. FAQ SECTION
   ========================================================================== */

.faq-item {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 25px 30px;
	margin-bottom: 15px;
	box-shadow: var(--ep-shadow-sm);
	cursor: pointer;
	transition: var(--ep-transition);
}

.faq-item:hover {
	box-shadow: var(--ep-shadow-md);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question h6 {
	margin: 0;
	font-size: 16px;
	color: var(--ep-color-darker);
}

.faq-toggle i {
	color: var(--ep-color-accent);
	font-size: 14px;
	transition: var(--ep-transition);
}

.faq-answer {
	display: none;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid var(--ep-color-glossy);
	color: var(--ep-color-text);
	font-size: 14px;
	line-height: 1.8;
}

.faq-item.open .faq-answer {
	display: block;
}

/* ==========================================================================
   21. FOOTER
   ========================================================================== */

.footer {
	background: var(--ep-color-darker);
	padding: 50px 0 0;
	color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 30px;
	padding-bottom: 35px;
}

.footer-about .logo {
	margin-bottom: 12px;
}

.footer-about p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.7;
	margin: 0;
}

.footer-social {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.footer-social a {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	transition: var(--ep-transition);
	text-decoration: none;
}

.footer-social a:hover {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
}

.footer-col h6 {
	color: var(--ep-color-white);
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 14px;
}

.footer-sub-heading {
	margin-top: 18px;
}

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

.footer-links li {
	margin-bottom: 7px;
}

.footer-links li a,
.footer-links a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	text-decoration: none;
	transition: var(--ep-transition);
}

.footer-links li a:hover,
.footer-links a:hover {
	color: var(--ep-color-accent);
	padding-left: 5px;
}

/* WordPress menu classes in footer */
.footer-links .menu-item a {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	text-decoration: none;
	transition: var(--ep-transition);
}

.footer-links .menu-item a:hover {
	color: var(--ep-color-accent);
	padding-left: 5px;
}

.footer-contact-tagline {
	color: var(--ep-color-soft);
	font-size: 13px;
	margin-bottom: 10px;
}

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

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-contact li a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: var(--ep-transition);
}

.footer-contact li a:hover {
	color: var(--ep-color-accent);
}

.footer-contact li i {
	color: var(--ep-color-accent);
	font-size: 13px;
	margin-top: 2px;
	min-width: 14px;
}

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

.footer-bottom p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.footer-bottom a {
	color: var(--ep-color-accent);
	text-decoration: none;
}

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

/* ==========================================================================
   22. SCROLL TO TOP
   ========================================================================== */

.scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
	border: none;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--ep-transition);
	z-index: 998;
	box-shadow: var(--ep-shadow-md);
}

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

.scroll-top:hover {
	background: var(--ep-color-accent-hover);
	transform: translateY(-3px);
}

/* ==========================================================================
   23. WHATSAPP FLOATING WIDGET
   ========================================================================== */

.wa-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 999;
}

.wa-btn {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ep-color-whatsapp);
	color: var(--ep-color-white);
	border-radius: 50%;
	font-size: 26px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	transition: var(--ep-transition);
	animation: wa-pulse 2s infinite;
}

.wa-btn:hover {
	background: var(--ep-color-whatsapp-hover);
	transform: scale(1.1);
	color: var(--ep-color-white);
}

@keyframes wa-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-bubble {
	position: absolute;
	bottom: 65px;
	left: 0;
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 12px 18px;
	box-shadow: var(--ep-shadow-lg);
	font-size: 13px;
	color: var(--ep-color-darker);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--ep-transition);
}

.wa-float.show-bubble .wa-bubble {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.wa-bubble::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 25px;
	width: 12px;
	height: 12px;
	background: var(--ep-color-white);
	transform: rotate(45deg);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}

.wa-bubble-close {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ep-color-darker);
	color: var(--ep-color-white);
	border: none;
	border-radius: 50%;
	font-size: 14px;
	cursor: pointer;
	line-height: 1;
}

/* ── Email Float Widget (fallback when WhatsApp is not configured) ─── */
.ep-email-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 999;
}

.ep-email-btn {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ep-color-primary);
	color: var(--ep-color-white);
	border-radius: 50%;
	font-size: 24px;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
	transition: var(--ep-transition);
	animation: ep-email-pulse 2s infinite;
}

.ep-email-btn:hover {
	background: var(--ep-color-primary-dark);
	transform: scale(1.1);
	color: var(--ep-color-white);
}

@keyframes ep-email-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
	70%  { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.ep-email-bubble {
	position: absolute;
	bottom: 65px;
	left: 0;
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	padding: 16px 20px;
	box-shadow: var(--ep-shadow-lg);
	font-size: 13px;
	color: var(--ep-color-darker);
	width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--ep-transition);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ep-email-float.show-bubble .ep-email-bubble {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ep-email-bubble::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 18px;
	width: 12px;
	height: 12px;
	background: var(--ep-color-white);
	transform: rotate(45deg);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.05);
}

.ep-email-bubble strong {
	font-size: 14px;
	color: var(--ep-color-darker);
	display: block;
}

.ep-email-bubble span {
	color: var(--ep-color-text);
	line-height: 1.4;
	display: block;
}

.ep-email-bubble-cta {
	display: inline-block;
	margin-top: 8px;
	padding: 7px 14px;
	background: var(--ep-color-primary);
	color: var(--ep-color-white);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: var(--ep-transition);
}

.ep-email-bubble-cta:hover {
	background: var(--ep-color-primary-dark);
	color: var(--ep-color-white);
}

.ep-email-bubble-close {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ep-color-darker);
	color: var(--ep-color-white);
	border: none;
	border-radius: 50%;
	font-size: 14px;
	cursor: pointer;
	line-height: 1;
}

/* ==========================================================================
   24. BLOG / POST CARDS
   ========================================================================== */

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

.post-card {
	background: var(--ep-color-white);
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

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

.post-card-img {
	height: 200px;
	overflow: hidden;
}

.post-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--ep-transition-slow);
}

.post-card:hover .post-card-img img {
	transform: scale(1.08);
}

.post-card-body {
	padding: 25px;
}

.post-card-category a {
	font-size: 12px;
	color: var(--ep-color-accent);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
}

.post-card-title {
	margin: 8px 0 10px;
}

.post-card-title a {
	color: var(--ep-color-darker);
	text-decoration: none;
	transition: var(--ep-transition);
}

.post-card-title a:hover {
	color: var(--ep-color-accent);
}

.post-card-meta {
	display: flex;
	gap: 15px;
	margin-bottom: 12px;
}

.post-card-meta span {
	font-size: 12px;
	color: var(--ep-color-soft);
}

.post-card-meta i {
	margin-right: 4px;
	color: var(--ep-color-accent);
}

.post-card-excerpt p {
	font-size: 14px;
	margin-bottom: 15px;
}

/* Single Post */
.single-post-article {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 0 60px;
}

.entry-header {
	margin-bottom: 30px;
}

.entry-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.3;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 13px;
	color: var(--ep-color-soft);
}

.entry-meta i {
	margin-right: 5px;
	color: var(--ep-color-accent);
}

.entry-meta a {
	color: var(--ep-color-soft);
	text-decoration: none;
}

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

.post-thumbnail {
	margin-bottom: 30px;
	border-radius: var(--ep-card-radius);
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	display: block;
}

.entry-content {
	font-size: 16px;
	line-height: 1.9;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 35px;
	margin-bottom: 15px;
}

.entry-content img {
	border-radius: var(--ep-btn-radius);
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 20px;
	padding-left: 25px;
}

.entry-content li {
	margin-bottom: 8px;
}

.entry-content blockquote {
	border-left: 4px solid var(--ep-color-accent);
	padding: 15px 25px;
	margin: 30px 0;
	background: var(--ep-color-light);
	border-radius: 0 var(--ep-btn-radius) var(--ep-btn-radius) 0;
	font-style: italic;
}

.post-tags {
	padding-top: 20px;
	border-top: 1px solid var(--ep-color-glossy);
	font-size: 13px;
}

.post-tags i {
	color: var(--ep-color-accent);
	margin-right: 5px;
}

.post-tags a {
	color: var(--ep-color-text);
	text-decoration: none;
	transition: var(--ep-transition);
}

.post-tags a:hover {
	color: var(--ep-color-accent);
}

/* Post Navigation */
.post-navigation {
	margin-top: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--ep-color-glossy);
	border-bottom: 1px solid var(--ep-color-glossy);
}

.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
}

.post-navigation a {
	color: var(--ep-color-darker);
	text-decoration: none;
}

.post-navigation a:hover {
	color: var(--ep-color-accent);
}

.nav-subtitle {
	display: block;
	font-size: 12px;
	color: var(--ep-color-soft);
	margin-bottom: 3px;
}

.nav-title {
	font-family: var(--ep-font-heading);
	font-weight: 600;
	font-size: 14px;
}

/* Pagination */
.pagination-wrapper {
	padding: 20px 0 40px;
	text-align: center;
}

.pagination-wrapper .nav-links {
	display: flex;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: var(--ep-btn-radius);
	background: var(--ep-color-light);
	color: var(--ep-color-text);
	font-family: var(--ep-font-heading);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: var(--ep-transition);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
	background: var(--ep-color-accent);
	color: var(--ep-color-white);
}

/* ==========================================================================
   25. 404 PAGE
   ========================================================================== */

.error-404-content {
	padding: 80px 0;
}

.error-404-title {
	font-size: 120px;
	font-weight: 900;
	color: var(--ep-color-accent);
	line-height: 1;
	margin-bottom: 10px;
}

.error-404-content h2 {
	font-size: 30px;
	margin-bottom: 15px;
}

.error-404-content p {
	font-size: 16px;
	max-width: 500px;
	margin: 0 auto 30px;
}

/* ==========================================================================
   26. WORDPRESS COMMENTS
   ========================================================================== */

.comments-area {
	max-width: 800px;
	margin: 40px auto 0;
}

.comments-title {
	font-size: 22px;
	margin-bottom: 30px;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment {
	padding: 20px 0;
	border-bottom: 1px solid var(--ep-color-glossy);
}

.comment-list .comment .children {
	list-style: none;
	padding-left: 40px;
}

/* ==========================================================================
   27. ANIMATIONS
   ========================================================================== */

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

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

/* Stagger animation for grid items — covers up to 12 cards */
.animate-on-scroll:nth-child(2)  { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3)  { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4)  { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5)  { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6)  { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(7)  { transition-delay: 0.55s; }
.animate-on-scroll:nth-child(8)  { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(9)  { transition-delay: 0.65s; }
.animate-on-scroll:nth-child(10) { transition-delay: 0.7s; }
.animate-on-scroll:nth-child(11) { transition-delay: 0.75s; }
.animate-on-scroll:nth-child(12) { transition-delay: 0.8s; }

/* ==========================================================================
   28. RESPONSIVE DESIGN
   ========================================================================== */

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

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

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

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

	.ep-detail-row {
		gap: 40px;
	}

	.process-step::after {
		display: none;
	}

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

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

@media (max-width: 768px) {
	/* Typography */
	h1 { font-size: 32px; }
	h2 { font-size: 26px; }
	h3 { font-size: 22px; }

	.section {
		padding: 50px 0;
	}

	/* Header */
	.logo .custom-logo,
	.logo .ep-logo-img {
		height: 34px;
	}

	.footer-logo .ep-logo-img,
	.footer-logo .custom-logo {
		height: 32px;
	}

	.header-social {
		display: none;
	}

	.header-cta-btn {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	/* Mobile Navigation */
	.nav-links {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: var(--ep-color-white);
		flex-direction: column;
		align-items: stretch;
		padding: 80px 25px 25px;
		gap: 0;
		z-index: 1001;
		box-shadow: var(--ep-shadow-xl);
		overflow-y: auto;
		transition: right 0.3s ease;
	}

	.nav-links.active {
		right: 0;
	}

	.nav-links > a,
	.nav-dropdown > a {
		color: var(--ep-color-darker);
		padding: 12px 0;
		border-bottom: 1px solid var(--ep-color-glossy);
		font-size: 15px;
	}

	.nav-links > a::after,
	.nav-dropdown > a::after {
		display: none;
	}

	.nav-links > a.active {
		color: var(--ep-color-accent);
	}

	.nav-dropdown .dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding: 0 0 0 15px;
		display: none;
	}

	.nav-dropdown.open .dropdown-menu {
		display: block;
	}

	.nav-dropdown > a i {
		float: right;
	}

	/* Hero */
	.hero-content h1 {
		font-size: 34px;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 20px;
	}

	.hero-stat {
		flex: 0 0 calc(50% - 10px);
	}

	/* About */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-img-badge {
		right: 10px;
		bottom: -15px;
	}

	/* Service Detail */
	.service-intro {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	/* Service Details Alternating Rows */
	.ep-detail-row,
	.ep-detail-reversed {
		grid-template-columns: 1fr;
		gap: 30px;
		direction: ltr;
	}

	.ep-detail-row {
		margin-bottom: 50px;
	}

	.process-step::after {
		display: none;
	}

	/* Grids */
	.grid-3 {
		grid-template-columns: 1fr;
	}

	.portfolio-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.portfolio-item--combined {
		grid-column: span 1;
		height: auto;
		min-height: 200px;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	/* Contact */
	.contact-grid {
		grid-template-columns: 1fr;
	}

	/* Quote */
	.quote-grid {
		grid-template-columns: 1fr;
	}

	/* Pricing */
	.pricing-card.featured {
		transform: none;
	}

	.pricing-card.featured:hover {
		transform: translateY(-8px);
	}

	/* Forms */
	.form-row {
		grid-template-columns: 1fr;
	}

	/* Footer */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	/* Page Banner */
	.page-banner {
		padding: 130px 0 60px;
	}

	.page-banner-content h1 {
		font-size: 32px;
	}

	/* Process steps */
	.process-steps {
		grid-template-columns: 1fr;
	}

	/* Shop */
	.shop-grid {
		grid-template-columns: 1fr;
	}

	.ep-shop-grid {
		grid-template-columns: 1fr;
	}

	.ep-shop-features {
		grid-template-columns: 1fr;
	}

	/* 404 */
	.error-404-title {
		font-size: 80px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-content h1 {
		font-size: 28px;
	}

	.section-title {
		font-size: 26px;
	}

	.btn-group {
		flex-direction: column;
	}

	.btn-lg {
		width: 100%;
		justify-content: center;
	}

	.portfolio-filters {
		gap: 6px;
	}

	.portfolio-filter {
		padding: 8px 16px;
		font-size: 12px;
	}

	.wa-float {
		bottom: 20px;
		left: 20px;
	}

	.scroll-top {
		bottom: 20px;
		right: 20px;
	}
}

/* ==========================================================================
   29. ELEMENTOR OVERRIDES
   Ensure Elementor works properly without style conflicts.
   ========================================================================== */

/* Let Elementor sections be truly full-width */
.elementor-page .site-main {
	overflow: visible;
}

/* Don't add extra padding on Elementor pages */
.elementor-page .site-main > .container {
	padding: 0;
	max-width: none;
}

/* Respect Elementor section padding */
.elementor-page .section {
	padding: 0;
}

/* Elementor full-width template */
.site-main-full-width {
	width: 100%;
}

.site-main-full-width > .elementor {
	margin: 0;
	padding: 0;
}

/* Elementor canvas — hide all theme chrome */
.expertspunch-canvas .header,
.expertspunch-canvas .footer,
.expertspunch-canvas .wa-float,
.expertspunch-canvas .scroll-top,
.expertspunch-canvas .mobile-overlay {
	display: none !important;
}

/* ==========================================================================
   30. SINGLE PRODUCT PAGE (ep-sp-*)
   ========================================================================== */

/* ── Product Page Banner (breadcrumb hero) ── */
.ep-page-banner {
	background: linear-gradient(135deg, var(--ep-color-primary) 0%, var(--ep-color-secondary) 100%);
	padding: 130px 0 50px;
	text-align: center;
}

.ep-page-banner-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.ep-page-banner-title {
	font-family: var(--ep-font-heading);
	font-size: clamp(20px, 3vw, 30px);
	font-weight: 700;
	color: #fff;
	margin: 0;
	line-height: 1.3;
}

.ep-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	flex-wrap: wrap;
	justify-content: center;
}

.ep-breadcrumb a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.2s;
}

.ep-breadcrumb a:hover { color: #fff; }

.ep-breadcrumb .sep { color: rgba(255,255,255,0.4); font-size: 10px; }

.ep-breadcrumb .current { color: var(--ep-color-accent); font-weight: 600; }

/* ── Layout ── */
.ep-single-product-section { padding: var(--ep-section-padding); }

.ep-sp-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: flex-start;
}

/* ── Image Gallery ── */
.ep-sp-gallery { position: sticky; top: 100px; }

.ep-sp-main-img-wrap {
	position: relative;
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	background: var(--ep-color-light);
	margin-bottom: 16px;
	aspect-ratio: 1 / 1;
}

.ep-sp-main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 16px;
	transition: transform 0.4s ease;
}

.ep-sp-main-img-wrap:hover .ep-sp-main-img { transform: scale(1.04); }

.ep-sp-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	z-index: 2;
}
.ep-sp-badge--sale     { background: var(--ep-color-accent); }
.ep-sp-badge--featured { background: var(--ep-color-primary); }

.ep-sp-thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.ep-sp-thumb {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease;
	background: var(--ep-color-light);
}

.ep-sp-thumb:hover,
.ep-sp-thumb.active { border-color: var(--ep-color-accent); transform: translateY(-2px); }

/* ── Product Details ── */
.ep-sp-cats {
	font-size: 12px;
	color: var(--ep-color-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	margin-bottom: 10px;
}
.ep-sp-cat-link { color: var(--ep-color-accent); }

.ep-sp-title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 700;
	color: var(--ep-color-dark);
	margin-bottom: 14px;
	line-height: 1.25;
}

.ep-sp-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}

.ep-sp-stars i { color: #f5a623; font-size: 13px; }
.ep-sp-stars i.far { color: var(--ep-color-muted); }
.ep-sp-review-count { color: var(--ep-color-soft); font-size: 13px; }

.ep-sp-price {
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 700;
	color: var(--ep-color-dark);
}

.ep-sp-price ins {
	text-decoration: none;
	color: var(--ep-color-accent);
}

.ep-sp-price del {
	font-size: 18px;
	color: var(--ep-color-muted);
	margin-right: 8px;
}

.ep-sp-short-desc {
	color: var(--ep-color-text);
	line-height: 1.7;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--ep-color-glossy);
	padding-bottom: 20px;
}

/* Formats */
.ep-sp-formats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}

.ep-sp-formats span {
	font-size: 12px;
	font-weight: 600;
	color: var(--ep-color-dark);
	background: var(--ep-color-light);
	border: 1px solid var(--ep-color-glossy);
	border-radius: 6px;
	padding: 5px 12px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.ep-sp-formats span i { color: var(--ep-color-accent); }

/* Add-to-cart override */
.ep-sp-cart {
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* Custom Request button */
.ep-sp-custom-request-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: transparent;
	color: var(--ep-color-accent);
	border: 2px solid var(--ep-color-accent);
	border-radius: var(--ep-btn-radius);
	font-family: var(--ep-font-heading);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: var(--ep-transition);
	white-space: nowrap;
}

.ep-sp-custom-request-btn:hover {
	background: var(--ep-color-accent);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(249, 76, 48, 0.3);
}

.ep-sp-cart .button,
.ep-sp-cart .single_add_to_cart_button {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--ep-btn-radius) !important;
	padding: 14px 32px !important;
	font-family: var(--ep-font-heading) !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	cursor: pointer;
	transition: var(--ep-transition) !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.ep-sp-cart .button:hover,
.ep-sp-cart .single_add_to_cart_button:hover {
	background: var(--ep-color-accent-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(249, 76, 48, 0.3) !important;
}

.ep-sp-cart .quantity { display: none; }

/* Meta */
.ep-sp-meta {
	border-top: 1px solid var(--ep-color-glossy);
	padding-top: 20px;
	margin-bottom: 24px;
}

.ep-sp-meta-row {
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
	font-size: 14px;
}

.ep-sp-meta-label { font-weight: 600; color: var(--ep-color-dark); min-width: 80px; }
.ep-sp-meta-val   { color: var(--ep-color-text); }
.ep-sp-tag-link   { color: var(--ep-color-text); }
.ep-sp-tag-link:hover { color: var(--ep-color-accent); }

/* Trust badges */
.ep-sp-trust {
	display: flex;
	gap: 24px;
	background: var(--ep-color-light);
	border-radius: 10px;
	padding: 16px 20px;
}

.ep-sp-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 500;
	color: var(--ep-color-dark);
}

.ep-sp-trust-item i { color: var(--ep-color-accent); font-size: 16px; }

/* ── WooCommerce Tabs (override) ── */
.ep-sp-tabs-section .woocommerce-tabs {
	border: none;
}

.ep-sp-tabs-section .wc-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid var(--ep-color-glossy);
	padding: 0;
	margin: 0 0 32px;
	list-style: none;
}

.ep-sp-tabs-section .wc-tabs li { margin: 0; }

.ep-sp-tabs-section .wc-tabs li a {
	display: block;
	padding: 12px 24px;
	font-family: var(--ep-font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--ep-color-soft);
	text-decoration: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: var(--ep-transition);
}

.ep-sp-tabs-section .wc-tabs li.active a,
.ep-sp-tabs-section .wc-tabs li a:hover {
	color: var(--ep-color-accent);
	border-bottom-color: var(--ep-color-accent);
}

.ep-sp-tabs-section .woocommerce-Tabs-panel {
	background: transparent;
	border: none;
	padding: 0;
}

.ep-sp-tabs-section .woocommerce-Tabs-panel h2 { display: none; }

/* ── Related Products Grid ── */
.ep-sp-related-section { padding: var(--ep-section-padding); background: var(--ep-color-light); }

.ep-sp-related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.ep-sp-rel-card {
	background: #fff;
	border-radius: var(--ep-card-radius);
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
	transition: var(--ep-transition);
}

.ep-sp-rel-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--ep-shadow-md);
}

.ep-sp-rel-img-link {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--ep-color-light);
}

.ep-sp-rel-img-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ep-sp-rel-card:hover .ep-sp-rel-img-link img { transform: scale(1.05); }

.ep-sp-rel-body { padding: 16px; }

.ep-sp-rel-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.35;
}

.ep-sp-rel-title a { color: var(--ep-color-dark); text-decoration: none; }
.ep-sp-rel-title a:hover { color: var(--ep-color-accent); }

.ep-sp-rel-stars { margin-bottom: 6px; }
.ep-sp-rel-stars i { color: #f5a623; font-size: 11px; }
.ep-sp-rel-stars i.far { color: var(--ep-color-muted); }

.ep-sp-rel-price {
	font-weight: 700;
	color: var(--ep-color-accent);
	font-size: 16px;
	margin-bottom: 12px;
}

.ep-sp-rel-cart {
	width: 100%;
	text-align: center;
	font-size: 13px;
	padding: 8px 12px !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.ep-sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.ep-sp-wrap { grid-template-columns: 1fr; gap: 32px; }
	.ep-sp-gallery { position: static; }
	.ep-sp-trust { flex-direction: column; gap: 12px; }
	.ep-sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.ep-sp-related-grid { grid-template-columns: 1fr; }
	.ep-sp-formats { gap: 6px; }
}

/* ==========================================================================
   31. PRINT STYLES
   ========================================================================== */

@media print {
	.header,
	.footer,
	.scroll-top,
	.wa-float,
	.menu-toggle,
	.mobile-overlay {
		display: none !important;
	}

	body {
		font-size: 12pt;
		color: #000;
	}

	a {
		color: #000;
		text-decoration: underline;
	}
}

/* ==========================================================================
   32. WOOCOMMERCE PAGES (Cart, Checkout, My Account)
   ========================================================================== */

.ep-wc-page {
	background: var(--ep-color-bg, #f9f9f9);
	min-height: 60vh;
}

/* Push all WC page content below the fixed header */
.ep-wc-wrap {
	padding-top: var(--ep-header-height, 80px);
}

/* Page banner */
.ep-wc-page-banner {
	background: var(--ep-color-primary);
	padding: 40px 0 30px;
	color: #fff;
}
.ep-wc-page-banner-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
}
.ep-wc-banner-icon {
	font-size: 36px;
	color: var(--ep-color-accent);
	flex-shrink: 0;
}
.ep-wc-page-title {
	font-size: 28px;
	font-weight: 800;
	margin: 0 0 4px;
	color: #fff;
}
.ep-wc-page-subtitle {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	margin: 0;
}

/* Trust bar */
.ep-wc-trust-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.ep-wc-trust-bar span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	color: rgba(255,255,255,0.85);
	font-weight: 500;
}
.ep-wc-trust-bar i {
	color: var(--ep-color-accent);
}

/* Content area */
.ep-wc-content {
	padding: 50px 0 70px;
}
/* WooCommerce block overrides — make cart/checkout match theme */
.ep-wc-content .woocommerce,
.ep-wc-content .woocommerce-page {
	max-width: 100%;
}

/* Cart table */
.ep-wc-content .woocommerce-cart-form table.shop_table {
	border: none;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
}
.ep-wc-content .woocommerce-cart-form table.shop_table th {
	background: var(--ep-color-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 14px 16px;
	border: none;
}
.ep-wc-content .woocommerce-cart-form table.shop_table td {
	padding: 16px;
	border-color: var(--ep-color-border, #eee);
	vertical-align: middle;
}
.ep-wc-content .woocommerce-cart-form table.shop_table tr:last-child td {
	border-bottom: none;
}

/* Cart totals */
.ep-wc-content .cart_totals {
	background: var(--ep-color-white);
	border-radius: 12px;
	padding: 28px;
	box-shadow: var(--ep-shadow-sm);
}
.ep-wc-content .cart_totals h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--ep-color-primary);
}
.ep-wc-content .cart_totals table th,
.ep-wc-content .cart_totals table td {
	padding: 10px 0;
	border-color: var(--ep-color-border, #eee);
}

/* Checkout form */
.ep-wc-content .woocommerce-checkout #order_review_heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--ep-color-primary);
}
.ep-wc-content .woocommerce-checkout .woocommerce-input-wrapper input,
.ep-wc-content .woocommerce-checkout .woocommerce-input-wrapper select,
.ep-wc-content .woocommerce-checkout .woocommerce-input-wrapper textarea {
	border: 1.5px solid var(--ep-color-border, #e0e0e0);
	border-radius: 8px;
	padding: 11px 14px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color 0.2s;
	width: 100%;
	box-sizing: border-box;
}
.ep-wc-content .woocommerce-checkout .woocommerce-input-wrapper input:focus,
.ep-wc-content .woocommerce-checkout .woocommerce-input-wrapper select:focus,
.ep-wc-content .woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
	outline: none;
	border-color: var(--ep-color-accent);
}

/* WC Blocks (new cart/checkout blocks) */
.ep-wc-content .wp-block-woocommerce-cart,
.ep-wc-content .wp-block-woocommerce-checkout {
	max-width: 100% !important;
}

/* Place order button */
.ep-wc-content #place_order,
.ep-wc-content .wc-block-components-checkout-place-order-button {
	background: var(--ep-color-accent) !important;
	border-color: var(--ep-color-accent) !important;
	border-radius: 8px !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	padding: 14px 28px !important;
	width: 100% !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.ep-wc-content #place_order:hover,
.ep-wc-content .wc-block-components-checkout-place-order-button:hover {
	background: var(--ep-color-primary) !important;
	border-color: var(--ep-color-primary) !important;
}

/* Order received */
.ep-wc-content .woocommerce-order {
	background: var(--ep-color-white);
	border-radius: 12px;
	padding: 34px;
	box-shadow: var(--ep-shadow-sm);
	text-align: left;
}

.ep-wc-content .woocommerce-order .woocommerce-notice {
	font-size: 18px;
	font-weight: 800;
	color: var(--ep-color-primary);
	margin-bottom: 18px;
	text-align: left;
}

.ep-wc-content .woocommerce-order .woocommerce-notice::before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: var(--ep-color-accent);
	margin-right: 10px;
}

.ep-wc-content .ep-thankyou-head {
	background: #f7f7f8;
	border: 1px solid var(--ep-color-border, #e7e7ea);
	border-radius: 14px;
	padding: 18px 18px 16px;
	margin-bottom: 22px;
}

.ep-wc-content .ep-thankyou-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--ep-color-primary);
	margin: 0 0 6px;
}

.ep-wc-content .ep-thankyou-sub {
	font-size: 14px;
	color: rgba(0,0,0,0.65);
	margin: 0 0 14px;
}

.ep-wc-content .ep-thankyou-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ep-wc-content .ep-thankyou-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 14px;
	border-radius: 10px;
	border: 1px solid var(--ep-color-border, #e0e0e0);
	background: #fff;
	color: var(--ep-color-primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}

.ep-wc-content .ep-thankyou-btn:hover {
	border-color: var(--ep-color-primary);
}

.ep-wc-content .ep-thankyou-btn-primary {
	background: var(--ep-color-accent);
	border-color: var(--ep-color-accent);
	color: #fff;
}

.ep-wc-content .ep-thankyou-btn-primary:hover {
	background: var(--ep-color-primary);
	border-color: var(--ep-color-primary);
}

.ep-wc-content .woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 18px 0 22px;
}

.ep-wc-content .woocommerce-order-overview li {
	background: #fff;
	border: 1px solid var(--ep-color-border, #e7e7ea);
	border-radius: 14px;
	padding: 14px;
	font-size: 12px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: rgba(0,0,0,0.55);
}

.ep-wc-content .woocommerce-order-overview li strong {
	display: block;
	margin-top: 6px;
	font-size: 15px;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ep-color-primary);
}

.ep-wc-content .woocommerce-order-details,
.ep-wc-content .woocommerce-customer-details {
	margin-top: 18px;
	text-align: left;
}

.ep-wc-content .woocommerce-order-details > h2,
.ep-wc-content .woocommerce-customer-details > h2,
.ep-wc-content .woocommerce-order-downloads > h2 {
	font-size: 16px;
	font-weight: 800;
	color: var(--ep-color-primary);
	margin: 22px 0 12px;
}

.ep-wc-content .woocommerce-table--order-details,
.ep-wc-content .woocommerce-table--order-downloads {
	border: 1px solid var(--ep-color-border, #e7e7ea);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
}

.ep-wc-content .woocommerce-table--order-details th,
.ep-wc-content .woocommerce-table--order-downloads th {
	background: var(--ep-color-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 14px;
	border: none;
}

.ep-wc-content .woocommerce-table--order-details td,
.ep-wc-content .woocommerce-table--order-downloads td {
	padding: 12px 14px;
	border-color: var(--ep-color-border, #eee);
}

.ep-wc-content .woocommerce-order-downloads .download-file a {
	background: var(--ep-color-accent);
	color: #fff;
	padding: 8px 12px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
}

.ep-wc-content .woocommerce-order-downloads .download-file a:hover {
	background: var(--ep-color-primary);
}

.ep-wc-content .woocommerce-customer-details address {
	background: #fff;
	border: 1px solid var(--ep-color-border, #e7e7ea);
	border-radius: 14px;
	padding: 14px;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.ep-wc-content .woocommerce-order { padding: 22px; }
	.ep-wc-content .woocommerce-order-overview { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 768px) {
	.ep-wc-page-banner-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.ep-wc-page-title {
		font-size: 22px;
	}
	.ep-wc-trust-bar {
		gap: 12px;
	}
	.ep-wc-trust-bar span {
		font-size: 12px;
	}
}

/* ==========================================================================
   34. WC CART — Fix empty cart "New in store" block
   ========================================================================== */

/* Hide the ugly default "New in store" products in empty cart */
.ep-wc-content .wp-block-woocommerce-empty-cart-block .wp-block-separator,
.ep-wc-content .wp-block-woocommerce-empty-cart-block h2:not(.with-empty-cart-icon),
.ep-wc-content .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-new,
.ep-wc-content .wp-block-woocommerce-empty-cart-block .wp-block-woocommerce-product-collection {
	display: none !important;
}

/* Style empty cart message */
.ep-wc-content .wp-block-woocommerce-empty-cart-block {
	text-align: center;
	padding: 60px 20px;
}
.ep-wc-content .wc-block-cart__empty-cart__title {
	font-size: 24px !important;
	font-weight: 700 !important;
	color: var(--ep-color-primary) !important;
	margin-bottom: 12px !important;
}
.ep-wc-content .wc-block-cart__empty-cart__title::before {
	content: '\f290';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	display: block;
	font-size: 52px;
	color: var(--ep-color-border, #ddd);
	margin-bottom: 20px;
}

/* Continue shopping button inside empty cart */
.ep-wc-content .wp-block-woocommerce-empty-cart-block .wp-block-button__link {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border-radius: 8px !important;
	padding: 12px 28px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	text-decoration: none !important;
	border: none !important;
}
.ep-wc-content .wp-block-woocommerce-empty-cart-block .wp-block-button__link:hover {
	background: var(--ep-color-primary) !important;
}

/* WC notices — cart, checkout, order pages */
.ep-wc-content .woocommerce-error,
.ep-wc-content .woocommerce-message,
.ep-wc-content .woocommerce-info {
	border-radius: 10px;
	padding: 14px 18px;
	margin-bottom: 20px;
	font-size: 14px;
	border-left: 4px solid var(--ep-color-accent);
}
.ep-wc-content .woocommerce-notices-wrapper {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s;
}
.ep-wc-content .woocommerce-notices-wrapper:has(.woocommerce-error) {
	max-height: 200px;
}

/* ==========================================================================
   36. WC MY ACCOUNT — Dashboard & Navigation
   ========================================================================== */

/* Outer layout */
.ep-myaccount-wrap {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	align-items: start;
}

/* Sidebar */
.ep-myaccount-nav {
	background: var(--ep-color-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--ep-shadow-sm);
	position: sticky;
	top: 100px;
}
.ep-myaccount-user {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px;
	background: var(--ep-color-primary);
	color: #fff;
}
.ep-myaccount-avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.3);
}
.ep-myaccount-user-info strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}
.ep-myaccount-user-info span {
	font-size: 11px;
	color: rgba(255,255,255,0.65);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 140px;
	display: block;
}
.ep-myaccount-nav-list {
	list-style: none;
	padding: 8px 0;
	margin: 0;
}
.ep-myaccount-nav-list li {
	margin: 0;
}
.ep-myaccount-nav-list li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--ep-color-text);
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	border-left: 3px solid transparent;
}
.ep-myaccount-nav-list li a i {
	width: 18px;
	text-align: center;
	color: var(--ep-color-text-muted, #999);
	font-size: 14px;
	flex-shrink: 0;
}
.ep-myaccount-nav-list li a:hover,
.ep-myaccount-nav-list li.is-active a,
.ep-myaccount-nav-list li.woocommerce-MyAccount-navigation-link--is-active a {
	background: var(--ep-color-surface, #f9f9f9);
	color: var(--ep-color-accent);
	border-left-color: var(--ep-color-accent);
}
.ep-myaccount-nav-list li a:hover i,
.ep-myaccount-nav-list li.is-active a i,
.ep-myaccount-nav-list li.woocommerce-MyAccount-navigation-link--is-active a i {
	color: var(--ep-color-accent);
}
/* Logout — red tint */
.ep-myaccount-nav-list li.woocommerce-MyAccount-navigation-link--customer-logout a {
	color: #dc2626;
}
.ep-myaccount-nav-list li.woocommerce-MyAccount-navigation-link--customer-logout a i {
	color: #dc2626;
}
.ep-myaccount-nav-list li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
	background: #fef2f2;
	border-left-color: #dc2626;
}

/* Hide WC default nav (we render our own) */
.ep-myaccount-content .woocommerce-MyAccount-navigation {
	display: none;
}
.ep-myaccount-content .woocommerce-MyAccount-content {
	background: var(--ep-color-white);
	border-radius: 16px;
	padding: 32px;
	box-shadow: var(--ep-shadow-sm);
}

/* ==========================================================================
   37. WC MY ACCOUNT — Dashboard cards & stats
   ========================================================================== */

.ep-dashboard-welcome {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: linear-gradient(135deg, var(--ep-color-primary) 0%, #2d2d2d 100%);
	border-radius: 12px;
	padding: 28px;
	margin-bottom: 28px;
	color: #fff;
}
.ep-dashboard-welcome-text h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
}
.ep-dashboard-welcome-text p {
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	margin: 0;
}
.ep-dashboard-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 28px;
}
.ep-dashboard-stat {
	background: var(--ep-color-surface, #f9f9f9);
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--ep-color-border, #eee);
}
.ep-dashboard-stat > i {
	font-size: 24px;
	color: var(--ep-color-accent);
	flex-shrink: 0;
}
.ep-dashboard-stat-action {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	width: 100%;
}
.ep-dashboard-stat-num {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--ep-color-primary);
	line-height: 1;
}
.ep-dashboard-stat-label {
	display: block;
	font-size: 12px;
	color: var(--ep-color-text-muted, #888);
	margin-top: 3px;
}
.ep-dashboard-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 32px;
}
.ep-dashboard-card {
	background: var(--ep-color-white);
	border: 1px solid var(--ep-color-border, #eee);
	border-radius: 12px;
	padding: 24px 20px;
	text-align: center;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.ep-dashboard-card:hover {
	border-color: var(--ep-color-accent);
	box-shadow: 0 4px 20px rgba(249, 76, 48, 0.12);
	transform: translateY(-2px);
}
.ep-dashboard-card > i {
	font-size: 28px;
	color: var(--ep-color-accent);
	margin-bottom: 12px;
	display: block;
}
.ep-dashboard-card h5 {
	font-size: 14px;
	font-weight: 700;
	color: var(--ep-color-primary);
	margin: 0 0 6px;
}
.ep-dashboard-card p {
	font-size: 12px;
	color: var(--ep-color-text-muted, #888);
	margin: 0;
	line-height: 1.5;
}

/* Recent orders */
.ep-dashboard-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.ep-dashboard-section-header h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ep-color-primary);
	margin: 0;
}
.ep-view-all {
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-color-accent);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
}
.ep-view-all:hover {
	text-decoration: underline;
}
.ep-orders-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ep-order-row {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	align-items: center;
	gap: 16px;
	background: var(--ep-color-surface, #f9f9f9);
	border-radius: 10px;
	padding: 14px 18px;
	border: 1px solid var(--ep-color-border, #eee);
}
.ep-order-num {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--ep-color-primary);
}
.ep-order-date {
	display: block;
	font-size: 12px;
	color: var(--ep-color-text-muted, #888);
	margin-top: 2px;
}
.ep-order-total {
	font-size: 14px;
	font-weight: 700;
	color: var(--ep-color-primary);
}
.ep-status-badge {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.ep-status--complete { background: #d1fae5; color: #065f46; }
.ep-status--processing { background: #dbeafe; color: #1e40af; }
.ep-status--pending { background: #fef3c7; color: #92400e; }
.ep-status--hold { background: #e0e7ff; color: #3730a3; }
.ep-status--cancel { background: #fee2e2; color: #991b1b; }
.ep-status--refund { background: #fce7f3; color: #9d174d; }
.ep-status--default { background: var(--ep-color-surface, #f5f5f5); color: var(--ep-color-text); }
.ep-order-view-btn {
	font-size: 12px;
	font-weight: 600;
	color: var(--ep-color-accent);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px;
	border: 1px solid var(--ep-color-accent);
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.ep-order-view-btn:hover {
	background: var(--ep-color-accent);
	color: #fff;
}

/* Empty state */
.ep-dashboard-empty-orders {
	text-align: center;
	padding: 50px 20px;
}
.ep-dashboard-empty-orders > i {
	font-size: 52px;
	color: var(--ep-color-border, #ddd);
	margin-bottom: 16px;
	display: block;
}
.ep-dashboard-empty-orders h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--ep-color-primary);
	margin-bottom: 8px;
}
.ep-dashboard-empty-orders p {
	font-size: 14px;
	color: var(--ep-color-text-muted, #888);
	margin-bottom: 24px;
}

/* ==========================================================================
   38. WC MY ACCOUNT — Orders, Downloads, Addresses tables
   ========================================================================== */

/* General WC content styles inside account */
.ep-myaccount-content .woocommerce-MyAccount-content table.woocommerce-orders-table,
.ep-myaccount-content .woocommerce-MyAccount-content table.woocommerce-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.ep-myaccount-content .woocommerce-MyAccount-content table th {
	background: var(--ep-color-surface, #f5f5f5);
	color: var(--ep-color-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 14px;
	text-align: left;
	border-bottom: 2px solid var(--ep-color-border, #eee);
}
.ep-myaccount-content .woocommerce-MyAccount-content table td {
	padding: 13px 14px;
	border-bottom: 1px solid var(--ep-color-border, #eee);
	vertical-align: middle;
	color: var(--ep-color-text);
}
.ep-myaccount-content .woocommerce-MyAccount-content table tr:last-child td {
	border-bottom: none;
}
.ep-myaccount-content .woocommerce-MyAccount-content table tr:hover td {
	background: var(--ep-color-surface, #fafafa);
}

/* WC buttons inside account */
.ep-myaccount-content .woocommerce-MyAccount-content .button,
.ep-myaccount-content .woocommerce-MyAccount-content .woocommerce-Button {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border-radius: 6px !important;
	padding: 8px 16px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	border: none !important;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: background 0.2s;
}
.ep-myaccount-content .woocommerce-MyAccount-content .button:hover {
	background: var(--ep-color-primary) !important;
}

/* Form fields inside account (edit account, address) */
.ep-myaccount-content .woocommerce-MyAccount-content input[type="text"],
.ep-myaccount-content .woocommerce-MyAccount-content input[type="email"],
.ep-myaccount-content .woocommerce-MyAccount-content input[type="password"],
.ep-myaccount-content .woocommerce-MyAccount-content input[type="tel"],
.ep-myaccount-content .woocommerce-MyAccount-content select,
.ep-myaccount-content .woocommerce-MyAccount-content textarea {
	border: 1.5px solid var(--ep-color-border, #e0e0e0) !important;
	border-radius: 8px !important;
	padding: 10px 14px !important;
	font-size: 14px !important;
	font-family: inherit !important;
	width: 100% !important;
	box-sizing: border-box !important;
	transition: border-color 0.2s !important;
}
.ep-myaccount-content .woocommerce-MyAccount-content input:focus,
.ep-myaccount-content .woocommerce-MyAccount-content select:focus,
.ep-myaccount-content .woocommerce-MyAccount-content textarea:focus {
	outline: none !important;
	border-color: var(--ep-color-accent) !important;
}
.ep-myaccount-content .woocommerce-MyAccount-content label {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--ep-color-primary) !important;
	margin-bottom: 6px !important;
	display: block !important;
}
.ep-myaccount-content .woocommerce-MyAccount-content .form-row {
	margin-bottom: 16px;
}
/* Save button */
.ep-myaccount-content .woocommerce-MyAccount-content [name="save_account_details"],
.ep-myaccount-content .woocommerce-MyAccount-content [name="save_address"] {
	background: var(--ep-color-primary) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 12px 28px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	cursor: pointer;
	margin-top: 8px;
}
.ep-myaccount-content .woocommerce-MyAccount-content [name="save_account_details"]:hover,
.ep-myaccount-content .woocommerce-MyAccount-content [name="save_address"]:hover {
	background: var(--ep-color-accent) !important;
}

/* Section headings */
.ep-myaccount-content .woocommerce-MyAccount-content h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--ep-color-primary);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--ep-color-border, #eee);
}

/* ==========================================================================
   39. RESPONSIVE — Auth + Account
   ========================================================================== */

@media (max-width: 900px) {
	.ep-myaccount-wrap {
		grid-template-columns: 1fr;
	}
	.ep-myaccount-nav {
		position: static;
	}
	.ep-myaccount-nav-list {
		display: flex;
		flex-wrap: wrap;
		padding: 0;
	}
	.ep-myaccount-nav-list li a {
		padding: 10px 14px;
		font-size: 12px;
		border-left: none;
		border-bottom: 2px solid transparent;
	}
	.ep-myaccount-nav-list li.woocommerce-MyAccount-navigation-link--is-active a {
		border-left: none;
		border-bottom-color: var(--ep-color-accent);
	}
	.ep-dashboard-cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.ep-dashboard-stats {
		grid-template-columns: repeat(3, 1fr);
	}
	.ep-order-row {
		grid-template-columns: 1fr auto;
		grid-template-rows: auto auto;
	}
	.ep-order-total { display: none; }
}

@media (max-width: 640px) {
	.ep-dashboard-cards {
		grid-template-columns: 1fr 1fr;
	}
	.ep-dashboard-welcome {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.ep-myaccount-content .woocommerce-MyAccount-content {
		padding: 20px;
	}
}

/* ==========================================================================
   40. CUSTOM REQUEST MODAL
   ========================================================================== */

/* Overlay */
.ep-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity 0.25s ease;
}
.ep-modal-overlay.ep-modal-visible {
	display: flex;
	opacity: 1;
}

/* Modal box */
.ep-modal-box {
	background: var(--ep-color-white);
	border-radius: 16px;
	padding: 40px 36px 36px;
	width: 100%;
	max-width: 520px;
	position: relative;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
	transform: translateY(20px);
	transition: transform 0.25s ease;
	max-height: 90vh;
	overflow-y: auto;
}
.ep-modal-overlay.ep-modal-visible .ep-modal-box {
	transform: translateY(0);
}

/* Close button */
.ep-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: var(--ep-color-surface, #f5f5f5);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--ep-color-text-muted, #666);
	font-size: 14px;
	transition: background 0.2s, color 0.2s;
}
.ep-modal-close:hover {
	background: var(--ep-color-primary);
	color: #fff;
}

/* Header */
.ep-modal-header {
	text-align: center;
	margin-bottom: 24px;
}
.ep-modal-icon {
	font-size: 32px;
	color: var(--ep-color-accent);
	margin-bottom: 10px;
	display: block;
}
.ep-modal-header h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--ep-color-primary);
	margin: 0 0 6px;
}
.ep-modal-header p {
	font-size: 14px;
	color: var(--ep-color-text-muted, #666);
	margin: 0;
}

/* Product tag badge */
.ep-modal-product-tag {
	background: var(--ep-color-surface, #f5f5f5);
	border-left: 3px solid var(--ep-color-accent);
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-color-primary);
	margin-bottom: 20px;
}
.ep-modal-product-tag:empty {
	display: none;
}

/* Notices */
.ep-modal-notice--hidden {
	display: none !important;
}
.ep-modal-notice {
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.ep-modal-success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}
.ep-modal-error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

/* Form */
.ep-modal-form .form-group {
	margin-bottom: 16px;
}
.ep-modal-form label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--ep-color-primary);
	margin-bottom: 6px;
}
.ep-modal-form .form-control {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--ep-color-border, #e0e0e0);
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	color: var(--ep-color-text);
	background: var(--ep-color-white);
	transition: border-color 0.2s;
	box-sizing: border-box;
}
.ep-modal-form .form-control:focus {
	outline: none;
	border-color: var(--ep-color-accent);
	box-shadow: 0 0 0 3px rgba(var(--ep-color-accent-rgb, 249, 76, 48), 0.12);
}
.ep-modal-form textarea.form-control {
	resize: vertical;
	min-height: 110px;
}
.btn-block {
	width: 100%;
	justify-content: center;
}

/* Loading state */
.ep-modal-form.ep-submitting .btn-block {
	opacity: 0.7;
	pointer-events: none;
}

/* Responsive */
@media (max-width: 540px) {
	.ep-modal-box {
		padding: 28px 20px 24px;
	}
	.ep-modal-header h3 {
		font-size: 19px;
	}
}

/* ==========================================================================
   36. WC BLOCKS — Professional Cart & Checkout Redesign
   ========================================================================== */

/* ── Outer wrappers: full width, no extra margin ── */
.ep-wc-content .wp-block-woocommerce-cart,
.ep-wc-content .wp-block-woocommerce-checkout {
	max-width: 100% !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
.ep-wc-content .wc-block-components-sidebar-layout {
	width: 100% !important;
	margin: 0 !important;
}

/* Ensure WC Blocks checkout doesn't overflow or collapse the banner */
.woocommerce-checkout .ep-wc-page-banner,
.woocommerce-cart .ep-wc-page-banner {
	display: block !important;
	visibility: visible !important;
}
.woocommerce-checkout .ep-wc-page-banner-inner,
.woocommerce-cart .ep-wc-page-banner-inner {
	display: flex !important;
	visibility: visible !important;
}

/* ════════════════════════════════════════════
   CART PAGE
   ════════════════════════════════════════════ */

/* Cart items main panel — white card */
.ep-wc-content .wc-block-cart .wc-block-components-main {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07);
	border: 1px solid #e8e8e8;
	overflow: hidden;
}

/* Cart table header row */
.ep-wc-content .wc-block-cart__main .wc-block-cart-items__header th {
	background: var(--ep-color-primary) !important;
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	padding: 12px 16px !important;
	border: none !important;
}

/* Cart item rows */
.ep-wc-content .wc-block-cart__main .wc-block-cart-items td {
	padding: 14px 16px !important;
	border-top: 1px solid #f2f2f2 !important;
	vertical-align: middle !important;
}

/* Cart item image */
.ep-wc-content .wc-block-cart-item__image img {
	border-radius: 8px !important;
	border: 1px solid #eee !important;
}

/* Product name */
.ep-wc-content .wc-block-components-product-name {
	font-weight: 700 !important;
	color: var(--ep-color-primary) !important;
	font-size: 13px !important;
	line-height: 1.4 !important;
}
.ep-wc-content .wc-block-components-product-name:hover {
	color: var(--ep-color-accent) !important;
}

/* Hide product description/metadata in cart and order summary — it's too verbose */
.ep-wc-content .wc-block-components-product-metadata,
.ep-wc-content .wc-block-components-order-summary-item__full-description {
	display: none !important;
}

/* Sale badge — smaller, accent colour */
.ep-wc-content .wc-block-components-product-sale-badge {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 4px !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	padding: 2px 7px !important;
}

/* Cart item price (the per-unit price shown in the product column) */
.ep-wc-content .wc-block-cart-item__prices .wc-block-components-product-price {
	font-size: 13px !important;
}
.ep-wc-content .wc-block-cart-item__prices .wc-block-components-product-price ins,
.ep-wc-content .wc-block-cart-item__prices .wc-block-components-product-price .woocommerce-Price-amount {
	font-size: 13px !important;
	font-weight: 700 !important;
	color: var(--ep-color-accent) !important;
}
.ep-wc-content .wc-block-cart-item__prices .wc-block-components-product-price del,
.ep-wc-content .wc-block-cart-item__prices del {
	font-size: 12px !important;
	color: #bbb !important;
}

/* Cart item TOTAL column (right-aligned) */
.ep-wc-content .wc-block-cart-item__total .wc-block-components-formatted-money-amount {
	font-size: 14px !important;
	font-weight: 800 !important;
	color: var(--ep-color-accent) !important;
}

/* Quantity stepper */
.ep-wc-content .wc-block-components-quantity-selector {
	border: 1.5px solid #ddd !important;
	border-radius: 6px !important;
	overflow: hidden !important;
}
.ep-wc-content .wc-block-components-quantity-selector__button {
	background: #f5f5f5 !important;
	color: var(--ep-color-primary) !important;
	font-weight: 700 !important;
	min-width: 30px !important;
	opacity: 1 !important;
	transition: background 0.15s, color 0.15s !important;
}
.ep-wc-content .wc-block-components-quantity-selector__button:hover {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	opacity: 1 !important;
}
.ep-wc-content .wc-block-components-quantity-selector__input {
	font-size: 13px !important;
	font-weight: 700 !important;
	color: var(--ep-color-primary) !important;
}

/* Remove link */
.ep-wc-content .wc-block-cart-item__remove-link {
	color: #bbb !important;
	font-size: 11px !important;
	transition: color 0.15s !important;
}
.ep-wc-content .wc-block-cart-item__remove-link:hover {
	color: #e53e3e !important;
}

/* Cart sidebar */
.ep-wc-content .wc-block-components-sidebar {
	padding-left: 16px !important;
}

/* Cart order summary block — white card */
.ep-wc-content .wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
	background: #fff !important;
	border-radius: 12px !important;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
	border: 1px solid #e8e8e8 !important;
	overflow: hidden !important;
	margin-bottom: 12px !important;
}

/* Cart totals title bar */
.ep-wc-content .wc-block-cart__totals-title {
	background: var(--ep-color-primary) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	padding: 12px 16px 10px !important;
	display: block !important;
}

/* Totals rows */
.ep-wc-content .wc-block-components-totals-item {
	padding: 10px 16px !important;
	font-size: 13px !important;
}
.ep-wc-content .wc-block-components-totals-item__label {
	color: #666 !important;
	font-weight: 500 !important;
	font-size: 13px !important;
}
.ep-wc-content .wc-block-components-totals-item__value {
	font-weight: 700 !important;
	font-size: 13px !important;
	color: var(--ep-color-primary) !important;
}

/* Grand total row — tighten gap, no extra top space */
.ep-wc-content .wc-block-components-totals-footer-item {
	margin: 0 !important;
	padding: 10px 16px !important;
	border-top: 1px solid #eee !important;
}
.ep-wc-content .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.ep-wc-content .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 15px !important;
	font-weight: 800 !important;
}
.ep-wc-content .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	color: var(--ep-color-accent) !important;
}

/* Proceed to checkout button */
.ep-wc-content .wc-block-cart__submit-button {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 13px 20px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	width: 100% !important;
	transition: background 0.2s !important;
	display: block !important;
}
.ep-wc-content .wc-block-cart__submit-button:hover {
	background: var(--ep-color-primary) !important;
}

/* Express checkout */
.ep-wc-content .wc-block-components-express-payment--cart {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 14px;
	margin-bottom: 14px;
	background: #fff;
}

/* ════════════════════════════════════════════
   CHECKOUT PAGE
   ════════════════════════════════════════════ */

/* Checkout form panel — white card */
.ep-wc-content .wc-block-checkout__form {
	background: #fff !important;
	border-radius: 12px !important;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
	border: 1px solid #e8e8e8 !important;
	padding: 28px 28px 24px !important;
	box-sizing: border-box !important;
}

/* Checkout step headings */
.ep-wc-content .wc-block-components-checkout-step__heading {
	font-size: 15px !important;
	font-weight: 800 !important;
	color: var(--ep-color-primary) !important;
	padding-bottom: 10px !important;
	border-bottom: 2px solid #f0f0f0 !important;
	margin-bottom: 18px !important;
}
.ep-wc-content .wc-block-components-checkout-step__heading-content {
	font-size: 15px !important;
	font-weight: 800 !important;
	color: var(--ep-color-primary) !important;
}

/* Step number badge */
.ep-wc-content .wc-block-components-checkout-step__number {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border-radius: 50% !important;
	width: 26px !important;
	height: 26px !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex-shrink: 0 !important;
}

/* Checkout inputs */
.ep-wc-content .wc-block-components-text-input input,
.ep-wc-content .wc-block-components-country-input input,
.ep-wc-content .wc-block-components-state-input input,
.ep-wc-content .wc-block-components-address-form input,
.ep-wc-content .wc-block-components-address-form select,
.ep-wc-content .wc-block-components-select select {
	border: 1.5px solid #e0e0e0 !important;
	border-radius: 7px !important;
	padding: 10px 12px !important;
	font-size: 13px !important;
	font-family: inherit !important;
	background: #fafafa !important;
	transition: border-color 0.2s, box-shadow 0.2s !important;
	box-sizing: border-box !important;
	width: 100% !important;
	color: var(--ep-color-text) !important;
}
.ep-wc-content .wc-block-components-text-input input:focus,
.ep-wc-content .wc-block-components-country-input input:focus,
.ep-wc-content .wc-block-components-address-form input:focus,
.ep-wc-content .wc-block-components-address-form select:focus,
.ep-wc-content .wc-block-components-select select:focus {
	outline: none !important;
	border-color: var(--ep-color-accent) !important;
	box-shadow: 0 0 0 3px rgba(249,76,48,0.1) !important;
	background: #fff !important;
}

/* Input labels */
.ep-wc-content .wc-block-components-text-input label,
.ep-wc-content .wc-block-components-country-input label,
.ep-wc-content .wc-block-components-state-input label,
.ep-wc-content .wc-block-components-address-form label,
.ep-wc-content .wc-block-components-select label {
	font-size: 12px !important;
	font-weight: 600 !important;
	color: var(--ep-color-primary) !important;
}

/* Checkout sidebar — white card */
.ep-wc-content .wc-block-checkout__sidebar .wc-block-components-totals-wrapper {
	background: #fff !important;
	border-radius: 12px !important;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
	border: 1px solid #e8e8e8 !important;
	overflow: hidden !important;
}

/* Order summary heading */
.ep-wc-content .wc-block-checkout__sidebar .wc-block-components-panel > h2 {
	background: var(--ep-color-primary) !important;
	color: #fff !important;
	padding: 12px 16px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	margin: 0 !important;
	border-radius: 0 !important;
}
.ep-wc-content .wc-block-checkout__sidebar .wc-block-components-panel > h2 button,
.ep-wc-content .wc-block-checkout__sidebar .wc-block-components-panel__button {
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
}

/* Order summary items */
.ep-wc-content .wc-block-components-order-summary-item {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
	padding: 12px 16px !important;
	border-bottom: 1px solid #f2f2f2 !important;
}
.ep-wc-content .wc-block-components-order-summary-item__image img {
	width: 48px !important;
	height: 48px !important;
	object-fit: cover !important;
	border-radius: 6px !important;
	border: 1px solid #eee !important;
	flex-shrink: 0 !important;
}
.ep-wc-content .wc-block-components-order-summary-item__description {
	flex: 1 !important;
	min-width: 0 !important;
}
/* Product name in order summary */
.ep-wc-content .wc-block-components-order-summary-item__description .wc-block-components-product-name {
	font-size: 12px !important;
	font-weight: 700 !important;
	color: var(--ep-color-primary) !important;
	white-space: normal !important;
	line-height: 1.3 !important;
}
/* Price in order summary */
.ep-wc-content .wc-block-components-order-summary-item__individual-prices {
	font-size: 13px !important;
	font-weight: 800 !important;
	color: var(--ep-color-accent) !important;
	white-space: nowrap !important;
	flex-shrink: 0 !important;
}
/* Hide the huge strikethrough price in order summary */
.ep-wc-content .wc-block-components-order-summary-item__individual-prices del,
.ep-wc-content .wc-block-components-order-summary-item__individual-prices .wc-block-components-product-price del {
	display: none !important;
}
/* Also constrain the product price component inside order summary */
.ep-wc-content .wc-block-components-order-summary-item .wc-block-components-product-price {
	font-size: 13px !important;
}
.ep-wc-content .wc-block-components-order-summary-item .wc-block-components-product-price .woocommerce-Price-amount {
	font-size: 13px !important;
	font-weight: 800 !important;
	color: var(--ep-color-accent) !important;
}
.ep-wc-content .wc-block-components-order-summary-item .wc-block-components-product-price del {
	display: none !important;
}

/* Place order button */
.ep-wc-content .wc-block-components-checkout-place-order-button {
	background: var(--ep-color-accent) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 13px 20px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	width: 100% !important;
	transition: background 0.2s !important;
}
.ep-wc-content .wc-block-components-checkout-place-order-button:hover {
	background: var(--ep-color-primary) !important;
}

/* ── SHARED: Notices ── */
.ep-wc-content .wc-block-components-notice-banner {
	border-radius: 7px !important;
	padding: 10px 14px !important;
	margin-bottom: 14px !important;
	font-size: 13px !important;
	border-left-width: 4px !important;
	border-left-style: solid !important;
}
.ep-wc-content .wc-block-components-notice-banner.is-error {
	background: #fff5f5 !important;
	border-left-color: #e53e3e !important;
	color: #c53030 !important;
}
.ep-wc-content .wc-block-components-notice-banner.is-success {
	background: #f0fff4 !important;
	border-left-color: #38a169 !important;
	color: #276749 !important;
}

/* Coupon */
.ep-wc-content .wc-block-components-totals-coupon__input input {
	border: 1.5px solid #e0e0e0 !important;
	border-radius: 7px !important;
	padding: 9px 12px !important;
	font-size: 13px !important;
}
.ep-wc-content .wc-block-components-totals-coupon__button {
	background: var(--ep-color-primary) !important;
	color: #fff !important;
	border-radius: 7px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	border: none !important;
}
.ep-wc-content .wc-block-components-totals-coupon__button:hover {
	background: var(--ep-color-accent) !important;
}

/* Checkboxes & radio */
.ep-wc-content .wc-block-components-checkbox input[type="checkbox"],
.ep-wc-content .wc-block-components-radio-control__input {
	accent-color: var(--ep-color-accent) !important;
}

/* "Or continue below" divider */
.ep-wc-content .wc-block-components-express-payment-continue-rule {
	color: #aaa !important;
	font-size: 12px !important;
}

/* LOGO FIX */
.logo .custom-logo,.logo .ep-logo-img{height:48px!important;image-rendering:-webkit-optimize-contrast;}
.header.scrolled .logo,.header.scrolled .ep-text-logo{color:#ffffff!important;}
.header.scrolled .logo .custom-logo{filter:brightness(0) invert(1)!important;}

/* PRODUCT CARDS */
.products.columns-4{grid-template-columns:repeat(4,1fr)!important;gap:24px!important;}
.woocommerce-page .products li.product{border-radius:12px!important;overflow:hidden;transition:transform 0.25s ease,box-shadow 0.25s ease!important;box-shadow:0 2px 12px rgba(0,0,0,0.06)!important;}
.woocommerce-page .products li.product:hover{transform:translateY(-4px)!important;box-shadow:0 8px 30px rgba(0,0,0,0.12)!important;}
.woocommerce-page .products li.product img{width:100%!important;height:200px!important;object-fit:cover!important;}

/* TABLET */
@media(max-width:1024px){
.products.columns-4{grid-template-columns:repeat(3,1fr)!important;}
h1{font-size:38px;} h2{font-size:30px;}
.ep-detail-row{gap:40px;}
}

/* MOBILE 768px */
@media(max-width:768px){
.logo .custom-logo,.logo .ep-logo-img{height:36px!important;}
.header{padding:12px 0;}
.products.columns-4{grid-template-columns:repeat(2,1fr)!important;gap:16px!important;}
.woocommerce-page .products li.product img{height:160px!important;}
h1{font-size:30px;line-height:1.25;} h2{font-size:24px;} h3{font-size:20px;}
.ep-detail-row{grid-template-columns:1fr;gap:30px;margin-bottom:50px;}
.ep-detail-reversed{direction:ltr;}
.ep-page-banner{padding:60px 0 40px;}
.ep-page-banner h1{font-size:28px;}
}

/* SMALL MOBILE 480px */
@media(max-width:480px){
.logo .custom-logo,.logo .ep-logo-img{height:32px!important;}
.header-cta-btn{padding:8px 14px!important;font-size:12px!important;}
.products.columns-4{grid-template-columns:1fr!important;}
h1{font-size:26px;} h2{font-size:22px;}
.ep-page-banner h1{font-size:24px;}
.container{padding:0 14px;}
}

/* FORMS */
input[type=text],input[type=email],input[type=tel],textarea,select{border-radius:8px!important;border:1.5px solid #e0e0e0!important;padding:12px 16px!important;font-size:14px!important;width:100%!important;box-sizing:border-box!important;transition:border-color 0.2s ease!important;}
input[type=text]:focus,input[type=email]:focus,input[type=tel]:focus,textarea:focus,select:focus{border-color:var(--ep-color-accent)!important;outline:none!important;box-shadow:0 0 0 3px rgba(217,54,30,0.1)!important;}
/* ACCESSIBILITY */
a:focus-visible,button:focus-visible{outline:2px solid var(--ep-color-accent);outline-offset:3px;}
/* SMOOTH SCROLL */
html{scroll-behavior:smooth;}
/* SCROLLBAR */
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-thumb{background:var(--ep-color-accent);border-radius:3px;}

/* 50OFF badge code fix */
.ep-offer-badge strong, .ep-offer-badge *{color:#fff!important;}

/* ============================================================
   EP FINAL DESIGN OVERRIDES
   Targeted, clean — no conflicts
   ============================================================ */

/* ── CSS variable: accent gradient ── */
:root {
  --ep-gradient-accent: linear-gradient(135deg, #E8421F 0%, #D9361E 50%, #B4260F 100%);
}

/* ================================================================
   1. BUTTONS — gradient instead of flat
   ================================================================ */
.btn-primary,
.ep-btn,
.ep-btn-primary,
a.ep-btn,
button.ep-btn,
.woocommerce #place_order,
.woocommerce .button.alt,
.woocommerce-cart .checkout-button,
.wpforms-submit,
input[type="submit"],
.woocommerce-cart .wc-proceed-to-checkout a {
  background: var(--ep-gradient-accent) !important;
  border-color: transparent !important;
  transition: all 0.25s ease !important;
}
.btn-primary:hover,
.ep-btn:hover,
a.ep-btn:hover,
.woocommerce #place_order:hover,
.woocommerce .button.alt:hover {
  background: linear-gradient(135deg, #D9361E 0%, #B4260F 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217,54,30,0.4) !important;
}

/* ================================================================
   2. PAGE BANNER — dark cinematic, NO orange background
   ================================================================ */
.page-banner {
  background: #111116 !important;
  background-image: none !important;
}
/* Restore the dark overlay on top of background image */
.page-banner::before {
  display: block !important;
  background: linear-gradient(160deg, rgba(10,10,25,0.94) 0%, rgba(25,12,5,0.9) 100%) !important;
}
/* Red bottom accent line */
.page-banner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ep-gradient-accent);
  z-index: 3;
}
/* Highlight word in banner title — orange text only */
.page-banner-content h1 span {
  color: #D9361E !important;
  background: transparent !important;
  -webkit-text-fill-color: #D9361E !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
}
/* Breadcrumb — clean */
.breadcrumb a,
.breadcrumb span {
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ================================================================
   3. WooCommerce shop/cart banners — dark
   ================================================================ */
.ep-wc-page-banner {
  background: #111116 !important;
}
.ep-wc-page-banner::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--ep-gradient-accent);
}

/* ================================================================
   4. CTA BANNER — keep the original dark, just add red glow
   ================================================================ */
/* Original is already dark #282828→#1e1e1e — just enhance it */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-top: 3px solid #D9361E !important;
}
.cta-banner::before {
  content: '';
  display: block;
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(217,54,30,0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-banner > .container {
  position: relative;
  z-index: 1;
}

/* ================================================================
   5. PROCESS STEP NUMBERS — outlined not filled
   ================================================================ */
.step-number,
.process-number,
.ep-step-num {
  background: transparent !important;
  border: 3px solid #D9361E !important;
  color: #D9361E !important;
  box-shadow: none !important;
}

/* ================================================================
   6. FEATURED PRICING CARD — dark with red border
   ================================================================ */
.pricing-card.featured,
.pricing-card.popular,
.ep-pricing .featured {
  background: linear-gradient(145deg, #1e1e1e 0%, #2a1810 100%) !important;
  border: 2px solid #D9361E !important;
  color: #fff !important;
}

/* ================================================================
   7. SALE BADGE / WooCommerce accent
   ================================================================ */
.woocommerce span.onsale {
  background: var(--ep-gradient-accent) !important;
}

/* ================================================================
   8. WHATSAPP FLOAT — ensure visible
   ================================================================ */
.ep-wa-float {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 56px !important; height: 56px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4) !important;
  transition: transform 0.2s !important;
}
.ep-wa-float:hover { transform: scale(1.1) !important; }
.ep-wa-float svg { width: 28px; height: 28px; fill: #fff; }
.ep-wa-float .ep-wa-tooltip {
  position: absolute;
  right: 68px;
  background: #282828;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.ep-wa-float:hover .ep-wa-tooltip { opacity: 1; }

/* ================================================================
   9. NOTIFICATION BAR
   ================================================================ */
.ep-top-notification {
  background: linear-gradient(90deg, #B4260F, #D9361E, #B4260F) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  position: relative !important;
  z-index: 10000 !important;
}
.ep-top-notification a { color: #fff !important; text-decoration: underline !important; margin-left: 8px !important; }
.ep-top-notification .ep-notif-close {
  position: absolute !important; right: 16px !important; top: 50% !important;
  transform: translateY(-50%) !important; cursor: pointer !important;
  opacity: 0.7 !important; font-size: 16px !important;
  border: none !important; background: none !important; color: #fff !important;
}

/* ================================================================
   10. SOCIAL PROOF TOAST
   ================================================================ */
.ep-trust-sticky {
  position: fixed !important;
  bottom: 90px !important; left: 20px !important;
  background: #fff !important;
  border: 1px solid #e5e5e5 !important;
  border-left: 4px solid #D9361E !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
  z-index: 9998 !important;
  max-width: 280px !important;
  font-size: 13px !important;
  color: #282828 !important;
}

/* ================================================================
   11. CHECKOUT FIELD FOCUS — red
   ================================================================ */
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  border-color: #D9361E !important;
  box-shadow: 0 0 0 3px rgba(217,54,30,0.1) !important;
  outline: none !important;
}

/* ================================================================
   12. LOGO FIX — white on scrolled dark header
   ================================================================ */
.header.scrolled .logo { color: #ffffff !important; }
.header.scrolled .logo .custom-logo { filter: brightness(0) invert(1) !important; }

/* ================================================================
   13. PERFORMANCE: reduce layout shift
   ================================================================ */
img { height: auto; }
img[loading="lazy"] { min-height: 1px; }
