/* Component Library Theme - Widget Styles */

:root {
	--pc-primary: #4CAF50;
	--pc-primary-dark: #45a049;
	--pc-secondary: #2196F3;
	--pc-text-dark: #1a1a1a;
	--pc-text-gray: #666;
	--pc-text-light: #999;
	--pc-border: #e0e0e0;
	--pc-shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
	--pc-shadow-md: 0 4px 16px rgba(0,0,0,0.12);
	--pc-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
	--pc-radius: 12px;
	--pc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	:root {
		--pc-text-dark: #e0e0e0;
		--pc-text-gray: #b0b0b0;
		--pc-text-light: #808080;
		--pc-border: #404040;
	}
}

/* Utility Classes */
.pc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.pc-section {
	padding: 60px 0;
}

.pc-text-gradient {
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Accessibility improvements */
.pc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--pc-primary);
	outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Print styles */
@media print {
	.pc-header-1,
	.pc-header-2,
	.pc-header-3,
	.pc-header-4,
	.pc-header-5,
	.pc-footer-1,
	.pc-footer-2,
	.pc-footer-3,
	.pc-footer-4,
	.pc-contact-form-wrapper,
	.pc-newsletter {
		display: none !important;
	}
	
	* {
		box-shadow: none !important;
		text-shadow: none !important;
	}
	
	a[href]:after {
		content: " (" attr(href) ")";
	}
}

/* ========================================
   Header Widgets
   ======================================== */

.pc-header-1,
.pc-header-2,
.pc-header-3,
.site-header.header-1,
.site-header.header-2,
.site-header.header-3 {
	width: 100%;
	box-sizing: border-box;
}

.pc-header-1 .header-container,
.pc-header-2 .header-container,
.pc-header-3 .header-container,
.site-header.header-1 .header-container,
.site-header.header-2 .header-container,
.site-header.header-3 .header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 40px;
}

/* Header 1 - Centered */
.pc-header-1 .header-container,
.site-header.header-1 .header-container {
	flex-direction: column;
	text-align: center;
}

.pc-header-1 .navigation,
.site-header.header-1 .navigation {
	width: 100%;
}

/* Header 2 - Left Logo */
.pc-header-2 .header-container,
.site-header.header-2 .header-container {
	justify-content: space-between;
}

/* Header 3 - Split Menu */
.pc-header-3 .header-container,
.site-header.header-3 .header-container {
	justify-content: space-between;
}

/* Common Header Styles */
.logo-section {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-section .logo {
	max-height: 60px;
	width: auto;
}

.logo-section .site-title {
	margin: 0;
}

.logo-section .tagline {
	margin: 5px 0 0;
	opacity: 0.8;
}

/* Navigation Menu Styles */
.navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 25px;
}

.navigation .menu-item {
	position: relative;
}

.navigation .menu-item a {
	text-decoration: none;
	transition: opacity 0.3s;
	display: block;
	padding: 8px 12px;
}

.navigation .menu-item a:hover {
	opacity: 0.7;
}

/* Dropdown Submenus */
.navigation .menu-item-has-children {
	position: relative;
}

.navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: white;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	border-radius: 8px;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9999;
}

.navigation .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.navigation .sub-menu .menu-item {
	margin: 0;
}

.navigation .sub-menu .menu-item a {
	padding: 10px 20px;
	color: #333;
	white-space: nowrap;
	transition: background 0.2s, padding-left 0.2s;
}

.navigation .sub-menu .menu-item a:hover {
	opacity: 1;
	background: rgba(76, 175, 80, 0.1);
	padding-left: 25px;
}

/* Nested Submenus */
.navigation .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 5px;
}

.navigation .sub-menu .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Current Menu Item Indicators */
.navigation .current-menu-item > a,
.navigation .current-menu-parent > a,
.navigation .current-menu-ancestor > a {
	color: var(--pc-primary);
	font-weight: 600;
}

/* Header 3 Specific */
.pc-header-3 .navigation-left,
.pc-header-3 .navigation-right {
	flex: 1;
}

.pc-header-3 .navigation-left .menu {
	justify-content: flex-start;
}

.pc-header-3 .navigation-right .menu {
	justify-content: flex-end;
}

/* Header 4 - Search Bar */
.pc-header-4,
.site-header.header-4 {
	background: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.pc-header-4 .header-container,
.site-header.header-4 .header-container {
	max-width: 1400px;
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	gap: 30px;
	padding: 18px 40px;
}

.pc-header-4 .search-form,
.site-header.header-4 .search-form {
	position: relative;
	max-width: 400px;
	width: 100%;
}

.pc-header-4 .search-input,
.site-header.header-4 .search-input {
	width: 100%;
	padding: 10px 42px 10px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 25px;
	font-size: 14px;
	transition: border-color 0.3s;
}

.pc-header-4 .search-input:focus,
.site-header.header-4 .search-input:focus {
	outline: none;
	border-color: #4CAF50;
}

.pc-header-4 .search-button,
.site-header.header-4 .search-button {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	padding: 8px;
	cursor: pointer;
	color: #666;
}

.pc-header-4 .user-actions,
.site-header.header-4 .user-actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.pc-header-4 .action-button,
.site-header.header-4 .action-button {
	padding: 8px 20px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
	white-space: nowrap;
}

.pc-header-4 .login-button,
.site-header.header-4 .login-button {
	background: transparent;
	color: #333;
	border: 1px solid #ddd;
}

.pc-header-4 .signup-button,
.site-header.header-4 .signup-button {
	background: #4CAF50;
	color: #fff;
	border: none;
}

/* Header 5 - Mega Menu */
.pc-header-5,
.site-header.header-5 {
	background: #2c3e50;
	color: white;
}

.pc-header-5 .header-container,
.site-header.header-5 .header-container {
	max-width: 1400px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 50px;
	padding: 20px 40px;
}

.pc-header-5 .navigation .menu,
.site-header.header-5 .navigation .menu {
	justify-content: flex-start;
}

.pc-header-5 .navigation .menu-item a,
.site-header.header-5 .navigation .menu-item a {
	color: rgba(255,255,255,0.9);
}

.pc-header-5 .navigation .menu-item a:hover,
.site-header.header-5 .navigation .menu-item a:hover {
	color: #fff;
}

.pc-header-5 .top-actions,
.site-header.header-5 .top-actions {
	display: flex;
	gap: 20px;
	align-items: center;
}

.pc-header-5 .action-link,
.site-header.header-5 .action-link {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.pc-header-5 .action-link:hover,
.site-header.header-5 .action-link:hover {
	color: #fff;
}

/* Header 6 - Minimal CTA */
.pc-header-6,
.site-header.header-6 {
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.pc-header-6 .header-container,
.site-header.header-6 .header-container {
	max-width: 1400px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 40px;
	padding: 16px 40px;
	position: relative;
}

.site-header.header-6 .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.site-header.header-6 .menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: #333;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.site-header.header-6 .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.site-header.header-6 .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.site-header.header-6 .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.pc-header-6 .cta-button,
.site-header.header-6 .cta-button,
.pc-header-6 .header-cta a,
.site-header.header-6 .header-cta a {
	display: inline-block;
	padding: 10px 24px;
	background: #3498db;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.pc-header-6 .cta-button:hover,
.site-header.header-6 .cta-button:hover,
.pc-header-6 .header-cta a:hover,
.site-header.header-6 .header-cta a:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Header 6 - Desktop Navigation */
.site-header.header-6 .main-navigation {
	display: block;
	flex: 1;
	justify-self: center;
}

.site-header.header-6 .main-navigation .nav-menu,
.site-header.header-6 .main-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
}

.site-header.header-6 .main-navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	color: #333;
	transition: color 0.2s ease;
	padding: 8px 0;
}

.site-header.header-6 .main-navigation .menu-item a:hover {
	color: #3498db;
}

.site-header.header-6 .main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: 4px;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 8px 0;
	min-width: 200px;
	z-index: 1000;
}

.site-header.header-6 .main-navigation .menu-item {
	position: relative;
}

.site-header.header-6 .main-navigation .menu-item:hover > .sub-menu {
	display: block;
}

.site-header.header-6 .main-navigation .sub-menu .menu-item a {
	display: block;
	padding: 10px 20px;
}

.site-header.header-6 .main-navigation .sub-menu .menu-item:hover {
	background: #f8f9fa;
}

/* Header 7 - Transparent */
.pc-header-7,
.site-header.header-7 {
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	color: white;
}

.pc-header-7 .header-container,
.site-header.header-7 .header-container {
	max-width: 1400px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 40px;
	padding: 24px 40px;
	position: relative;
}

.site-header.header-7 .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.site-header.header-7 .menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: #fff;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.site-header.header-7 .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.site-header.header-7 .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.site-header.header-7 .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Header 7 - Desktop Navigation */
.site-header.header-7 .main-navigation {
	display: block;
	flex: 1;
	justify-self: center;
}

.site-header.header-7 .main-navigation .nav-menu,
.site-header.header-7 .main-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
}

.pc-header-7 .navigation .menu-item a,
.site-header.header-7 .navigation .menu-item a,
.site-header.header-7 .main-navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	color: rgba(255,255,255,0.95);
	transition: color 0.2s ease;
	padding: 8px 0;
}

.pc-header-7 .navigation .menu-item a:hover,
.site-header.header-7 .navigation .menu-item a:hover,
.site-header.header-7 .main-navigation .menu-item a:hover {
	color: #fff;
}

.site-header.header-7 .main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	border-radius: 4px;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 8px 0;
	min-width: 200px;
	z-index: 1000;
}

.site-header.header-7 .main-navigation .menu-item {
	position: relative;
}

.site-header.header-7 .main-navigation .menu-item:hover > .sub-menu {
	display: block;
}

.site-header.header-7 .main-navigation .sub-menu .menu-item a {
	display: block;
	padding: 10px 20px;
	color: #fff;
}

