/**
 * Rec Industrial Components Custom Styles
 */

/* Single Product Page Top Margin */
body.single-product .site-content,
body.single-product .content-area,
body.single-product .woocommerce,
body.single-product .ast-container,
body.single-product main {
	margin-top: 30px;
	padding-top: 20px;
}

@media (max-width: 768px) {
	body.single-product .site-content,
	body.single-product .content-area,
	body.single-product .woocommerce,
	body.single-product .ast-container,
	body.single-product main {
		margin-top: 20px;
		padding-top: 15px;
	}
}

/* Header Styles */
.rec-industrial-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjust header position when admin bar is visible */
.admin-bar .rec-industrial-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .rec-industrial-header {
		top: 46px;
	}
}

/* Add padding to body to prevent content overlap with fixed header on desktop */
@media screen and (min-width: 769px) {
	body {
		padding-top: 140px !important;
	}
	
	.admin-bar body {
		padding-top: 172px !important; /* 140px header + 32px admin bar */
	}
	
	/* Content spacing for pages without hero section - minimal padding */
	body:not(.home) .site-content,
	body:not(.home) .content-area,
	body:not(.home) .ast-container,
	body:not(.home) main,
	body.woocommerce-account .site-content,
	body.woocommerce-account .content-area,
	body.woocommerce-account .ast-container,
	body.woocommerce-account main,
	body.woocommerce-account .woocommerce {
		margin-top: 2px;
		padding-top: 2px;
	}
}

/* Make header non-sticky on mobile */
@media screen and (max-width: 768px) {
	.rec-industrial-header {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}
	
	.admin-bar .rec-industrial-header {
		top: auto;
	}
	
	/* Remove body padding that was added for fixed header */
	body {
		padding-top: 0 !important;
	}
	
	/* Remove content spacing on mobile */
	.site-content,
	.content-area,
	.ast-container,
	main,
	.woocommerce {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}
}

.rec-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Top Section */
.rec-header-top {
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rec-header-top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

/* Logo Styles */
.rec-logo {
	flex-shrink: 0;
}

.rec-logo-link {
	display: block;
	text-decoration: none;
}

.rec-logo-img {
	max-height: 50px;
	width: auto;
	display: block;
}

.rec-logo-text {
	text-decoration: none;
	color: inherit;
}

.rec-logo-name {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #ffffff;
	position: relative;
	display: inline-block;
}

.rec-logo-name::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border: 2px solid var(--rec-accent-color);
	border-radius: 50%;
	opacity: 0.8;
}

/* Search Bar Styles */
.rec-search-wrapper {
	flex: 1;
	max-width: 600px;
	position: relative;
}

.rec-product-search-form {
	display: flex;
	position: relative;
}

.rec-search-input {
	flex: 1;
	padding: 12px 20px;
	border: none;
	border-radius: 4px 0 0 4px;
	font-size: 14px;
	outline: none;
	background: #ffffff;
	color: #333;
}

.rec-search-input::placeholder {
	color: #999;
}

.rec-search-btn {
	padding: 12px 20px;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
}

.rec-search-btn:hover {
	opacity: 0.9;
}

.rec-search-btn svg {
	width: 20px;
	height: 20px;
}

/* Search Results Dropdown */
.rec-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	margin-top: 5px;
	max-height: 400px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}

.rec-search-results.active {
	display: block;
}

.rec-search-result-item {
	padding: 15px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: background 0.2s;
	text-decoration: none;
	color: #333;
}

.rec-search-result-item:hover {
	background: #f5f5f5;
}

.rec-search-result-item:last-child {
	border-bottom: none;
}

.rec-search-result-image {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
}

.rec-search-result-info {
	flex: 1;
}

.rec-search-result-title {
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
}

.rec-search-result-price {
	color: var(--rec-accent-color);
	font-weight: 600;
}

.rec-search-no-results {
	padding: 20px;
	text-align: center;
	color: #999;
}