.site-header.header-7 .main-navigation .sub-menu .menu-item:hover {
	background: rgba(255,255,255,0.1);
}

.pc-header-7 .contact-button,
.site-header.header-7 .contact-button,
.pc-header-7 .header-cta a,
.site-header.header-7 .header-cta a {
	padding: 10px 26px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(10px);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	border: 1px solid rgba(255,255,255,0.3);
	transition: all 0.3s;
}

.pc-header-7 .contact-button:hover,
.site-header.header-7 .contact-button:hover,
.pc-header-7 .header-cta a:hover,
.site-header.header-7 .header-cta a:hover {
	background: rgba(255,255,255,0.3);
	border-color: rgba(255,255,255,0.5);
}

/* Header 8 - Two Row */
.pc-header-8,
.site-header.header-8 {
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

/* Header 8 - Desktop Navigation */
.site-header.header-8 .main-navigation {
	display: block;
}

.site-header.header-8 .main-navigation .nav-menu,
.site-header.header-8 .main-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: center;
}

.site-header.header-8 .main-navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	color: #333;
	transition: color 0.2s ease;
	padding: 8px 0;
}

.site-header.header-8 .main-navigation .menu-item a:hover {
	color: #3498db;
}

.site-header.header-8 .main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: 4px;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 8px 0;
	min-width: 200px;
	z-index: 1000;
}

.site-header.header-8 .main-navigation .menu-item {
	position: relative;
}

.site-header.header-8 .main-navigation .menu-item:hover > .sub-menu {
	display: block;
}

.site-header.header-8 .main-navigation .sub-menu .menu-item a {
	display: block;
	padding: 10px 20px;
}

.site-header.header-8 .main-navigation .sub-menu .menu-item:hover {
	background: #f8f9fa;
}

.pc-header-8 .top-bar,
.site-header.header-8 .top-bar {
	background: #f8f9fa;
	border-bottom: 1px solid #e8e8e8;
	padding: 10px 0;
}

.pc-header-8 .top-bar .top-container,
.site-header.header-8 .top-bar .top-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-header-8 .top-info,
.site-header.header-8 .top-info {
	display: flex;
	gap: 24px;
	font-size: 13px;
	color: #666;
}

.pc-header-8 .top-actions,
.site-header.header-8 .top-actions {
	display: flex;
	gap: 16px;
}

.pc-header-8 .top-link,
.site-header.header-8 .top-link {
	color: #666;
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s;
}

.pc-header-8 .top-link:hover,
.site-header.header-8 .top-link:hover {
	color: #4CAF50;
}

.pc-header-8 .main-bar,
.site-header.header-8 .main-bar {
	padding: 18px 0;
}

.pc-header-8 .header-container,
.site-header.header-8 .header-container {
	max-width: 1400px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 40px;
	padding:  0 40px;
	position: relative;
}

.site-header.header-8 .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.site-header.header-8 .menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: #333;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.site-header.header-8 .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.site-header.header-8 .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.site-header.header-8 .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Header 9 - Two Row with Search */
.pc-header-9,
.site-header.header-9 {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.pc-header-9 .header-top,
.site-header.header-9 .header-top {
	border-bottom: 1px solid #f0f0f0;
}

.pc-header-9 .header-container,
.site-header.header-9 .header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 40px;
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
}

/* Header 9 - Desktop Navigation */
.site-header.header-9 .main-navigation {
	display: block;
	flex: 1;
}

.site-header.header-9 .main-navigation .nav-menu,
.site-header.header-9 .main-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: flex-end;
}

.site-header.header-9 .main-navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	color: #333;
	transition: color 0.2s ease;
	padding: 8px 0;
}

.site-header.header-9 .main-navigation .menu-item a:hover {
	color: #3498db;
}

.site-header.header-9 .main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: 4px;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 8px 0;
	min-width: 200px;
	z-index: 1000;
}

.site-header.header-9 .main-navigation .menu-item {
	position: relative;
}

.site-header.header-9 .main-navigation .menu-item:hover > .sub-menu {
	display: block;
}

.site-header.header-9 .main-navigation .sub-menu .menu-item a {
	display: block;
	padding: 10px 20px;
}

.site-header.header-9 .main-navigation .sub-menu .menu-item:hover {
	background: #f8f9fa;
}

.site-header.header-9 .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.site-header.header-9 .menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: #333;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.site-header.header-9 .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.site-header.header-9 .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.site-header.header-9 .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.pc-header-9 .search-section,
.site-header.header-9 .search-section {
	flex: 1;
	max-width: 600px;
}

.pc-header-9 .search-bar,
.site-header.header-9 .search-bar {
	position: relative;
	width: 100%;
}

.pc-header-9 .search-bar input,
.site-header.header-9 .search-bar input {
	width: 100%;
	padding: 14px 50px 14px 20px;
	border: none;
	background: #f5f5f5;
	border-radius: 30px;
	font-size: 15px;
	outline: none;
	transition: all 0.3s ease;
}

.pc-header-9 .search-bar input:focus,
.site-header.header-9 .search-bar input:focus {
	background: #ebebeb;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.pc-header-9 .search-bar button,
.site-header.header-9 .search-bar button {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: #3498db;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease;
}

.pc-header-9 .search-bar button:hover,
.site-header.header-9 .search-bar button:hover {
	background: #2980b9;
}

.pc-header-9 .action-icons,
.site-header.header-9 .action-icons {
	display: flex;
	gap: 20px;
	align-items: center;
}

.pc-header-9 .action-icon,
.site-header.header-9 .action-icon {
	font-size: 20px;
	color: #333;
	cursor: pointer;
	transition: color 0.2s ease;
}

.pc-header-9 .action-icon:hover,
.site-header.header-9 .action-icon:hover {
	color: #3498db;
}

.pc-header-9 .header-bottom,
.site-header.header-9 .header-bottom {
	border-top: 1px solid #f0f0f0;
}

.pc-header-9 .navigation,
.site-header.header-9 .navigation {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: center;
}

.pc-header-9 .navigation .menu,
.site-header.header-9 .navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
	align-items: center;
}

.pc-header-9 .navigation .menu-item a,
.site-header.header-9 .navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	color: #333;
	transition: color 0.2s ease;
	display: block;
	padding: 16px 0;
	position: relative;
}

.pc-header-9 .navigation .menu-item a:hover,
.site-header.header-9 .navigation .menu-item a:hover {
	color: #3498db;
}

.pc-header-9 .navigation .menu-item a::after,
.site-header.header-9 .navigation .menu-item a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #3498db;
	transition: width 0.3s ease;
}

.pc-header-9 .navigation .menu-item a:hover::after,
.site-header.header-9 .navigation .menu-item a:hover::after {
	width: 100%;
}

/* Header 10 - Topbar with Actions */
.pc-header-10,
.site-header.header-10 {
	width: 100%;
	box-sizing: border-box;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.pc-header-10 .header-topbar,
.site-header.header-10 .header-topbar {
	background: #333;
	color: #fff;
	font-size: 13px;
}

.pc-header-10 .topbar-container,
.site-header.header-10 .topbar-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 10px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-header-10 .topbar-container a,
.site-header.header-10 .topbar-container a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s;
}

.pc-header-10 .topbar-container a:hover,
.site-header.header-10 .topbar-container a:hover {
	opacity: 0.8;
}

.pc-header-10 .main-container,
.site-header.header-10 .main-container {
	background: #fff;
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
}

/* Header 10 - Desktop Navigation */
.site-header.header-10 .main-navigation {
	display: block;
	flex: 1;
	justify-self: center;
}

.site-header.header-10 .main-navigation .nav-menu,
.site-header.header-10 .main-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: center;
}

.site-header.header-10 .main-navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	color: #333;
	transition: color 0.2s ease;
	padding: 8px 0;
}

.site-header.header-10 .main-navigation .menu-item a:hover {
	color: #3498db;
}

.site-header.header-10 .main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: 4px;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 8px 0;
	min-width: 200px;
	z-index: 1000;
}

.site-header.header-10 .main-navigation .menu-item {
	position: relative;
}

.site-header.header-10 .main-navigation .menu-item:hover > .sub-menu {
	display: block;
}

.site-header.header-10 .main-navigation .sub-menu .menu-item a {
	display: block;
	padding: 10px 20px;
}

.site-header.header-10 .main-navigation .sub-menu .menu-item:hover {
	background: #f8f9fa;
}

.site-header.header-10 .menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
}

.site-header.header-10 .menu-toggle span {
	display: block;
	width: 25px;
	height: 2px;
	background: #333;
	margin: 5px 0;
	transition: all 0.3s ease;
}

.site-header.header-10 .menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.site-header.header-10 .menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.site-header.header-10 .menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.pc-header-10 .logo-section .logo,
.site-header.header-10 .logo-section .logo {
	max-height: 50px;
	width: auto;
	display: block;
}

.pc-header-10 .navigation,
.site-header.header-10 .navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.pc-header-10 .navigation .menu,
.site-header.header-10 .navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 32px;
	align-items: center;
}

.pc-header-10 .navigation .menu-item a,
.site-header.header-10 .navigation .menu-item a {
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	color: #333;
	transition: color 0.2s ease;
}

.pc-header-10 .navigation .menu-item a:hover,
.site-header.header-10 .navigation .menu-item a:hover {
	color: #3498db;
}

.pc-header-10 .header-actions,
.site-header.header-10 .header-actions {
	display: flex;
	gap: 20px;
	align-items: center;
}

.pc-header-10 .action-icon,
.site-header.header-10 .action-icon {
	font-size: 20px;
	color: #333;
	cursor: pointer;
	transition: color 0.2s ease;
}

.pc-header-10 .action-icon:hover,
.site-header.header-10 .action-icon:hover {
	color: #3498db;
}

/* Template Part Headers */
.site-header {
	width: 100%;
	box-sizing: border-box;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Site Branding */
.site-branding {
	display: flex;
	align-items: center;
	gap: 15px;
}

.site-branding .custom-logo-link {
	display: inline-block;
	line-height: 0;
}

.site-branding .custom-logo-link img {
	max-height: 60px;
	width: auto;
	height: auto;
}

.site-branding .site-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.site-branding .site-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.site-branding .site-title a:hover {
	color: var(--pc-primary);
}

/* Primary Navigation */
.main-navigation {
	position: relative;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 5px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: all 0.3s;
	border-radius: 5px;
}

.main-navigation a:hover {
	background: rgba(76, 175, 80, 0.1);
	color: var(--pc-primary);
}

/* Main Navigation Submenus */
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: white;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	border-radius: 8px;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9999;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu li {
	margin: 0;
}

.main-navigation .sub-menu a {
	padding: 10px 20px;
	white-space: nowrap;
	border-radius: 0;
}

.main-navigation .sub-menu a:hover {
	background: rgba(76, 175, 80, 0.1);
	padding-left: 25px;
}

/* Nested Submenus in Main Navigation */
.main-navigation .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 5px;
}

/* Current Menu Items */
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-parent > a,
.main-navigation .current-menu-ancestor > a {
	background: rgba(76, 175, 80, 0.1);
	color: var(--pc-primary);
	font-weight: 600;
}

/* Footer Template Parts */
.site-footer {
	width: 100%;
	box-sizing: border-box;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* Footer 5 - Newsletter */
.site-footer.footer-5 .footer-newsletter {
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	padding: 60px 20px;
	text-align: center;
}

.site-footer.footer-5 .footer-newsletter h3 {
	margin: 0 0 10px;
	font-size: 28px;
}

.site-footer.footer-5 .footer-newsletter p {
	margin: 0 0 30px;
	opacity: 0.9;
}

.site-footer.footer-5 .newsletter-form {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	gap: 10px;
}

.site-footer.footer-5 .newsletter-form input[type="email"] {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 5px;
	font-size: 15px;
}

.site-footer.footer-5 .newsletter-form button {
	padding: 14px 30px;
	background: white;
	color: var(--pc-primary);
	border: none;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--pc-transition);
	white-space: nowrap;
}

.site-footer.footer-5 .newsletter-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.site-footer.footer-5 .footer-main {
	background: #2c3e50;
	color: white;
	padding: 40px 20px;
}

.site-footer.footer-5 .footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 30px;
}

.site-footer.footer-5 .footer-bottom {
	background: #1a252f;
	color: rgba(255,255,255,0.7);
	padding: 20px;
	text-align: center;
}

.site-footer.footer-5 .footer-bottom p {
	margin: 0;
}

/* Footer 6 - Grid Layout */
.site-footer.footer-6 {
	background: #34495e;
	color: white;
}

.site-footer.footer-6 .footer-main {
	padding: 50px 20px;
}

.site-footer.footer-6 .footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.site-footer.footer-6 .footer-bottom {
	background: #2c3e50;
	padding: 25px 20px;
}

.site-footer.footer-6 .footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.site-footer.footer-6 .footer-bottom-content p {
	margin: 0;
	color: rgba(255,255,255,0.7);
}

.site-footer.footer-6 .footer-menu {
	list-style: none;
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.site-footer.footer-6 .footer-menu a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: color 0.3s;
}

.site-footer.footer-6 .footer-menu a:hover {
	color: white;
}

/* Footer 7 - Minimal */
.site-footer.footer-7 {
	background: #f8f9fa;
	padding: 40px 20px;
}

.site-footer.footer-7 .footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	text-align: center;
}

.site-footer.footer-7 .site-branding-footer .custom-logo-link {
	display: inline-block;
}

.site-footer.footer-7 .site-branding-footer img {
	max-height: 50px;
	width: auto;
}

.site-footer.footer-7 .site-title {
	margin: 0;
	font-size: 24px;
}

.site-footer.footer-7 .site-title a {
	color: inherit;
	text-decoration: none;
}

.site-footer.footer-7 .footer-menu {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.site-footer.footer-7 .footer-menu a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s;
}

.site-footer.footer-7 .footer-menu a:hover {
	color: var(--pc-primary);
}

.site-footer.footer-7 .copyright {
	margin: 0;
	color: #999;
	font-size: 14px;
}

/* Footer 8 - Large Social */
.site-footer.footer-8 {
	background: #2c3e50;
	color: white;
}

.site-footer.footer-8 .footer-main {
	padding: 60px 20px 40px;
}

.site-footer.footer-8 .footer-social-section {
	text-align: center;
	margin-bottom: 50px;
}

.site-footer.footer-8 .footer-social-section h3 {
	margin: 0 0 30px;
	font-size: 32px;
}

.site-footer.footer-8 .social-links-large {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.site-footer.footer-8 .social-links-large a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	color: white;
	font-size: 24px;
	transition: var(--pc-transition);
	text-decoration: none;
}

.site-footer.footer-8 .social-links-large a:hover {
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	transform: translateY(-5px) rotate(360deg);
	box-shadow: 0 6px 20px rgba(76,175,80,0.4);
}

.site-footer.footer-8 .footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.site-footer.footer-8 .footer-bottom {
	background: #1a252f;
	padding: 20px;
	text-align: center;
	margin-top: 40px;
}

.site-footer.footer-8 .footer-bottom p {
	margin: 0;
	color: rgba(255,255,255,0.6);
}

/* Footer 9 - App Download */
.site-footer.footer-9 {
	background: #ecf0f1;
}

.site-footer.footer-9 .footer-main {
	padding: 60px 20px 40px;
}

.site-footer.footer-9 .footer-app-section {
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	padding: 50px 40px;
	border-radius: var(--pc-radius);
	text-align: center;
	margin-bottom: 50px;
	box-shadow: var(--pc-shadow-lg);
}

.site-footer.footer-9 .footer-app-section h3 {
	margin: 0 0 10px;
	font-size: 28px;
}

.site-footer.footer-9 .footer-app-section p {
	margin: 0 0 30px;
	opacity: 0.9;
}

.site-footer.footer-9 .app-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.site-footer.footer-9 .app-buttons a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 24px;
	background: rgba(255,255,255,0.2);
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--pc-transition);
	backdrop-filter: blur(10px);
}

.site-footer.footer-9 .app-buttons a:hover {
	background: white;
	color: var(--pc-primary);
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.site-footer.footer-9 .app-buttons i {
	font-size: 24px;
}

.site-footer.footer-9 .footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	color: #333;
}

.site-footer.footer-9 .footer-bottom {
	background: #34495e;
	color: rgba(255,255,255,0.7);
	padding: 20px;
	text-align: center;
	margin-top: 40px;
}

.site-footer.footer-9 .footer-bottom p {
	margin: 0;
}

/* ========================================
   Footer Widgets
   ======================================== */

.pc-footer-1,
.site-footer.footer-1 {
	width: 100%;
	box-sizing: border-box;
	padding: 40px 20px;
}

.pc-footer-1 .footer-container,
.site-footer.footer-1 .footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.pc-footer-1 .footer-columns,
.site-footer.footer-1 .footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 30px;
}

.pc-footer-1 .footer-column h3,
.site-footer.footer-1 .footer-column h3 {
	margin: 0 0 15px;
}

.pc-footer-1 .column-content p,
.site-footer.footer-1 .column-content p {
	margin: 0 0 10px;
}

.pc-footer-1 .footer-links,
.site-footer.footer-1 .footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pc-footer-1 .footer-links li,
.site-footer.footer-1 .footer-links li {
	margin-bottom: 8px;
}

.pc-footer-1 .footer-links a,
.site-footer.footer-1 .footer-links a {
	text-decoration: none;
	transition: opacity 0.3s;
}

.pc-footer-1 .footer-links a:hover,
.site-footer.footer-1 .footer-links a:hover {
	opacity: 0.7;
}

.pc-footer-1 .footer-copyright,
.site-footer.footer-1 .footer-copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.8;
}

/* ========================================
   FAQ Widgets
   ======================================== */

.pc-faq-1 {
	width: 100%;
	box-sizing: border-box;
	padding: 40px 20px;
}

.pc-faq-1 .faq-title {
	margin: 0 0 30px;
	text-align: center;
}

.pc-faq-1 .faq-items {
	max-width: 800px;
	margin: 0 auto;
}

.pc-faq-1 .faq-item {
	margin-bottom: 15px;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	background: #fff;
	border: 1px solid transparent;
}

.pc-faq-1 .faq-item:hover,
.pc-faq-1 .faq-item.is-open {
	box-shadow: var(--pc-shadow-md);
	border-color: rgba(76, 175, 80, 0.2);
}

.pc-faq-1 .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	transition: var(--pc-transition);
	user-select: none;
	font-weight: 600;
	font-size: 16px;
	position: relative;
}

.pc-faq-1 .faq-question::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, var(--pc-primary), var(--pc-secondary));
	opacity: 0;
	transition: opacity 0.3s;
}

.pc-faq-1 .faq-item.is-open .faq-question::before {
	opacity: 1;
}

.pc-faq-1 .faq-question:hover {
	opacity: 0.9;
}

.pc-faq-1 .faq-icon {
	font-size: 24px;
	font-weight: bold;
	color: var(--pc-primary);
	transition: var(--pc-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(76, 175, 80, 0.1);
}

.pc-faq-1 .faq-item.is-open .faq-icon {
	transform: rotate(45deg);
	background: var(--pc-primary);
	color: white;
}

.pc-faq-1 .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
	padding: 0 24px;
	color: var(--pc-text-gray);
	line-height: 1.7;
}

.pc-faq-1 .faq-item.is-open .faq-answer {
	max-height: 1000px;
	padding: 20px 24px;
	border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.pc-faq-1 .faq-answer p:first-child {
	margin-top: 0;
}

.pc-faq-1 .faq-answer p:last-child {
	margin-bottom: 0;
}

/* ========================================
   E-Commerce Widgets
   ======================================== */

/* Product Card */
.pc-product-card {
	position: relative;
	background: #fff;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid transparent;
}

.pc-product-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--pc-shadow-lg);
	border-color: rgba(76, 175, 80, 0.2);
}