/* Header Utilities */
.rec-header-utils {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.rec-language-selector,
.rec-auth-links,
.rec-cart-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rec-language-selector {
	cursor: pointer;
	position: relative;
	padding: 8px 12px;
	border-radius: 4px;
	transition: background 0.2s;
}

.rec-language-selector:hover {
	background: rgba(255, 255, 255, 0.1);
}

.rec-lang-text {
	font-size: 14px;
}

.rec-dropdown-arrow {
	width: 12px;
	height: 12px;
}

.rec-auth-links {
	gap: 15px;
	padding: 0 15px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.rec-sign-in,
.rec-register {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.2s;
}

.rec-sign-in:hover,
.rec-register:hover {
	opacity: 0.8;
}

.rec-account-dropdown {
	position: relative;
	cursor: pointer;
}

.rec-account-text {
	font-size: 14px;
}

.rec-account-menu {
	position: absolute;
	top: calc(100% + 5px);
	right: 0;
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	min-width: 180px;
	display: none;
	z-index: 1000;
}

/* Show dropdown on hover of parent or dropdown menu itself */
.rec-account-dropdown:hover .rec-account-menu,
.rec-account-menu:hover {
	display: block;
}

/* Create a bridge between dropdown button and menu to prevent hover gap */
.rec-account-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 5px;
	background: transparent;
	z-index: 999;
}

.rec-account-menu a {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #eee;
	transition: background 0.2s;
}

.rec-account-menu a:last-child {
	border-bottom: none;
}

.rec-account-menu a:hover {
	background: #f5f5f5;
}

/* Cart Styles */
.rec-cart-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.rec-cart-icon {
	width: 24px;
	height: 24px;
}

.rec-cart-count {
	position: absolute;
	top: -8px;
	left: 16px;
	background: var(--rec-accent-color);
	color: #ffffff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	min-width: 20px;
}

.rec-cart-count:empty {
	display: none;
}

.rec-cart-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.rec-cart-items {
	font-size: 12px;
	font-weight: 600;
}

.rec-cart-label {
	font-size: 14px;
}

/* Navigation Menu */
.rec-header-nav {
	padding: 12px 0;
	background: rgba(0, 0, 0, 0.1);
	position: relative;
}

/* Mobile Nav Toggle Button - Hidden on Desktop */
.rec-mobile-nav-toggle {
	display: none;
}

/* Desktop: Show menu, hide toggle */
@media (min-width: 769px) {
	.rec-main-nav {
		display: flex !important;
		max-height: none !important;
		padding: 0 !important;
		background: transparent !important;
	}
	
	.rec-main-nav-menu {
		flex-direction: row !important;
		justify-content: center !important;
		gap: 30px !important;
	}
	
	.rec-main-nav-menu li {
		width: auto !important;
		border-bottom: none !important;
	}
	
	.rec-nav-item {
		padding: 8px 0 !important;
		text-align: center !important;
		width: auto !important;
	}
	
	.rec-nav-item::after {
		display: block !important;
	}
}

.rec-main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.rec-main-nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.rec-main-nav-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rec-nav-item {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
	padding: 8px 0;
	transition: opacity 0.2s;
	position: relative;
}

.rec-nav-item:hover {
	color: #ffffff !important;
	opacity: 1;
}

.rec-nav-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--rec-accent-color);
	transition: width 0.3s;
}

.rec-nav-item:hover::after {
	width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.rec-header-top-inner {
		flex-wrap: wrap;
	}
	
	.rec-search-wrapper {
		order: 3;
		width: 100%;
		max-width: 100%;
		margin-top: 15px;
	}
	
	.rec-header-utils {
		flex-wrap: wrap;
		gap: 10px;
	}
}