.pc-product-card .product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, #f44336, #e91e63);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	z-index: 2;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
	animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.pc-product-card .product-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.pc-product-card .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-product-card:hover .product-image img {
	transform: scale(1.1) rotate(2deg);
}

.pc-product-card .product-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pc-product-card .product-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	color: #FFC107;
	font-size: 15px;
}

.pc-product-card .rating-value {
	margin-left: 5px;
	opacity: 0.7;
}

.pc-product-card .product-title {
	margin: 0 0 10px;
}

.pc-product-card .product-title a {
	text-decoration: none;
	transition: opacity 0.3s;
}

.pc-product-card .product-title a:hover {
	color: var(--pc-primary);
	text-decoration: underline;
	text-decoration-color: var(--pc-primary);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.pc-product-card .product-description {
	margin: 0 0 15px;
	flex: 1;
}

.pc-product-card .product-price {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	font-weight: 700;
}

.pc-product-card .regular-price {
	text-decoration: line-through;
	opacity: 0.6;
}

.pc-product-card .elementor-button {
	width: 100%;
	justify-content: center;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--pc-transition);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pc-product-card .elementor-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Product Card Styles */
.pc-product-card.style-2 .product-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
	color: white;
}

.pc-product-card.style-3 {
	box-shadow: none;
	border: 1px solid #e0e0e0;
}

.pc-product-card.style-3 .product-content {
	padding: 15px;
}

/* Product Grid */
.pc-product-grid-container {
	padding: 40px 0;
}

.pc-product-grid-container .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.pc-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.pc-product-grid[data-columns="3"] {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pc-product-grid .product-grid-item {
	position: relative;
	background: #fff;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	display: flex;
	flex-direction: column;
	border: 1px solid transparent;
}

.pc-product-grid .product-grid-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--pc-shadow-lg);
	border-color: rgba(76, 175, 80, 0.2);
}

.pc-product-grid .product-badge,
.swiper-slide .product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background: linear-gradient(135deg, #f44336, #e91e63);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	z-index: 2;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}

.pc-product-grid .product-image,
.swiper-slide .product-image {
	aspect-ratio: 1;
	overflow: hidden;
}

.pc-product-grid .product-image img,
.swiper-slide .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-product-grid .product-grid-item:hover .product-image img,
.swiper-slide:hover .product-image img {
	transform: scale(1.1) rotate(2deg);
}

.pc-product-grid .product-info,
.swiper-slide .product-info {
	padding: 15px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.pc-product-grid .product-rating,
.swiper-slide .product-rating {
	margin-bottom: 8px;
	font-size: 14px;
	color: #ffc107;
	display: flex;
	align-items: center;
	gap: 5px;
}

.pc-product-grid .product-rating .rating-value,
.swiper-slide .product-rating .rating-value {
	margin-left: 3px;
	opacity: 0.7;
}

.pc-product-grid .product-title,
.swiper-slide .product-title {
	margin: 0 0 8px;
}

.pc-product-grid .product-title a,
.swiper-slide .product-title a {
	text-decoration: none;
	transition: opacity 0.3s;
}

.pc-product-grid .product-title a:hover,
.swiper-slide .product-title a:hover {
	opacity: 0.7;
}

.pc-product-grid .product-description,
.swiper-slide .product-description {
	margin: 0 0 10px;
	flex-grow: 1;
}

.pc-product-grid .product-price,
.swiper-slide .product-price {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pc-product-grid .product-price .sale-price,
.swiper-slide .product-price .sale-price {
	color: #f44336;
}

.pc-product-grid .product-price .regular-price,
.swiper-slide .product-price .regular-price {
	text-decoration: line-through;
	opacity: 0.6;
}

.pc-product-grid .elementor-button,
.swiper-slide .elementor-button {
	width: 100%;
	margin-top: auto;
	justify-content: center;
}

/* Swiper Carousel for Product Grid */
.swiper-slide .product-grid-item {
	height: auto;
	position: relative;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
}

.swiper-slide:hover .product-grid-item {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.pc-product-grid-container .swiper {
	padding: 40px 10px;
}

.pc-product-grid-container .swiper-button-prev,
.pc-product-grid-container .swiper-button-next {
	color: var(--e-global-color-primary, #0073aa);
}

.pc-product-grid-container .swiper-button-prev:after,
.pc-product-grid-container .swiper-button-next:after {
	font-size: 30px;
}

.pc-product-grid-container .swiper-pagination-bullet {
	background: var(--e-global-color-primary, #0073aa);
}

.pc-product-grid-container .swiper-pagination {
	bottom: 0;
}

/* Shopping Cart */
.pc-shopping-cart {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pc-shopping-cart .cart-header h2 {
	margin: 0 0 20px;
}

.pc-shopping-cart .empty-cart {
	text-align: center;
	padding: 40px;
	opacity: 0.6;
}

.pc-shopping-cart .cart-summary {
	margin-top: 30px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
}

.pc-shopping-cart .summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.pc-shopping-cart .summary-row.total {
	padding-top: 10px;
	border-top: 2px solid #ddd;
	margin-top: 10px;
}

.pc-shopping-cart .cart-actions {
	margin-top: 20px;
	display: flex;
	gap: 15px;
}

.pc-shopping-cart .cart-actions button {
	flex: 1;
	padding: 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s;
}

.pc-shopping-cart .continue-shopping-btn {
	background: #f0f0f0;
}

.pc-shopping-cart .continue-shopping-btn:hover {
	background: #e0e0e0;
}

.pc-shopping-cart .checkout-btn {
	background: var(--e-global-color-primary, #0073aa);
	color: white;
}

.pc-shopping-cart .checkout-btn:hover {
	filter: brightness(0.9);
}

/* Checkout Form */
.pc-checkout-form {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pc-checkout-form h2 {
	margin: 0 0 30px;
}

.pc-checkout-form .form-section {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e0e0e0;
}

.pc-checkout-form .form-section:last-of-type {
	border-bottom: none;
}

.pc-checkout-form .form-section h3 {
	margin: 0 0 20px;
}

.pc-checkout-form .form-group {
	margin-bottom: 15px;
}

.pc-checkout-form .form-group label {
	display: block;
	margin-bottom: 5px;
}

.pc-checkout-form .form-group input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
}

.pc-checkout-form .form-group input:focus {
	outline: none;
	border-color: var(--e-global-color-primary, #0073aa);
}

.pc-checkout-form .form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}

.pc-checkout-form .submit-order-btn {
	width: 100%;
	padding: 15px;
	background: var(--e-global-color-primary, #0073aa);
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background 0.3s;
}

.pc-checkout-form .submit-order-btn:hover {
	filter: brightness(0.9);
}

/* Product Category */
.pc-product-category {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.pc-product-category.carousel {
	display: flex;
	overflow-x: auto;
	gap: 20px;
	padding-bottom: 10px;
}

.pc-product-category.carousel .category-item {
	min-width: 300px;
}

.pc-product-category .category-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.pc-product-category .category-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.pc-product-category .category-link {
	display: block;
	text-decoration: none;
	color: white;
}

.pc-product-category .category-image {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.pc-product-category .category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-product-category .category-item:hover .category-image img {
	transform: scale(1.15) rotate(-2deg);
}

.pc-product-category .category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.7), rgba(33, 150, 243, 0.7));
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--pc-transition);
}

.pc-product-category .category-item:hover .category-overlay {
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(33, 150, 243, 0.85));
}

.pc-product-category .category-info {
	text-align: center;
}

.pc-product-category .category-info h3 {
	margin: 0 0 8px;
	font-size: 24px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.pc-product-category .category-info span {
	opacity: 0.9;
}

/* Pricing Table */
.pc-pricing-table {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 35px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
}

.pc-pricing-table .pricing-plan {
	position: relative;
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: var(--pc-radius);
	padding: 35px;
	box-shadow: var(--pc-shadow-sm);
	border: 2px solid transparent;
	transition: var(--pc-transition);
}

.pc-pricing-table .pricing-plan:hover {
	transform: translateY(-10px);
	box-shadow: var(--pc-shadow-lg);
	border-color: rgba(76, 175, 80, 0.3);
}

.pc-pricing-table .pricing-plan.featured {
	background: linear-gradient(135deg, #fff 0%, #e8f5e9 100%);
	border-color: var(--pc-primary);
	transform: scale(1.08);
	box-shadow: var(--pc-shadow-lg);
}

.pc-pricing-table .pricing-plan.featured:hover {
	transform: scale(1.08) translateY(-10px);
	box-shadow: 0 12px 32px rgba(76, 175, 80, 0.3);
}

.pc-pricing-table .featured-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	padding: 6px 24px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.pc-pricing-table .plan-header {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.pc-pricing-table .plan-header h3 {
	margin: 0 0 15px;
}

.pc-pricing-table .price-wrapper {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
}

.pc-pricing-table .period {
	opacity: 0.7;
}

.pc-pricing-table .features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.pc-pricing-table .features-list li {
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pc-pricing-table .features-list i {
	color: var(--e-global-color-primary, #0073aa);
	flex-shrink: 0;
}

.pc-pricing-table .plan-button {
	display: block;
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--pc-transition);
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.pc-pricing-table .plan-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 768px) {
	:root {
		--pc-radius: 10px;
	}
	
	/* Show mobile menu logo only on mobile */
	.site-header.header-6 .navigation .nav-menu .mobile-menu-header,
	.site-header.header-7 .navigation .nav-menu .mobile-menu-header,
	.site-header.header-8 .navigation .nav-menu .mobile-menu-header,
	.site-header.header-9 .navigation .nav-menu .mobile-menu-header,
	.site-header.header-10 .navigation .nav-menu .mobile-menu-header {
		display: block;
	}
	
	.pc-header-1 .header-container,
	.pc-header-2 .header-container,
	.pc-header-3 .header-container,
	.site-header.header-1 .header-container,
	.site-header.header-2 .header-container,
	.site-header.header-3 .header-container {
		flex-direction: column;
		text-align: center;
	}

	.navigation .menu {
		flex-direction: column;
		gap: 10px;
	}

	.pc-header-3 .navigation-left .menu,
	.pc-header-3 .navigation-right .menu,
	.site-header.header-3 .navigation-left .menu,
	.site-header.header-3 .navigation-right .menu {
		justify-content: center;
	}

	.pc-footer-1 .footer-columns,
	.site-footer.footer-5 .footer-columns,
	.site-footer.footer-6 .footer-grid,
	.site-footer.footer-8 .footer-columns,
	.site-footer.footer-9 .footer-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.site-footer.footer-5 .newsletter-form,
	.site-footer.footer-9 .app-buttons {
		flex-direction: column;
	}

	.site-footer.footer-5 .newsletter-form button,
	.site-footer.footer-9 .app-buttons a {
		width: 100%;
	}

	.site-footer.footer-6 .footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	.site-footer.footer-7 .footer-menu {
		flex-direction: column;
		gap: 15px;
	}

	.site-footer.footer-8 .social-links-large a {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	/* Hide desktop navigation on mobile */
	.main-navigation {
		display: none;
	}

	.header-container {
		position: relative;
	}

	.site-branding .site-title {
		font-size: 20px;
	}

	.site-branding .custom-logo-link img {
		max-height: 45px;
	}

	/* Header 6-10 Mobile Menu Styles */
	.site-header.header-6 .header-container {
		position: relative;
	}

	.site-header.header-6 .menu-toggle {
		display: block;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.site-header.header-6 .main-navigation {
		display: none;
	}

	.site-header.header-6 .navigation {
		display: block;
	}

	.site-header.header-6 .navigation .nav-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0,0,0,0.1);
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.site-header.header-6 .navigation .nav-menu.active {
		right: 0;
	}

	.site-header.header-6 .navigation .nav-menu .mobile-menu-header {
		padding: 0 0 20px 0;
		margin-bottom: 20px;
		border-bottom: 2px solid #e5e5e5;
		text-align: left;
		list-style: none;
	}
	.site-header.header-6 .navigation .nav-menu .mobile-menu-header img {
		max-width: 180px;
		height: auto;
		display: inline-block;
	}
	.site-header.header-6 .navigation .nav-menu .menu-item a {
		display: block;
		padding: 20px 0;
		border-bottom: 1px solid #e5e5e5;
		font-size: 20px;
	}

	.site-header.header-6 .navigation .nav-menu .sub-menu {
		position: static;
		box-shadow: none;
		border-left: 2px solid #e5e5e5;
		margin: 0 0 0 16px;
		padding: 0;
		background: transparent;
	}

	.site-header.header-6 .navigation .nav-menu .menu-item:hover > .sub-menu,
	.site-header.header-6 .navigation .nav-menu .menu-item.hover-open > .sub-menu,
	.site-header.header-6 .navigation .nav-menu .menu-item.focus > .sub-menu {
		display: none;
	}

	.site-header.header-6 .navigation .nav-menu .menu-item.mobile-open > .sub-menu {
		display: block;
	}

	.site-header.header-6 .header-cta {
		display: none;
	}

	.site-header.header-7 .header-container {
		position: relative;
	}

	.site-header.header-7 .menu-toggle {
		display: block;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.site-header.header-7 .main-navigation {
		display: none;
	}

	.site-header.header-7 .navigation {
		display: block;
	}

	.site-header.header-7 .navigation .nav-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0,0,0,0.3);
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.site-header.header-7 .navigation .nav-menu.active {
		right: 0;
	}

	.site-header.header-7 .navigation .nav-menu .mobile-menu-header {
		padding: 0 0 20px 0;
		margin-bottom: 20px;
		border-bottom: 2px solid #e5e5e5;
		text-align: left;
		list-style: none;
	}
	.site-header.header-7 .navigation .nav-menu .mobile-menu-header img {
		max-width: 180px;
		height: auto;
		display: inline-block;
	}
	.site-header.header-7 .navigation .nav-menu .menu-item a {
		display: block;
		padding: 20px 0;
		border-bottom: 1px solid #e5e5e5;
		color: #333;
		font-size: 20px;
	}

	.site-header.header-7 .navigation .nav-menu .sub-menu {
		position: static;
		box-shadow: none;
		border-left: 2px solid rgba(255,255,255,0.1);
		margin: 0 0 0 16px;
		padding: 0;
		background: transparent;
	}

	.site-header.header-7 .navigation .nav-menu .menu-item:hover > .sub-menu,
	.site-header.header-7 .navigation .nav-menu .menu-item.hover-open > .sub-menu,
	.site-header.header-7 .navigation .nav-menu .menu-item.focus > .sub-menu {
		display: none;
	}

	.site-header.header-7 .navigation .nav-menu .menu-item.mobile-open > .sub-menu {
		display: block;
	}

	.site-header.header-8 .header-container {
		position: relative;
	}

	.site-header.header-8 .menu-toggle {
		display: block;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.site-header.header-8 .main-navigation {
		display: none;
	}

	.site-header.header-8 .navigation {
		display: block;
	}

	.site-header.header-8 .navigation .nav-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0,0,0,0.1);
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.site-header.header-8 .navigation .nav-menu.active {
		right: 0;
	}

	.site-header.header-8 .navigation .nav-menu .mobile-menu-header {
		padding: 0 0 20px 0;
		margin-bottom: 20px;
		border-bottom: 2px solid #e5e5e5;
		text-align: left;
		list-style: none;
	}
	.site-header.header-8 .navigation .nav-menu .mobile-menu-header img {
		max-width: 180px;
		height: auto;
		display: inline-block;
	}
	.site-header.header-8 .navigation .nav-menu .menu-item a {
		display: block;
		padding: 20px 0;
		border-bottom: 1px solid #e5e5e5;
		font-size: 20px;
	}

	.site-header.header-8 .navigation .nav-menu .sub-menu {
		position: static;
		box-shadow: none;
		border-left: 2px solid #e5e5e5;
		margin: 0 0 0 16px;
		padding: 0;
		background: transparent;
	}

	.site-header.header-8 .navigation .nav-menu .menu-item:hover > .sub-menu,
	.site-header.header-8 .navigation .nav-menu .menu-item.hover-open > .sub-menu,
	.site-header.header-8 .navigation .nav-menu .menu-item.focus > .sub-menu {
		display: none;
	}

	.site-header.header-8 .navigation .nav-menu .menu-item.mobile-open > .sub-menu {
		display: block;
	}

	.site-header.header-9 .header-container {
		position: relative;
	}

	.site-header.header-9 .menu-toggle {
		display: block;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.site-header.header-9 .main-navigation {
		display: none;
	}

	.site-header.header-9 .navigation {
		display: block;
	}

	.site-header.header-9 .navigation .nav-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0,0,0,0.1);
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.site-header.header-9 .navigation .nav-menu.active {
		right: 0;
	}

	.site-header.header-9 .navigation .nav-menu .mobile-menu-header {
		padding: 0 0 20px 0;
		margin-bottom: 20px;
		border-bottom: 2px solid #e5e5e5;
		text-align: left;
		list-style: none;
	}
	.site-header.header-9 .navigation .nav-menu .mobile-menu-header img {
		max-width: 180px;
		height: auto;
		display: inline-block;
	}
	.site-header.header-9 .navigation .nav-menu .menu-item a {
		display: block;
		padding: 20px 0;
		border-bottom: 1px solid #e5e5e5;
		font-size: 20px;
	}

	.site-header.header-9 .navigation .nav-menu .menu-item a::after {
		display: none;
	}

	.site-header.header-9 .navigation .nav-menu .sub-menu {
		position: static;
		box-shadow: none;
		border-left: 2px solid #e5e5e5;
		margin: 0 0 0 16px;
		padding: 0;
		background: transparent;
	}

	.site-header.header-9 .navigation .nav-menu .menu-item:hover > .sub-menu,
	.site-header.header-9 .navigation .nav-menu .menu-item.hover-open > .sub-menu,
	.site-header.header-9 .navigation .nav-menu .menu-item.focus > .sub-menu {
		display: none;
	}

	.site-header.header-9 .navigation .nav-menu .menu-item.mobile-open > .sub-menu {
		display: block;
	}

	.site-header.header-10 .main-container {
		position: relative;
	}

	.site-header.header-10 .menu-toggle {
		display: block;
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.site-header.header-10 .main-navigation {
		display: none;
	}

	.site-header.header-10 .navigation {
		display: block;
	}

	.site-header.header-10 .navigation .nav-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		box-shadow: -2px 0 10px rgba(0,0,0,0.1);
		transition: right 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
		padding: 20px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.site-header.header-10 .navigation .nav-menu.active {
		right: 0;
	}

	.site-header.header-10 .navigation .nav-menu .mobile-menu-header {
		padding: 0 0 20px 0;
		margin-bottom: 20px;
		border-bottom: 2px solid #e5e5e5;
		text-align: left;
		list-style: none;
	}
	.site-header.header-10 .navigation .nav-menu .mobile-menu-header img {
		max-width: 180px;
		height: auto;
		display: inline-block;
	}
	.site-header.header-10 .navigation .nav-menu .menu-item a {
		display: block;
		padding: 20px 0;
		border-bottom: 1px solid #e5e5e5;
		font-size: 20px;
	}

	.site-header.header-10 .navigation .nav-menu .sub-menu {
		position: static;
		box-shadow: none;
		border-left: 2px solid #e5e5e5;
		margin: 0 0 0 16px;
		padding: 0;
		background: transparent;
	}

	.site-header.header-10 .navigation .nav-menu .menu-item:hover > .sub-menu,
	.site-header.header-10 .navigation .nav-menu .menu-item.hover-open > .sub-menu,
	.site-header.header-10 .navigation .nav-menu .menu-item.focus > .sub-menu {
		display: none;
	}

	.site-header.header-10 .navigation .nav-menu .menu-item.mobile-open > .sub-menu {
		display: block;
	}

	/* Header 4-10 Responsive */
	.pc-header-4 .header-container,
	.site-header.header-4 .header-container,
	.pc-header-5 .header-container,
	.site-header.header-5 .header-container,
	.pc-header-6 .header-container,
	.site-header.header-6 .header-container,
	.pc-header-7 .header-container,
	.site-header.header-7 .header-container,
	.pc-header-8 .header-container,
	.site-header.header-8 .header-container,
	.pc-header-9 .header-container,
	.site-header.header-9 .header-container,
	.pc-header-10 .header-container,
	.site-header.header-10 .header-container {
		grid-template-columns: 1fr auto;
		padding: 16px 20px;
		gap: 20px;
	}

	.pc-header-4 .search-form,
	.site-header.header-4 .search-form,
	.pc-header-4 .user-actions,
	.site-header.header-4 .user-actions,
	.pc-header-8 .top-bar,
	.site-header.header-8 .top-bar,
	.pc-header-10 .language-selector,
	.site-header.header-10 .language-selector,
	.pc-header-10 .cart-button,
	.site-header.header-10 .cart-button {
		display: none;
	}

	.pc-header-5 .top-actions,
	.site-header.header-5 .top-actions,
	.pc-header-9 .action-icons,
	.site-header.header-9 .action-icons,
	.pc-header-10 .header-actions,
	.site-header.header-10 .header-actions {
		gap: 12px;
	}

	.pc-header-6 .logo-section .logo,
	.site-header.header-6 .logo-section .logo {
		max-height: 35px;
	}

	.pc-header-9 .search-section,
	.site-header.header-9 .search-section {
		display: none;
	}

	.pc-header-10 .header-topbar,
	.site-header.header-10 .header-topbar {
		display: none;
	}

	.pc-product-grid[data-columns="3"],
	.pc-product-grid {
		grid-template-columns: 1fr;
	}

	.pc-product-category {
		grid-template-columns: 1fr;
	}

	.pc-pricing-table {
		grid-template-columns: 1fr;
	}

	.pc-pricing-table .pricing-plan.featured {
		transform: none;
	}
	
	.pc-pricing-table .pricing-plan.featured:hover {
		transform: translateY(-10px);
	}

	.pc-shopping-cart .cart-actions {
		flex-direction: column;
	}

	.pc-checkout-form .form-row {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   Blog Widgets
   ======================================== */

/* Blog Card */
.pc-blog-card {
	background: #fff;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pc-blog-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pc-blog-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pc-shadow-lg);
}

.pc-blog-card:hover::before {
	transform: scaleX(1);
}

.pc-blog-card .blog-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.pc-blog-card .blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-blog-card:hover .blog-image img {
	transform: scale(1.05);
}

.pc-blog-card .blog-category {
	position: absolute;
	top: 12px;
	left: 12px;
	color: white;
	padding: 5px 15px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
}

.pc-blog-card .blog-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.pc-blog-card .blog-title {
	margin: 0 0 12px;
	font-size: 20px;
	line-height: 1.4;
}

.pc-blog-card .blog-title a {
	color: inherit;
	text-decoration: none;
	transition: var(--pc-transition);
	background: linear-gradient(to right, var(--pc-primary), var(--pc-primary)) no-repeat;
	background-size: 0% 2px;
	background-position: left bottom;
	display: inline;
}

.pc-blog-card .blog-title a:hover {
	color: var(--pc-primary);
	background-size: 100% 2px;
}

.pc-blog-card .blog-excerpt {
	margin: 0 0 15px;
	color: #666;
	line-height: 1.6;
	flex: 1;
}

.pc-blog-card .blog-meta {
	padding-top: 15px;
	border-top: 1px solid #e0e0e0;
}

.pc-blog-card .author-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pc-blog-card .author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.pc-blog-card .meta-details {
	flex: 1;
}

.pc-blog-card .author-name {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}

.pc-blog-card .post-meta-items {
	display: flex;
	gap: 15px;
	font-size: 12px;
	color: #999;
}

.pc-blog-card .post-meta-items i {
	margin-right: 4px;
}

/* Blog Card Styles */
.pc-blog-card.style-2 .blog-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
	color: white;
	padding: 24px;
}

.pc-blog-card.style-2 .blog-meta {
	border-top-color: rgba(255,255,255,0.2);
}

.pc-blog-card.style-3 {
	box-shadow: none;
	border: 1px solid #e0e0e0;
}

/* Blog Grid */
.pc-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 35px;
	padding: 30px 0;
}

/* ========================================
   Contact Widgets
   ======================================== */

/* Contact Form */
.pc-contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.pc-contact-form-wrapper .form-header {
	text-align: center;
	margin-bottom: 30px;
}

.pc-contact-form-wrapper .form-title {
	margin: 0 0 10px;
	font-size: 32px;
}

.pc-contact-form-wrapper .form-description {
	margin: 0;
	color: #666;
	font-size: 16px;
}

.pc-contact-form-wrapper .contact-form {
	background: #fff;
	border-radius: var(--pc-radius);
	padding: 40px;
	box-shadow: var(--pc-shadow-md);
	position: relative;
	overflow: hidden;
}

.pc-contact-form-wrapper .contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.5s;
}

.pc-contact-form-wrapper .contact-form:hover::before {
	left: 100%;
}

.pc-contact-form-wrapper .form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.pc-contact-form-wrapper .form-group {
	margin-bottom: 20px;
}

.pc-contact-form-wrapper .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.pc-contact-form-wrapper .required {
	color: #f44336;
}

.pc-contact-form-wrapper .form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s;
	box-sizing: border-box;
}

.pc-contact-form-wrapper .form-control:focus {
	outline: none;
	border-color: var(--pc-primary);
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
	transform: translateY(-1px);
}

.pc-contact-form-wrapper textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.pc-contact-form-wrapper .submit-btn {
	padding: 14px 40px;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.pc-contact-form-wrapper .submit-btn:hover {
	filter: brightness(1.05);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.pc-contact-form-wrapper .submit-btn:active {
	transform: translateY(0) scale(0.98);
}

.pc-contact-form-wrapper .form-message {
	margin-top: 20px;
}

.pc-contact-form-wrapper .alert {
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 15px;
}

.pc-contact-form-wrapper .alert-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.pc-contact-form-wrapper .alert-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Contact Info */
.pc-contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	padding: 40px 0;
}

.pc-contact-info .info-item {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: var(--pc-radius);
	padding: 35px;
	text-align: center;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	position: relative;
	overflow: hidden;
}

.pc-contact-info .info-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.pc-contact-info .info-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--pc-shadow-lg);
}

.pc-contact-info .info-item:hover::before {
	transform: scaleX(1);
}

.pc-contact-info .info-icon {
	font-size: 48px;
	margin-bottom: 20px;
	display: inline-block;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.3s;
}

.pc-contact-info .info-item:hover .info-icon {
	transform: scale(1.1) rotate(5deg);
}

.pc-contact-info .info-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
}

.pc-contact-info .info-value {
	margin: 0;
	color: #666;
	font-size: 15px;
	word-break: break-word;
}

.pc-contact-info .info-value a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s;
}

.pc-contact-info .info-value a:hover {
	opacity: 0.7;
}

/* ========================================
   Features Widgets
   ======================================== */

/* Feature Box */
.pc-feature-box {
	background: #fff;
	border-radius: var(--pc-radius);
	padding: 35px;
	text-align: center;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
}

.pc-feature-box::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(33, 150, 243, 0.05));
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 0;
}

.pc-feature-box:hover {
	transform: translateY(-8px);
	box-shadow: var(--pc-shadow-lg);
	border-color: rgba(76, 175, 80, 0.2);
}

.pc-feature-box:hover::after {
	opacity: 1;
}

.pc-feature-box > * {
	position: relative;
	z-index: 1;
}

.pc-feature-box .feature-icon {
	font-size: 56px;
	margin-bottom: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(33, 150, 243, 0.1));
	color: var(--pc-primary);
	transition: var(--pc-transition);
}

.pc-feature-box:hover .feature-icon {
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	transform: rotateY(360deg);
}

.pc-feature-box .feature-title {
	margin: 0 0 15px;
	font-size: 22px;
	font-weight: 600;
}

.pc-feature-box .feature-description {
	margin: 0;
	color: #666;
	line-height: 1.6;
	flex: 1;
}

/* Feature Box Styles */
.pc-feature-box.style-icon-left {
	text-align: left;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
}

.pc-feature-box.style-icon-left .feature-icon {
	margin-bottom: 0;
}

.pc-feature-box.style-bordered {
	border: 2px solid #e0e0e0;
	box-shadow: none;
}

.pc-feature-box.style-bordered:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Features Grid */
.pc-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	padding: 50px 0;
}

/* ========================================
   Gallery Widgets
   ======================================== */

/* Image Gallery */
.pc-image-gallery {
	padding: 20px 0;
}

.pc-image-gallery .gallery-grid {
	display: grid;
	gap: 15px;
}

.pc-image-gallery .gallery-grid.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.pc-image-gallery .gallery-grid.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.pc-image-gallery .gallery-grid.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.pc-image-gallery .gallery-grid.columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.pc-image-gallery .gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--pc-radius);
	aspect-ratio: 1;
	cursor: pointer;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
}

.pc-image-gallery .gallery-item:hover {
	box-shadow: var(--pc-shadow-lg);
	transform: scale(1.02);
}

.pc-image-gallery .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-image-gallery .gallery-item:hover img {
	transform: scale(1.1);
}

.pc-image-gallery .gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.9), rgba(33, 150, 243, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--pc-transition);
}