@media (max-width: 768px) {
	.rec-container {
		padding: 0 15px;
	}
	
	.rec-header-top {
		padding: 12px 0;
	}
	
	.rec-logo-img {
		max-height: 40px;
	}
	
	.rec-logo-name {
		font-size: 24px;
	}
	
	.rec-search-input {
		padding: 10px 15px;
		font-size: 13px;
	}
	
	.rec-search-btn {
		padding: 10px 15px;
	}
	
	.rec-header-utils {
		gap: 8px;
	}
	
	.rec-auth-links {
		padding: 0 10px;
		gap: 10px;
	}
	
	/* Mobile Nav Toggle Button */
	.rec-mobile-nav-toggle {
		display: flex;
		align-items: center;
		gap: 10px;
		width: 100%;
		padding: 10px 15px;
		background: rgba(255, 255, 255, 0.1);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 4px;
		color: #ffffff;
		font-size: 14px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rec-mobile-nav-toggle:hover {
		background: rgba(255, 255, 255, 0.15);
		border-color: rgba(255, 255, 255, 0.3);
	}
	
	.rec-mobile-nav-toggle-icon {
		display: flex;
		flex-direction: column;
		gap: 3px;
		width: 20px;
		height: 16px;
		position: relative;
	}
	
	.rec-mobile-nav-toggle-icon span {
		display: block;
		width: 100%;
		height: 2px;
		background: #ffffff;
		border-radius: 2px;
		transition: all 0.3s ease;
	}
	
	.rec-mobile-nav-toggle.active .rec-mobile-nav-toggle-icon span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	
	.rec-mobile-nav-toggle.active .rec-mobile-nav-toggle-icon span:nth-child(2) {
		opacity: 0;
	}
	
	.rec-mobile-nav-toggle.active .rec-mobile-nav-toggle-icon span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
	
	.rec-mobile-nav-toggle-text {
		flex: 1;
		text-align: left;
	}
	
	/* Mobile Nav Menu - Dropdown */
	.rec-main-nav {
		display: none;
		flex-direction: column;
		gap: 0;
		width: 100%;
		background: rgba(0, 0, 0, 0.15);
		border-radius: 4px;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.4s ease;
	}
	
	.rec-main-nav.mobile-open {
		display: flex;
		max-height: 600px;
		padding: 10px 0;
	}
	
	.rec-main-nav-menu {
		flex-direction: column;
		gap: 0;
		width: 100%;
		align-items: stretch;
	}
	
	.rec-main-nav-menu li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.rec-main-nav-menu li:last-child {
		border-bottom: none;
	}
	
	.rec-nav-item {
		display: block;
		padding: 12px 15px;
		font-size: 14px;
		width: 100%;
		text-align: left;
		border-bottom: none;
	}
	
	.rec-nav-item:hover {
		background: rgba(255, 255, 255, 0.1);
		color: #ffffff !important;
		opacity: 1;
	}
	
	.rec-nav-item::after {
		display: none;
	}
	
	.rec-language-selector,
	.rec-sign-in,
	.rec-register,
	.rec-account-text {
		font-size: 12px;
	}
	
	.rec-cart-label {
		display: none;
	}
}

@media (max-width: 480px) {
	.rec-logo-name {
		font-size: 20px;
	}
	
	.rec-cart-text {
		display: none;
	}
	
	.rec-language-selector .rec-lang-text {
		display: none;
	}
	
	/* Extra Small Mobile */
	.rec-hero-section {
		padding: 10px 0;
	}
	
	.rec-container {
		padding: 0 10px;
	}
	
	.rec-hero-wrapper {
		gap: 10px;
	}
	
	.rec-hero-slider-wrapper {
		min-height: 200px;
	}
	
	.rec-hero-slider-wrapper[data-height-mode="custom"] {
		height: 200px;
		min-height: 200px;
	}
	
	.rec-slide {
		min-height: 200px;
	}
	
	.rec-slide-image img {
		min-height: 200px;
	}
	
	.rec-mega-menu-header {
		padding: 10px 12px;
	}
	
	.rec-mega-menu-item {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.rec-featured-product {
		padding: 12px;
	}
}

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

.rec-hero-section {
	padding: 30px 0;
	background: #f5f5f5;
	margin-top: 0;
	position: relative;
	z-index: 1;
}

.rec-hero-wrapper {
	display: grid;
	grid-template-columns: 250px 1fr 300px;
	gap: 20px;
	align-items: start;
}

/* Mega Menu Styles */
.rec-mega-menu-wrapper {
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: visible;
	position: relative;
	z-index: 100;
}

/* Hide toggle button on desktop */
.rec-mega-menu-toggle {
	display: none;
}

.rec-mega-menu-header {
	background: var(--rec-header-bg, #1e3a8a);
	padding: 15px 20px;
}

.rec-mega-menu-title {
	margin: 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.rec-mega-menu {
	position: relative;
	overflow: visible;
}

.rec-mega-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: visible;
}

.rec-mega-menu-item-wrapper {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: visible;
}

.rec-mega-menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	border-bottom: 1px solid #eee;
	color: #333;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 14px;
	position: relative;
}

.rec-mega-menu-item-wrapper:last-child .rec-mega-menu-item {
	border-bottom: none;
}

.rec-mega-menu-item:hover,
.rec-mega-menu-item-wrapper:hover > .rec-mega-menu-item,
.rec-mega-menu-item-wrapper.active > .rec-mega-menu-item {
	background: var(--rec-header-bg, #1e3a8a);
	color: #ffffff;
	padding-left: 25px;
}

.rec-mega-menu-image {
	width: 30px;
	height: 30px;
	margin-right: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 4px;
	background: #f9f9f9;
}

.rec-mega-menu-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rec-mega-menu-text {
	flex: 1;
}

.rec-mega-menu-arrow {
	width: 16px;
	height: 16px;
	color: #999;
	transition: transform 0.2s;
	flex-shrink: 0;
	margin-left: 8px;
}

.rec-mega-menu-item:hover .rec-mega-menu-arrow {
	transform: translateX(3px);
	color: var(--rec-accent-color, #f97316);
}

/* Submenu Styles - Mega Menu Format (Right Side) */
.rec-mega-submenu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 12px;
	background: #ffffff;
	box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
	position: absolute;
	left: 100%;
	top: 0;
	width: auto;
	min-width: 500px;
	max-width: none;
	z-index: 10000;
	margin-left: 0;
	border-radius: 0 4px 4px 0;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 6px;
	align-items: start;
	height: auto;
	max-height: 90vh;
	overflow-y: auto;
	grid-auto-rows: min-content;
}

/* Show submenu on hover */
.rec-mega-menu-item-wrapper:hover > .rec-mega-submenu,
.rec-mega-menu-item-wrapper.active > .rec-mega-submenu,
.rec-mega-menu-item-wrapper.menu-item-has-children:hover > .rec-mega-submenu,
.rec-mega-menu-item-wrapper:hover .rec-mega-submenu {
	display: grid !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.rec-mega-submenu-item {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenu Section (like Resistors, Capacitors) */
.rec-mega-submenu-section {
	margin-bottom: 8px;
}

.rec-mega-submenu-section:last-child {
	margin-bottom: 0;
}

.rec-mega-submenu-section-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0 0 6px 0;
	padding-bottom: 4px;
	border-bottom: 2px solid var(--rec-accent-color, #f97316);
	display: flex;
	align-items: center;
}

.rec-mega-submenu-section-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
	display: inline-block;
}

.rec-mega-submenu-section-title a:hover {
	color: var(--rec-accent-color, #f97316);
}

.rec-mega-submenu-section-title::after {
	content: ' >';
	color: var(--rec-accent-color, #f97316);
	font-weight: 600;
	margin-left: 5px;
}

/* Submenu Links Wrapper */
.rec-mega-submenu-links-wrapper {
	display: flex;
	gap: 6px;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.rec-mega-submenu-links-wrapper > .rec-mega-submenu-links {
	flex: 1;
	min-width: 0;
}

.rec-mega-submenu-links-wrapper > .rec-mega-submenu-section-image {
	order: 2;
	flex-shrink: 0;
	width: 100px;
}

/* Submenu Links Grid (3 columns with vertical separators) */
.rec-mega-submenu-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px 0;
	margin: 0;
	padding: 0;
	position: relative;
	width: 100%;
}

.rec-mega-submenu-links::before,
.rec-mega-submenu-links::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #ddd;
	opacity: 0.5;
}

.rec-mega-submenu-links::before {
	left: calc(33.333% - 0.5px);
}

.rec-mega-submenu-links::after {
	right: calc(33.333% - 0.5px);
}

.rec-mega-submenu-links > * {
	position: relative;
	z-index: 1;
	padding: 0 1px;
}

.rec-mega-submenu-links > *:nth-child(3n+1) {
	padding-left: 0;
}

.rec-mega-submenu-links > *:nth-child(3n) {
	padding-right: 0;
}

/* Remove separators from last item in each row */
.rec-mega-submenu-links > *:nth-child(3n)::after {
	display: none;
}

/* Add separator between items */
.rec-mega-submenu-links > *:not(:nth-child(3n))::after {
	content: ' |';
	color: #ddd;
	margin-left: 2px;
	font-weight: normal;
	position: absolute;
	right: -3px;
}

.rec-mega-submenu-link {
	display: inline-block;
	padding: 1px 0;
	color: #666;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 12px;
	position: relative;
	line-height: 1.2;
	white-space: nowrap;
}

.rec-mega-submenu-link:hover {
	color: var(--rec-accent-color, #f97316);
}


/* Submenu Image (Right side of section) */
.rec-mega-submenu-section-image {
	width: 100px;
	height: auto;
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-content: flex-start;
	align-items: flex-start;
	margin-left: auto;
	order: 2;
}

.rec-mega-submenu-section-image img {
	width: auto;
	max-width: 45px;
	height: auto;
	max-height: 45px;
	object-fit: contain;
	display: block;
	border-radius: 3px;
	background: #f9f9f9;
	padding: 2px;
}

.rec-mega-submenu-text {
	display: block;
}

/* Show submenu on hover or active state - Mega Menu Format */
.rec-mega-menu-item-wrapper.menu-item-has-children:hover > .rec-mega-submenu,
.rec-mega-menu-item-wrapper.menu-item-has-children.active > .rec-mega-submenu {
	display: grid !important;
}

/* Active/Hover state for parent item with submenu */
/* Active parent item styling - Blue background when submenu is open */
.rec-mega-menu-item-wrapper:hover > .rec-mega-menu-item,
.rec-mega-menu-item-wrapper.active > .rec-mega-menu-item {
	background: var(--rec-header-bg, #1e3a8a) !important;
	color: #ffffff !important;
}

.rec-mega-menu-item-wrapper:hover > .rec-mega-menu-item .rec-mega-menu-arrow,
.rec-mega-menu-item-wrapper.active > .rec-mega-menu-item .rec-mega-menu-arrow {
	color: #ffffff;
}

/* Arrow indicator for items with submenu */
.rec-mega-menu-item-wrapper.menu-item-has-children > .rec-mega-menu-item .rec-mega-menu-arrow {
	display: block;
}

/* Slider Styles */
.rec-hero-slider-wrapper {
	position: relative;
	background: var(--rec-header-bg, #1e3a8a);
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	min-height: 400px;
	width: 100%;
	height: 400px;
}

/* Auto height mode - expand to image */
.rec-hero-slider-wrapper[data-height-mode="auto"] {
	height: auto;
	min-height: 400px;
}

/* Custom height mode - fixed height */
.rec-hero-slider-wrapper[data-height-mode="custom"] {
	height: 400px;
	min-height: 400px;
	overflow: hidden;
}

.rec-hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.rec-slide {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: inherit;
	height: 100%;
	background: var(--rec-header-bg, #1e3a8a);
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	background-size: 100% 100%;
	overflow: hidden;
}

.rec-slide.has-image {
	background: transparent;
}

.rec-slide.active {
	display: block !important;
	position: absolute;
	top: 0;
	left: 0;
	min-height: inherit;
	width: 100%;
	z-index: 1;
}

.rec-slide-link {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	text-decoration: none;
	cursor: pointer;
}

.rec-slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	display: block;
}

/* Image Fit Modes */
.rec-slide-image img {
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: opacity 0.3s ease;
	display: block;
	object-fit: cover;
	object-position: center;
	min-height: 400px;
}

/* Cover mode - fill container, may crop */
.rec-slide-image-fit-cover img {
	object-fit: cover;
	object-position: center;
}

/* Contain mode - show full image, may have gaps */
.rec-slide-image-fit-contain img {
	object-fit: contain;
	object-position: center;
	background: transparent;
}

/* Auto mode - natural size */
.rec-slide-image-fit-auto {
	position: relative;
	width: auto;
	height: auto;
}

.rec-slide-image-fit-auto img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: none;
}

/* For auto height mode, adjust slide image container */
.rec-hero-slider-wrapper[data-height-mode="auto"] .rec-slide {
	min-height: auto;
	height: auto;
	position: absolute;
}

.rec-hero-slider-wrapper[data-height-mode="auto"] .rec-slide.active {
	display: block;
	position: absolute;
}

.rec-hero-slider-wrapper[data-height-mode="auto"] .rec-slide-link {
	position: relative;
	height: auto;
}

.rec-hero-slider-wrapper[data-height-mode="auto"] .rec-slide-image {
	position: relative;
	width: 100%;
	height: auto;
	min-height: 400px;
}

.rec-hero-slider-wrapper[data-height-mode="auto"] .rec-slide-image img {
	width: 100%;
	height: auto;
	min-height: 400px;
	object-fit: cover;
}

.rec-hero-slider-wrapper[data-height-mode="auto"] .rec-slide-image-fit-contain img {
	width: 100%;
	height: auto;
	object-fit: contain;
	min-height: auto;
}

.rec-slide-content {
	display: none;
}

.rec-slide-title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.3;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.rec-slide-subtitle {
	font-size: 18px;
	margin: 0 0 30px 0;
	opacity: 0.95;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.rec-slide-button {
	display: inline-block;
	padding: 12px 30px;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s;
	font-size: 14px;
}

.rec-slide-button:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Slider Navigation */
.rec-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	width: 60px;
	height: 60px;
	border-radius: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #60a5fa;
	z-index: 10;
	transition: all 0.3s ease;
	opacity: 0.9;
}

.rec-slider-nav:hover {
	color: #93c5fd;
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
}

.rec-slider-nav:active {
	transform: translateY(-50%) scale(0.95);
}

.rec-slider-prev {
	left: 20px;
}

.rec-slider-next {
	right: 20px;
}

.rec-slider-nav svg {
	width: 40px;
	height: 40px;
	transition: all 0.3s ease;
}

/* Glowing arrow effect */
.rec-arrow-glow {
	filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.8)) drop-shadow(0 0 12px rgba(96, 165, 250, 0.6));
	transition: all 0.3s ease;
}

.rec-slider-nav:hover .rec-arrow-glow {
	filter: drop-shadow(0 0 12px rgba(147, 197, 253, 1)) drop-shadow(0 0 18px rgba(147, 197, 253, 0.8)) drop-shadow(0 0 24px rgba(147, 197, 253, 0.6));
}

.rec-slider-prev:hover svg {
	transform: translateX(-2px);
}

.rec-slider-next:hover svg {
	transform: translateX(2px);
}

/* Slider Dots */
.rec-slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.rec-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0;
}

.rec-slider-dot.active,
.rec-slider-dot:hover {
	background: #ffffff;
	width: 12px;
	height: 12px;
}

/* Featured Product Styles */
.rec-featured-product-wrapper {
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.rec-featured-product {
	padding: 20px;
}

.rec-featured-product-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.rec-featured-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.rec-featured-more {
	color: #666;
	text-decoration: none;
	font-size: 12px;
	transition: color 0.2s;
}

.rec-featured-more:hover {
	color: var(--rec-accent-color, #f97316);
}

.rec-featured-product-image {
	margin-bottom: 15px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 4px;
	padding: 20px;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rec-featured-product-image img {
	max-width: 100%;
	height: auto;
	max-height: 200px;
	object-fit: contain;
}

.rec-featured-placeholder {
	color: #999;
	font-size: 14px;
}

.rec-featured-product-info {
	text-align: center;
}

.rec-featured-brand {
	color: var(--rec-header-bg, #1e3a8a);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.rec-featured-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 600;
}

.rec-featured-title a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s;
}

.rec-featured-title a:hover {
	color: var(--rec-accent-color, #f97316);
}

.rec-featured-description {
	font-size: 12px;
	color: #666;
	margin: 0 0 15px 0;
	line-height: 1.5;
}

.rec-featured-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	color: #ffffff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.rec-featured-cta:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.rec-featured-cta svg {
	width: 16px;
	height: 16px;
}

/* Hero Section Responsive */
@media (max-width: 1200px) {
	.rec-hero-wrapper {
		grid-template-columns: 220px 1fr 280px;
		gap: 15px;
	}
	
	.rec-slide-title {
		font-size: 28px;
	}
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
	.rec-hero-wrapper {
		grid-template-columns: 200px 1fr 250px;
		gap: 15px;
	}
	
	.rec-mega-menu-wrapper {
		max-width: 100%;
	}
	
	.rec-hero-slider-wrapper {
		min-height: 350px;
	}
	
	.rec-hero-slider-wrapper[data-height-mode="custom"] {
		height: 350px;
		min-height: 350px;
	}
	
	.rec-slide {
		min-height: 350px;
	}
	
	.rec-slide-image img {
		min-height: 350px;
	}
	
	.rec-featured-product-wrapper {
		max-width: 100%;
	}
	
	.rec-slide-title {
		font-size: 24px;
	}
	
	.rec-slide-content {
		padding: 30px 20px;
	}
}

@media (max-width: 768px) {
	.rec-hero-section {
		padding: 0;
		margin-top: 0 !important;
	}
	
	.rec-container {
		padding: 15px;
	}
	
	.rec-hero-wrapper {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	
	/* Mobile: 3 Layouts in one section */
	.rec-mega-menu-wrapper,
	.rec-hero-slider-wrapper,
	.rec-featured-product-wrapper {
		width: 100%;
		order: unset;
	}
	
	/* Mega Menu Toggle Button - Mobile Only */
	.rec-mega-menu-toggle {
		display: flex;
		align-items: center;
		gap: 12px;
		width: 100%;
		padding: 12px 15px;
		background: var(--rec-header-bg, #1e3a8a);
		border: none;
		border-radius: 8px;
		color: #ffffff;
		font-size: 14px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		margin-bottom: 0;
	}
	
	/* Show mega menu header on desktop */
	.rec-mega-menu-header {
		display: block;
	}
	
	.rec-mega-menu-toggle:hover {
		background: #1e40af;
	}
	
	.rec-mega-menu-toggle-icon {
		display: flex;
		flex-direction: column;
		gap: 4px;
		width: 20px;
		height: 16px;
		position: relative;
	}
	
	.rec-mega-menu-toggle-icon span {
		display: block;
		width: 100%;
		height: 2px;
		background: #ffffff;
		border-radius: 2px;
		transition: all 0.3s ease;
	}
	
	.rec-mega-menu-toggle.active .rec-mega-menu-toggle-icon span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	
	.rec-mega-menu-toggle.active .rec-mega-menu-toggle-icon span:nth-child(2) {
		opacity: 0;
	}
	
	.rec-mega-menu-toggle.active .rec-mega-menu-toggle-icon span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
	
	.rec-mega-menu-toggle-text {
		flex: 1;
		text-align: left;
	}
	
	.rec-mega-menu-wrapper {
		position: relative;
	}
	
	.rec-mega-menu-header {
		display: none;
	}
	
	.rec-mega-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #ffffff;
		border-radius: 0 0 8px 8px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
		z-index: 1000;
		margin-top: 0;
	}
	
	.rec-mega-menu-wrapper.mobile-open .rec-mega-menu {
		max-height: 600px;
		overflow-y: auto;
	}
	
	.rec-hero-slider-wrapper {
		min-height: 250px;
		border-radius: 8px;
		overflow: hidden;
	}
	
	.rec-hero-slider-wrapper[data-height-mode="custom"] {
		height: 250px;
		min-height: 250px;
	}
	
	.rec-hero-slider-wrapper[data-height-mode="auto"] {
		min-height: 250px;
	}
	
	.rec-slide {
		min-height: 250px;
	}
	
	.rec-slide-image img {
		min-height: 250px;
	}
	
	.rec-featured-product-wrapper {
		width: 100%;
	}
	
	.rec-featured-product {
		padding: 15px;
	}
	
	.rec-featured-product-image {
		margin: 15px 0;
	}
	
	.rec-featured-product-image img {
		max-height: 200px;
	}
	
	.rec-slide-title {
		font-size: 20px;
	}
	
	.rec-slide-subtitle {
		font-size: 14px;
	}
	
	.rec-slide-content {
		padding: 20px 15px;
	}
	
	.rec-slider-nav {
		width: 50px;
		height: 50px;
		opacity: 0.85;
	}
	
	.rec-slider-nav svg {
		width: 32px;
		height: 32px;
	}
	
	.rec-slider-prev {
		left: 15px;
	}
	
	.rec-slider-next {
		right: 15px;
	}
	
	.rec-slider-nav:hover {
		opacity: 1;
		transform: translateY(-50%) scale(1.08);
	}
	
	
	.rec-mega-menu-title {
		font-size: 14px;
		margin: 0;
	}
	
	.rec-mega-menu {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}
	
	.rec-mega-menu-wrapper.mobile-open .rec-mega-menu {
		max-height: 3000px;
	}
	
	.rec-mega-menu-item {
		padding: 12px 15px;
		font-size: 14px;
	}
	
	.rec-mega-menu-arrow {
		width: 18px;
		height: 18px;
		transition: transform 0.3s ease;
	}
	
	.rec-mega-menu-item-wrapper.active > .rec-mega-menu-item .rec-mega-menu-arrow {
		transform: rotate(90deg);
	}
	
	.rec-mega-submenu {
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-top: 1px solid #f0f0f0;
		background: #f9f9f9;
		display: none;
		grid-template-columns: 1fr;
		gap: 0;
		border-radius: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease, padding 0.4s ease;
	}
	
	.rec-mega-menu-item-wrapper.active > .rec-mega-submenu {
		display: block !important;
		max-height: 3000px;
		padding: 10px 0;
	}
	
	.rec-mega-submenu-section {
		margin-bottom: 0;
		padding: 10px 15px;
		border-bottom: 1px solid #eee;
	}
	
	.rec-mega-submenu-section:last-child {
		border-bottom: none;
	}
	
	.rec-mega-submenu-section-title {
		font-size: 13px;
		font-weight: 600;
		color: #333;
		margin: 0 0 8px 0;
		padding-bottom: 6px;
		border-bottom: 2px solid var(--rec-accent-color, #f97316);
		text-align: center;
		justify-content: center;
	}
	
	.rec-mega-submenu-links-wrapper {
		flex-direction: column;
		gap: 0;
		align-items: center;
	}
	
	.rec-mega-submenu-links {
		grid-template-columns: 1fr;
		gap: 6px 0;
		padding: 0;
		width: 100%;
		text-align: center;
	}
	
	.rec-mega-submenu-links::before,
	.rec-mega-submenu-links::after {
		display: none;
	}
	
	.rec-mega-submenu-links > *::after {
		display: none;
	}
	
	.rec-mega-submenu-link {
		display: block;
		padding: 8px 0;
		font-size: 13px;
		color: #666;
		text-decoration: none;
		border-bottom: 1px solid #f0f0f0;
		transition: all 0.2s;
		text-align: center;
	}
	
	.rec-mega-submenu-link:last-child {
		border-bottom: none;
	}
	
	.rec-mega-submenu-link:hover {
		color: var(--rec-accent-color, #f97316);
		padding-left: 0;
		transform: scale(1.05);
	}
	
	.rec-mega-submenu-section-image {
		display: none;
	}
	
	/* Slider Dots - Mobile */
	.rec-slider-dots {
		bottom: 15px;
		gap: 6px;
	}
	
	.rec-slider-dot {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 480px) {
	.rec-mega-menu-title {
		font-size: 14px;
		padding: 12px 15px;
	}
	
	.rec-mega-menu-item {
		padding: 10px 15px;
		font-size: 13px;
	}
	
	.rec-slide-title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	
	.rec-slide-button {
		padding: 10px 20px;
		font-size: 12px;
	}
	
	.rec-featured-product {
		padding: 15px;
	}
	
	.rec-featured-product-image {
		min-height: 150px;
		padding: 15px;
	}
}

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

.rec-featured-section {
	padding: 40px 0;
	background: #f8f9fa;
}

.rec-featured-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

.rec-manufacturers-section {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.rec-advantage-section {
	width: 100%;
	margin-top: 30px;
}

/* Left Sidebar: FAQ and Notice */
.rec-featured-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* FAQ Section */
.rec-faq-section,
.rec-notice-section {
	background: #ffffff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rec-faq-header,
.rec-notice-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.rec-faq-title,
.rec-notice-title {
	font-size: 18px;
	font-weight: 600;
	color: #1e3a8a;
	margin: 0;
}

.rec-faq-more,
.rec-notice-more {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #1e3a8a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
	padding: 5px 10px;
	border-radius: 4px;
}

.rec-faq-more:hover,
.rec-notice-more:hover {
	color: var(--rec-accent-color, #f97316);
	background: rgba(249, 115, 22, 0.1);
}

.rec-faq-more svg,
.rec-notice-more svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.rec-faq-image,
.rec-notice-image {
	margin-bottom: 15px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	height: 120px;
	background-size: cover;
	background-position: center;
}

.rec-faq-image img,
.rec-notice-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rec-faq-items,
.rec-notice-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rec-faq-item,
.rec-notice-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s;
}

.rec-faq-item:hover,
.rec-notice-item:hover {
	background: #f5f5f5;
	color: var(--rec-accent-color, #f97316);
}

.rec-faq-item svg,
.rec-notice-item svg {
	flex-shrink: 0;
}

.rec-faq-item span,
.rec-notice-item span {
	flex: 1;
	font-size: 14px;
}

/* Manufacturers Section */
.rec-manufacturers-section {
	background: #ffffff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rec-manufacturers-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.rec-manufacturers-title-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rec-manufacturers-title-bar {
	width: 4px;
	height: 24px;
	background: #1e3a8a;
	border-radius: 2px;
	flex-shrink: 0;
}

.rec-manufacturers-title {
	font-size: 20px;
	font-weight: 600;
	color: #1e3a8a;
	margin: 0;
	display: block;
}

.rec-manufacturers-more {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s;
}

.rec-manufacturers-more:hover {
	color: #1e3a8a;
}

.rec-manufacturers-more span {
	font-size: 14px;
	font-weight: 500;
}

.rec-manufacturers-more-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--rec-accent-color, #f97316);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	padding: 0;
	flex-shrink: 0;
	pointer-events: none;
}

.rec-manufacturers-more:hover .rec-manufacturers-more-btn {
	background: #e8620d;
	transform: scale(1.1);
}

.rec-manufacturers-more-btn svg {
	width: 16px;
	height: 16px;
	color: #ffffff;
}

.rec-manufacturers-slider-wrapper {
	position: relative;
	overflow: visible;
	padding: 0;
}

.rec-manufacturers-slider {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-auto-rows: 0;
	max-height: 220px;
	height: 220px;
	gap: 15px;
	overflow: hidden;
	padding: 10px 0;
}

.rec-manufacturers-slider[data-items-per-row="2"] {
	grid-template-columns: repeat(2, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="3"] {
	grid-template-columns: repeat(3, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="4"] {
	grid-template-columns: repeat(4, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="5"] {
	grid-template-columns: repeat(5, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="6"] {
	grid-template-columns: repeat(6, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="7"] {
	grid-template-columns: repeat(7, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="8"] {
	grid-template-columns: repeat(8, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="9"] {
	grid-template-columns: repeat(9, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="10"] {
	grid-template-columns: repeat(10, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="11"] {
	grid-template-columns: repeat(11, 1fr);
}

.rec-manufacturers-slider[data-items-per-row="12"] {
	grid-template-columns: repeat(12, 1fr);
}

.rec-manufacturer-logo {
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 20px 15px;
	background: #ffffff;
	border-radius: 6px;
	transition: all 0.3s;
	height: 100px;
	max-height: 100px;
	border: 1px solid #f0f0f0;
	overflow: hidden;
}

.rec-manufacturer-logo:hover {
	background: #f8f9fa;
	border-color: #e0e0e0;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rec-manufacturer-logo img {
	max-width: 100%;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block !important;
}

.rec-manufacturer-logo span {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

.rec-manufacturers-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #f5f5f5;
	border: none;
	border-radius: 4px;
	width: 28px;
	height: 50px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	opacity: 1 !important;
	visibility: visible !important;
}

.rec-manufacturers-nav:hover {
	background: #e8e8e8;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.rec-manufacturers-prev {
	left: 0;
}

.rec-manufacturers-next {
	right: 0;
}

.rec-manufacturers-nav svg {
	width: 14px !important;
	height: 14px !important;
	stroke: #1e3a8a !important;
	stroke-width: 2.5 !important;
	display: block !important;
	fill: none !important;
}
}

.rec-manufacturers-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 25px;
}

.rec-manufacturers-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s;
}

.rec-manufacturers-dot.active {
	background: #1e3a8a;
	width: 24px;
	border-radius: 4px;
}

.rec-manufacturers-dot:not(.active) {
	background: #999;
}

/* Advantage Section */
.rec-advantage-section {
	margin-top: 0;
	background: #ffffff;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rec-advantage-title-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.rec-advantage-title-bar {
	width: 4px;
	height: 24px;
	background: #1e3a8a;
	border-radius: 2px;
	flex-shrink: 0;
}

.rec-advantage-title {
	font-size: 20px;
	font-weight: 600;
	color: #1e3a8a;
	margin: 0;
}

.rec-advantage-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.rec-advantage-item {
	position: relative;
	padding: 40px 25px;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
	transition: all 0.3s;
	border: 1px solid #e9ecef;
	min-height: 200px;
}

.rec-advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.rec-advantage-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.15;
	z-index: 1;
	filter: blur(2px);
}

.rec-advantage-content {
	position: relative;
	z-index: 2;
}

.rec-advantage-number {
	font-size: 32px;
	font-weight: 700;
	color: #1e3a8a;
	margin-bottom: 10px;
	line-height: 1;
}

.rec-advantage-label {
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 6px;
	text-decoration: underline;
}

.rec-advantage-subtitle {
	font-size: 13px;
	color: #333;
	line-height: 1.4;
	font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.rec-featured-wrapper {
		grid-template-columns: 250px 1fr;
		gap: 20px;
	}
	
	.rec-manufacturers-slider {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.rec-advantage-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.rec-featured-section {
		padding: 30px 0;
	}
	
	.rec-featured-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.rec-featured-sidebar {
		order: 2;
	}
	
	.rec-manufacturers-section {
		order: 1;
		padding: 20px;
	}
	
	.rec-manufacturers-slider {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	
	.rec-manufacturers-nav {
		width: 35px;
		height: 35px;
	}
	
	.rec-manufacturers-prev {
		left: -15px;
	}
	
	.rec-manufacturers-next {
		right: -15px;
	}
	
	.rec-advantage-section {
		padding: 20px;
	}
	
	.rec-advantage-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.rec-advantage-item {
		padding: 25px 20px;
	}
	
	.rec-advantage-number {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.rec-manufacturers-slider {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.rec-manufacturers-nav {
		display: none;
	}
}