.pc-image-gallery .gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.pc-image-gallery .gallery-icon {
	color: white;
	font-size: 40px;
	background: rgba(255, 255, 255, 0.2);
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	backdrop-filter: blur(10px);
	transform: scale(0.5);
	transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pc-image-gallery .gallery-item:hover .gallery-icon {
	transform: scale(1);
}

/* Portfolio Grid */
.pc-portfolio-grid {
	display: grid;
	gap: 30px;
}

.pc-portfolio-grid.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.pc-portfolio-grid.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.pc-portfolio-grid.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.pc-portfolio-grid .portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--pc-radius);
	background: #fff;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	border: 1px solid transparent;
}

.pc-portfolio-grid .portfolio-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--pc-shadow-lg);
	border-color: rgba(76, 175, 80, 0.2);
}

.pc-portfolio-grid .portfolio-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.pc-portfolio-grid .portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-portfolio-grid .portfolio-item:hover .portfolio-image img {
	transform: scale(1.05);
}

.pc-portfolio-grid .portfolio-content {
	padding: 20px;
}

.pc-portfolio-grid .portfolio-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 600;
}

.pc-portfolio-grid .portfolio-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s;
}

.pc-portfolio-grid .portfolio-title a:hover {
	opacity: 0.7;
}

.pc-portfolio-grid .portfolio-category {
	margin: 0;
	color: #999;
	font-size: 14px;
}

/* ========================================
   Stats Widgets
   ======================================== */

/* Stats Counter */
.pc-stats-counter {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: var(--pc-radius);
	padding: 40px;
	text-align: center;
	box-shadow: var(--pc-shadow-sm);
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	transition: var(--pc-transition);
}

.pc-stats-counter::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s;
}

.pc-stats-counter:hover::before {
	opacity: 1;
}

.pc-stats-counter:hover {
	transform: scale(1.05);
	box-shadow: var(--pc-shadow-md);
}

.pc-stats-counter .counter-icon {
	font-size: 56px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
	display: inline-block;
	transition: var(--pc-transition);
}

.pc-stats-counter:hover .counter-icon {
	transform: scale(1.15) rotate(-5deg);
}

.pc-stats-counter .counter-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.pc-stats-counter .counter-number {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 12px;
	line-height: 1.1;
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pc-stats-counter .counter-value {
	font-variant-numeric: tabular-nums;
}

.pc-stats-counter .counter-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #666;
}

/* Stats Counter Styles */
.pc-stats-counter.style-2 {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 20px;
	text-align: left;
}

.pc-stats-counter.style-2 .counter-icon {
	margin-bottom: 0;
	align-self: center;
}

.pc-stats-counter.style-2 .counter-content {
	align-items: flex-start;
}

.pc-stats-counter.style-3 {
	box-shadow: none;
	border: 2px solid #e0e0e0;
}

/* Stats Grid */
.pc-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 35px;
	padding: 50px 0;
}

/* ========================================
   Team Widgets
   ======================================== */

/* Team Member */
.pc-team-member {
	background: #fff;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	height: 100%;
	position: relative;
}

.pc-team-member::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(33, 150, 243, 0.05));
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 1;
	pointer-events: none;
}

.pc-team-member:hover {
	transform: translateY(-10px);
	box-shadow: var(--pc-shadow-lg);
}

.pc-team-member:hover::before {
	opacity: 1;
}

.pc-team-member .member-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
}

.pc-team-member .member-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
	opacity: 0;
	transition: opacity 0.3s;
}

.pc-team-member:hover .member-image::after {
	opacity: 1;
}

.pc-team-member .member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pc-team-member:hover .member-image img {
	transform: scale(1.05);
}

.pc-team-member .member-info {
	padding: 25px;
	text-align: center;
}

.pc-team-member .member-name {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 600;
}

.pc-team-member .member-position {
	margin: 0 0 15px;
	color: #999;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pc-team-member .member-bio {
	margin: 0 0 20px;
	color: #666;
	line-height: 1.6;
}

.pc-team-member .member-social {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.pc-team-member .social-link {
	color: #333;
	font-size: 18px;
	transition: var(--pc-transition);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f5f5f5;
}

.pc-team-member .social-link:hover {
	transform: translateY(-5px) rotate(360deg);
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	color: white;
	box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Team Grid */
.pc-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	padding: 30px 0;
}

/* ========================================
   Testimonial Widgets
   ======================================== */

/* Testimonial Card */
.pc-testimonial-card {
	background: #fff;
	border-radius: var(--pc-radius);
	padding: 35px;
	box-shadow: var(--pc-shadow-sm);
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: var(--pc-transition);
	border-left: 4px solid transparent;
}

.pc-testimonial-card:hover {
	box-shadow: var(--pc-shadow-lg);
	transform: translateY(-5px);
	border-left-color: var(--pc-primary);
}

.pc-testimonial-card .quote-icon {
	font-size: 48px;
	opacity: 0.15;
	margin-bottom: 15px;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: var(--pc-transition);
}

.pc-testimonial-card:hover .quote-icon {
	opacity: 0.3;
	transform: scale(1.1);
}

.pc-testimonial-card .testimonial-text {
	margin: 0 0 20px;
	color: #333;
	line-height: 1.8;
	font-style: italic;
	flex: 1;
}

.pc-testimonial-card .testimonial-rating {
	color: #FFC107;
	font-size: 16px;
	margin-bottom: 15px;
}

.pc-testimonial-card .testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.pc-testimonial-card .author-image {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.pc-testimonial-card .author-info {
	flex: 1;
}

.pc-testimonial-card .author-name {
	display: block;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 4px;
}

.pc-testimonial-card .author-position {
	display: block;
	color: #999;
	font-size: 14px;
}

/* Testimonial Carousel */
.pc-testimonial-carousel {
	padding: 40px 0;
}

.pc-testimonial-carousel .swiper {
	padding: 20px 40px 60px;
}

.pc-testimonial-carousel .swiper-button-prev,
.pc-testimonial-carousel .swiper-button-next {
	color: #4CAF50;
}

.pc-testimonial-carousel .swiper-pagination-bullet-active {
	background: #4CAF50;
}

/* ========================================
   Video Widget
   ======================================== */

.pc-video-player {
	position: relative;
	max-width: 100%;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-md);
}

.pc-video-player .video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

.pc-video-player .video-wrapper iframe,
.pc-video-player .video-wrapper video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pc-video-player .video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.pc-video-player .video-overlay:hover {
	background-color: rgba(0,0,0,0.3);
}

.pc-video-player .video-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(33, 150, 243, 0.3));
	opacity: 0;
	transition: opacity 0.3s;
}

.pc-video-player .video-overlay:hover::before {
	opacity: 1;
}

.pc-video-player .play-button {
	background: rgba(255,255,255,0.95);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: var(--pc-primary);
	box-shadow: 0 8px 24px rgba(0,0,0,0.3);
	backdrop-filter: blur(10px);
	transition: var(--pc-transition);
	position: relative;
	z-index: 2;
}

.pc-video-player .play-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(76, 175, 80, 0.3);
	animation: play-button-pulse 2s infinite;
}

@keyframes play-button-pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.5);
		opacity: 0;
	}
}

.pc-video-player .video-overlay:hover .play-button {
	transform: scale(1.15);
	box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* ========================================
   Misc Widgets
   ======================================== */

/* Accordion */
.pc-accordion .accordion-item {
	background: #fff;
	border-radius: var(--pc-radius);
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: var(--pc-transition);
	border: 1px solid transparent;
}

.pc-accordion .accordion-item:hover,
.pc-accordion .accordion-item.active {
	border-color: rgba(76, 175, 80, 0.2);
	box-shadow: var(--pc-shadow-md);
}

.pc-accordion .accordion-header {
	padding: 20px 24px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--pc-transition);
	font-weight: 600;
	position: relative;
}

.pc-accordion .accordion-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, var(--pc-primary), var(--pc-secondary));
	opacity: 0;
	transition: opacity 0.3s;
}

.pc-accordion .accordion-item.active .accordion-header::before {
	opacity: 1;
}

.pc-accordion .accordion-header:hover {
	background: #f5f5f5;
}

.pc-accordion .accordion-icon {
	font-size: 18px;
	transition: transform 0.3s;
}

.pc-accordion .accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

.pc-accordion .accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.pc-accordion .accordion-item.active .accordion-content {
	max-height: 1000px;
}

.pc-accordion .accordion-body {
	padding: 18px 20px;
	color: #666;
	line-height: 1.6;
	border-top: 1px solid #e0e0e0;
}

/* Breadcrumbs */
.pc-breadcrumbs {
	padding: 15px 0;
}

.pc-breadcrumbs .breadcrumb-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.pc-breadcrumbs .breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pc-breadcrumbs .breadcrumb-item a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s;
}

.pc-breadcrumbs .breadcrumb-item a:hover {
	color: #4CAF50;
}

.pc-breadcrumbs .breadcrumb-item.active {
	color: #333;
	font-weight: 600;
}

.pc-breadcrumbs .separator {
	color: #999;
}

/* Countdown Timer */
.pc-countdown {
	text-align: center;
	padding: 40px 20px;
}

.pc-countdown .countdown-title {
	margin: 0 0 30px;
	font-size: 32px;
}

.pc-countdown .countdown-timer {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.pc-countdown .time-unit {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: var(--pc-radius);
	padding: 30px 35px;
	min-width: 120px;
	box-shadow: var(--pc-shadow-md);
	position: relative;
	overflow: hidden;
	transition: var(--pc-transition);
}

.pc-countdown .time-unit::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary));
}

.pc-countdown .time-unit:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: var(--pc-shadow-lg);
}

.pc-countdown .time-value {
	display: block;
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 10px;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pc-countdown .time-label {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
}

/* Newsletter Signup */
.pc-newsletter {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: var(--pc-radius);
	padding: 50px 40px;
	text-align: center;
	box-shadow: var(--pc-shadow-md);
	position: relative;
	overflow: hidden;
}

.pc-newsletter::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
	animation: newsletter-pulse 8s ease-in-out infinite;
}

@keyframes newsletter-pulse {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-10%, -10%) scale(1.1); }
}

.pc-newsletter .newsletter-icon {
	font-size: 56px;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
	display: inline-block;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: newsletter-icon-bounce 2s ease-in-out infinite;
}

@keyframes newsletter-icon-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.pc-newsletter .newsletter-title {
	margin: 0 0 10px;
	font-size: 28px;
}

.pc-newsletter .newsletter-description {
	margin: 0 0 25px;
	color: #666;
}

.pc-newsletter .newsletter-form {
	max-width: 500px;
	margin: 0 auto;
}

.pc-newsletter .form-group {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.pc-newsletter .newsletter-input {
	flex: 1;
	padding: 12px 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 15px;
}

.pc-newsletter .newsletter-input:focus {
	outline: none;
	border-color: #4CAF50;
}

.pc-newsletter .newsletter-button {
	padding: 12px 30px;
	background: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	white-space: nowrap;
}

.pc-newsletter .newsletter-button:hover {
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.pc-newsletter .newsletter-button:active {
	transform: translateY(0) scale(0.98);
}

.pc-newsletter .form-message {
	margin-top: 15px;
	padding: 10px;
	border-radius: 5px;
	display: none;
}

.pc-newsletter .form-message.success {
	background: #d4edda;
	color: #155724;
	display: block;
}

/* Progress Bar */
.pc-progress-bar {
	margin-bottom: 30px;
}

.pc-progress-bar .progress-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-weight: 600;
}

.pc-progress-bar .progress-track {
	background: #e8f5e9;
	border-radius: 50px;
	overflow: hidden;
	height: 14px;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.pc-progress-bar .progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary));
	border-radius: 50px;
	transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
	width: 0;
	position: relative;
	overflow: hidden;
}

.pc-progress-bar .progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

/* Social Share */
.pc-social-share {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.pc-social-share .share-label {
	font-weight: 600;
	color: #333;
}

.pc-social-share .share-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.pc-social-share .share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: white;
	text-decoration: none;
	transition: var(--pc-transition);
	font-size: 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	position: relative;
	overflow: hidden;
}

.pc-social-share .share-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
	transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
}

.pc-social-share .share-button:hover::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.pc-social-share .share-button:hover {
	transform: translateY(-5px) rotate(360deg);
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.pc-social-share .share-button.facebook { background: #1877f2; }
.pc-social-share .share-button.twitter { background: #1da1f2; }
.pc-social-share .share-button.linkedin { background: #0077b5; }
.pc-social-share .share-button.pinterest { background: #bd081c; }
.pc-social-share .share-button.email { background: #666; }

/* Tabs */
.pc-tabs {
	background: #fff;
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-md);
}

.pc-tabs .tab-nav {
	display: flex;
	border-bottom: 2px solid #e0e0e0;
	background: #f9f9f9;
	overflow-x: auto;
}

.pc-tabs .tab-button {
	padding: 18px 30px;
	border: none;
	background: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: var(--pc-text-gray);
	transition: var(--pc-transition);
	white-space: nowrap;
	position: relative;
}

.pc-tabs .tab-button:hover {
	background: rgba(76, 175, 80, 0.05);
	color: var(--pc-primary);
}

.pc-tabs .tab-button.active {
	color: #4CAF50;
}

.pc-tabs .tab-button.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary));
	border-radius: 3px 3px 0 0;
}

.pc-tabs .tab-content {
	padding: 30px;
}

.pc-tabs .tab-pane {
	display: none;
	animation: tab-fade-in 0.4s ease;
}

@keyframes tab-fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pc-tabs .tab-pane.active {
	display: block;
}

/* Timeline */
.pc-timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 0;
}

.pc-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 100%;
	background: linear-gradient(to bottom, var(--pc-primary), var(--pc-secondary));
	opacity: 0.3;
}

.pc-timeline .timeline-item {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	gap: 30px;
}

.pc-timeline .timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.pc-timeline .timeline-content {
	flex: 1;
	background: #fff;
	border-radius: var(--pc-radius);
	padding: 30px;
	box-shadow: var(--pc-shadow-md);
	position: relative;
	transition: var(--pc-transition);
}

.pc-timeline .timeline-content:hover {
	box-shadow: var(--pc-shadow-lg);
	transform: translateY(-5px);
}

.pc-timeline .timeline-content::before {
	content: '';
	position: absolute;
	top: 30px;
	width: 0;
	height: 0;
	border-style: solid;
}

.pc-timeline .timeline-item:nth-child(odd) .timeline-content::before {
	right: -15px;
	border-width: 10px 0 10px 15px;
	border-color: transparent transparent transparent #fff;
}

.pc-timeline .timeline-item:nth-child(even) .timeline-content::before {
	left: -15px;
	border-width: 10px 15px 10px 0;
	border-color: transparent #fff transparent transparent;
}

.pc-timeline .timeline-date {
	flex: 1;
	text-align: right;
	padding-top: 25px;
	font-weight: 600;
	color: #666;
}

.pc-timeline .timeline-item:nth-child(even) .timeline-date {
	text-align: left;
}

.pc-timeline .timeline-title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 600;
}

.pc-timeline .timeline-description {
	margin: 0;
	color: #666;
	line-height: 1.6;
}

.pc-timeline .timeline-marker {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2), 0 2px 8px rgba(0,0,0,0.2);
	z-index: 2;
	transition: var(--pc-transition);
}

.pc-timeline .timeline-item:hover .timeline-marker {
	transform: translateX(-50%) scale(1.3);
	box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.3), 0 4px 12px rgba(0,0,0,0.3);
}

/* ========================================
   Responsive - New Widgets
   ======================================== */

/* Smooth Scroll Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Add smooth hover transitions globally */
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Selection styling */
::selection {
	background: var(--pc-primary);
	color: white;
}

::-moz-selection {
	background: var(--pc-primary);
	color: white;
}

@media (max-width: 768px) {
	.pc-contact-form-wrapper .form-row {
		grid-template-columns: 1fr;
	}
	
	.pc-blog-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.pc-blog-card .blog-title {
		font-size: 18px;
	}
	
	.pc-contact-info {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.pc-features-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.pc-feature-box.style-icon-left {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.pc-image-gallery .gallery-grid.columns-2,
	.pc-image-gallery .gallery-grid.columns-3,
	.pc-image-gallery .gallery-grid.columns-4,
	.pc-image-gallery .gallery-grid.columns-5 {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	
	.pc-portfolio-grid.columns-2,
	.pc-portfolio-grid.columns-3,
	.pc-portfolio-grid.columns-4 {
		grid-template-columns: 1fr;
	}
	
	.pc-stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.pc-stats-counter.style-2 {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.pc-stats-counter .counter-number {
		font-size: 40px;
	}
	
	.pc-team-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
	
	.pc-countdown .time-unit {
		min-width: 80px;
		padding: 20px 15px;
	}
	
	.pc-countdown .time-value {
		font-size: 40px;
	}
	
	.pc-countdown .countdown-timer {
		gap: 15px;
	}
	
	.pc-newsletter {
		padding: 35px 25px;
	}
	
	.pc-newsletter .form-group {
		flex-direction: column;
	}
	
	.pc-newsletter .newsletter-button {
		width: 100%;
	}
	
	.pc-accordion .accordion-header {
		padding: 16px 18px;
		font-size: 15px;
	}
	
	.pc-tabs .tab-button {
		font-size: 14px;
		padding: 14px 20px;
	}
	
	.pc-tabs .tab-content {
		padding: 20px;
	}
	
	.pc-timeline::before {
		left: 20px;
	}
	
	.pc-timeline .timeline-item,
	.pc-timeline .timeline-item:nth-child(even) {
		flex-direction: column;
		padding-left: 50px;
	}
	
	.pc-timeline .timeline-date,
	.pc-timeline .timeline-item:nth-child(even) .timeline-date {
		text-align: left;
		padding-top: 0;
		font-size: 14px;
	}
	
	.pc-timeline .timeline-marker {
		left: 20px;
	}
	
	.pc-timeline .timeline-content {
		padding: 20px;
	}
	
	.pc-timeline .timeline-title {
		font-size: 18px;
	}
	
	.pc-video-player .play-button {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}
	
	.pc-contact-form-wrapper .contact-form {
		padding: 30px 25px;
	}
	
	.pc-contact-form-wrapper .form-title {
		font-size: 26px;
	}
	
	/* Reduce shadows on mobile for better performance */
	.pc-blog-card:hover,
	.pc-contact-info .info-item:hover,
	.pc-feature-box:hover,
	.pc-stats-counter:hover,
	.pc-team-member:hover,
	.pc-product-card:hover,
	.pc-product-grid .product-grid-item:hover {
		box-shadow: var(--pc-shadow-md);
	}
	
	/* Disable some animations on mobile for performance */
	.pc-newsletter::before,
	.pc-stats-counter::before {
		display: none;
	}
}

/* =================================================================
   Mobile Menu Component Override
   Hide old menu-toggle styles for headers 6-10 to prevent conflicts
   ================================================================= */

.site-header.header-6 .menu-toggle,
.site-header.header-7 .menu-toggle,
.site-header.header-8 .menu-toggle,
.site-header.header-9 .menu-toggle,
.site-header.header-10 .menu-toggle {
	display: none !important;
}

/* Show old menu navigation on desktop for headers 6-10 */
@media (min-width: 969px) {
	.site-header.header-6 .main-navigation,
	.site-header.header-7 .main-navigation,
	.site-header.header-8 .main-navigation,
	.site-header.header-9 .main-navigation,
	.site-header.header-10 .main-navigation {
		display: block !important;
	}
	
	.site-header.header-6 .navigation,
	.site-header.header-7 .navigation,
	.site-header.header-8 .navigation,
	.site-header.header-9 .navigation,
	.site-header.header-10 .navigation {
		display: flex !important;
	}
}


