:root {
	--primary-color: #4878DB;
	--secondary-color: #1d3557;
	--accent-color: #3781ea;
	--light-bg: #f8f9fa;
	--border-color: #dee2e6;
	--success-color: #06d6a0;
}

* {
	font-family: 'Vazir', Tahoma, Geneva, Verdana, sans-serif;
	text-decoration: none!important;
}
button,button:hover,button:focus{
   border:none!important;
}
body {
	padding-bottom: 0;
	background-color: #f5f5f5;
}
html body img{
	max-width:100%;
	height:auto;
}
/* Enhanced top header with more options */
.top-header {
	background-color: var(--secondary-color);
	color: white;
	padding: 8px 0;
	font-size: 0.85rem;
}

.top-header a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
	transition: color 0.3s;
}

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

/* Improved main header with better spacing */
.main-header {
	background-color: white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.logo i {
	font-size: 2rem;
}

/* Enhanced search box with category dropdown */
.search-box {
	position: relative;
	max-width: 700px;
	display: flex;
	gap: 0;
}

.search-category {
	background-color: #f8f9fa;
	border: 2px solid var(--primary-color);
	border-left: none;
	padding: 10px 15px;
	border-radius: 0 25px 25px 0;
	font-size: 0.9rem;
	min-width: 140px;
}

.search-box input {
	border-radius: 0;
	padding: 10px 15px 10px 20px;
	border: 2px solid var(--primary-color);
	border-right: none;
	border-left: none;
	flex: 1;
}

.search-box button {
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 25px 0 0 25px;
	padding: 10px 25px;
	color: white;
	font-weight: 600;
	transition: background-color 0.3s;
}

.search-box button:hover {
	background-color: #4878DB;
}

/* Better header icons with badges */
.header-icons a {
	color: var(--secondary-color);
	text-decoration: none;
	margin: 0;
	font-size: 12px;
	position: relative;
	transition: color 0.3s;
	width:58px;
	height:58px;
	margin-left:5px;
	margin-right:5px;
}

.header-icons a:hover {
	color: var(--primary-color);
}

.header-icons i {
	margin:auto;
	font-size: 1.4rem;
	display: block;
	margin-bottom: 3px;
	height:35px;
	width: 35px;
	line-height:35px;
}

.badge-notification {
	position: absolute;
	top: -5px;
	left: -5px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	font-size: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Enhanced navigation with hover effects */
.main-nav {
	background-color: white;
	border-bottom: 1px solid var(--border-color);
	padding: 12px 0;
	position: relative;
	z-index: 999999;
}

.main-nav a {
	color: var(--secondary-color);
	text-decoration: none;
	padding: 0px 10px;
	margin: 0 3px;
	border-radius: 6px;
	transition: all 0.3s;
	font-weight: 500;
	font-size: 0.95rem;
}

.main-nav a:hover {
	background-color: var(--light-bg);
	color: var(--primary-color)!important;
	transform: translateY(-2px);
}

.categories-btn {
	background-color: var(--primary-color);
	color: white !important;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 600;
}

.categories-btn:hover {
	background-color: #4878DB;
	transform: translateY(-2px);
}
.right-sidebars{
	position: relative;
	z-index: 999;
}
.right-sidebars ul,.right-sidebars li{
	list-style:none!important;
}
/* Improved sidebar with better styling */
.sidebar {
	background-color: white;
	border-radius: 10px;
	padding: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 90px;
}

.sidebar-header {
	background: linear-gradient(135deg, var(--primary-color), #4878DB);
	color: white;
	padding: 18px 20px;
	font-weight: bold;
	font-size: 1.1rem;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

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

.sidebar ul li {
	border-bottom: 1px solid var(--border-color);
}

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

.sidebar ul li a {
	color: #333;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	padding: 10px 10px;
	transition: all 0.3s;
	text-align: right!important;
}

.sidebar ul li a:hover {
	background-color: #fff5f5;
	color: var(--primary-color);
	padding-right: 25px;
}

.sidebar ul li a i {
	color: var(--primary-color);
	font-size: 1.1rem;
}
.sidebar ul li a div {
	width: 100%;
	padding-right:10px;
	
}
.sidebar ul li a span.badge{
	position: absolute;
	left:30px;
}
/* Mega Menu Styles */
.mega-menu-item {
	margin-bottom: 5px;
}

.category-link {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	text-decoration: none;
	color: #333;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.category-link:hover {
	background-color: #f8f9fa;
	color: #007bff;
}

/* Mega Menu Content */
.mega-menu-content {
	position: absolute;
	right: 100%;
	top: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	z-index: 1000;
	min-width: 800px;
	max-width: 1000px;
	display: none;
	padding: 10px;
	z-index: 9999;
}

.mega-menu-item:hover .mega-menu-content {
	display: block;
	height:100%;
}

.mega-menu-container {
	display: flex;
	gap: 30px;
}

.mega-menu-columns {
	display: flex;
	gap: 20px;
	flex: 1;
}

.mega-menu-column {
	flex: 1;
	min-width: 200px;
}

.mega-menu-subcategory {
	margin-bottom: 20px;
}

.mega-menu-subcategory-title {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
	border-bottom: 2px solid #007bff;
	padding-bottom: 5px;
}

.mega-menu-subcategory-title a {
	text-decoration: none;
	color: #333;
	display: flex;
	align-items: center;
}

.mega-menu-subcategory-title a:hover {
	color: #007bff;
}

.mega-menu-third-level {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-menu-third-item {
	margin-bottom: 5px;
}

.mega-menu-third-link {
	display: flex;
	align-items: center;
	padding: 5px 8px;
	text-decoration: none;
	color: #666;
	font-size: 0.9rem;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.mega-menu-third-link:hover {
	background-color: #f8f9fa;
	color: #007bff;
}

/* Hot Products Section */
.mega-menu-hot-products {
	width: 250px;
	border-right: 1px solid #eee;
	padding-right: 20px;
}

.hot-products-title {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
	border-bottom: 2px solid #dc3545;
	padding-bottom: 5px;
}

.hot-products-carousel {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hot-product-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.hot-product-item:hover {
	background-color: #f8f9fa;
}

.hot-product-image {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 5px;
}

.hot-product-title {
	font-size: 0.85rem;
	color: #333;
	line-height: 1.3;
}

/* Badge styles */
.badge {
	font-size: 0.7rem;
	padding: 2px 6px;
	margin-right: 5px;
}

/* Icons */
.bi-dot {
	font-size: 0.6rem;
	color: #ccc;
}

/* Responsive */
@media (max-width: 1200px) {
	.mega-menu-content {
			min-width: 600px;
			max-width: 700px;
	}
	
	.mega-menu-columns {
			gap: 15px;
	}
	
	.mega-menu-column {
			min-width: 150px;
	}
}

@media (max-width: 768px) {
	.mega-menu-content {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			min-width: 100%;
			max-width: 100%;
			border-radius: 0;
			z-index: 9999;
	}
	
	.mega-menu-container {
			flex-direction: column;
			gap: 20px;
	}
	
	.mega-menu-columns {
			flex-direction: column;
			gap: 15px;
	}
	
	.mega-menu-hot-products {
			width: 100%;
			border-right: none;
			border-top: 1px solid #eee;
			padding-right: 0;
			padding-top: 20px;
	}
}
/* Enhanced hero banner with better gradient and layout */
.hero-banner {
	border-radius: 15px;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.banner-item_content{
	position: absolute;
	right:0px;
	bottom:0px;
	left:0;
	padding: 30px;
	background: rgba(0,0,0,0.5);
	z-index: 9;
}
.banner-slider.owl-carousel .owl-item img{
	width:100%;
	height: 450px;
	min-width:100%;
}
@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-banner h2 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-banner p {
	font-size: 1.2rem;
	margin-bottom: 25px;
	opacity: 0.95;
}

.hero-banner .btn {
	background-color: white;
	color: #667eea;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 600;
	border: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s;
}

.hero-banner .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Better feature cards with icons and hover effects */
.feature-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 35px;
}

.feature-card {
	background: white;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	cursor: pointer;
	border: 2px solid transparent;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color);
}

.feature-card i {
	font-size: 3.5rem;
	margin-bottom: 15px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.feature-card h5 {
	font-weight: bold;
	margin-bottom: 8px;
	color: var(--secondary-color);
}

.feature-card p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}

/* Enhanced section titles */
.section-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom:15px;
	color: var(--secondary-color);
	border-right: 1px solid var(--primary-color);
	padding-right: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-title .view-all {
	font-size: 0.9rem;
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.section-title .view-all:hover {
	color: #4878DB;
}

/* Better product grid with improved cards */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.product-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
	cursor: pointer;
	border: 2px solid transparent;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	border-color: var(--primary-color);
}

.product-card-image {
	position: relative;
	overflow: hidden;
	background-color: #f8f9fa;
}

.product-card .product-card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s;
}

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

.product-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--primary-color);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

.product-card-body {
	padding: 18px;
}

.product-card h6 {
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--secondary-color);
	font-size: 0.95rem;
	min-height: 40px;
}

.product-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.product-card .price {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.1rem;
}

.product-card .rating {
	color: #ffc107;
	font-size: 0.85rem;
}

.product-card .supplier {
	color: #666;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
	gap: 5px;
}

.product-card .supplier i {
	color: var(--success-color);
}

/* Enhanced right sidebar */
.right-sidebar {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
}

.right-sidebar h6 {
	font-weight: bold;
	margin-bottom: 18px;
	color: var(--secondary-color);
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--border-color);
}

.suggestion-item {
	display: flex;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	transition: background-color 0.3s;
	cursor: pointer;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 8px;
}

.suggestion-item:hover {
	background-color: #f8f9fa;
}

.suggestion-item img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 8px;
	margin-left: 12px;
}

.suggestion-item-info h6 {
	font-size: 0.9rem;
	margin-bottom: 5px;
	font-weight: 600;
	border: none;
	padding: 0;
}

.suggestion-item-info p {
	font-size: 0.75rem;
	color: #666;
	margin: 0;
}

.suggestion-item-info .price {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 0.85rem;
}

/* Better mobile bottom navigation */
.mobile-bottom-nav {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	padding: 8px 0 5px;
}

.mobile-bottom-nav .nav-item {
	flex: 1;
	text-align: center;
	width:55px;
	white-space: nowrap;
}

.mobile-bottom-nav .nav-link {
	color: #666;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px;
	font-size: 0.7rem;
	transition: all 0.3s;
	position: relative;
}

.mobile-bottom-nav .nav-link i {
	font-size: 1.6rem;
	margin-bottom: 3px;
	transition: transform 0.3s;
}

.mobile-bottom-nav .nav-link.active {
	color: var(--primary-color);
}

.mobile-bottom-nav .nav-link.active i {
	transform: scale(1.2);
}

/* Improved mobile sidebar */
.mobile-sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1040;
	backdrop-filter: blur(2px);
}

.mobile-sidebar {
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 320px;
	height: 100%;
	background: white;
	z-index: 1050;
	transition: right 0.3s ease-in-out;
	overflow-y: auto;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-sidebar.active {
	right: 0;
}

.mobile-sidebar-header {
	background: linear-gradient(135deg, var(--primary-color), #4878DB);
	color: white;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 10;
}

.mobile-sidebar-header h5 {
	margin: 0;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 10px;
}

.close-sidebar {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	font-size: 1.8rem;
	color: white;
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s;
}

.close-sidebar:hover {
	background: rgba(255, 255, 255, 0.3);
}

.mobile-sidebar ul {
	padding: 15px;
}

.mobile-sidebar ul li {
	margin-bottom: 5px;
}

.mobile-sidebar ul li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	text-decoration: none;
	color: #333;
	border-radius: 8px;
	transition: all 0.3s;
	font-weight: 500;
}

.mobile-sidebar ul li a:hover {
	background-color: #fff5f5;
	color: var(--primary-color);
	padding-right: 20px;
}

.mobile-sidebar ul li a i.category-icon {
	margin-left: 10px;
	font-size: 1.2rem;
	color: var(--primary-color);
}

/* Add banner section */
.promo-banner {
	background: linear-gradient(135deg, var(--accent-color), #ff9500);
	border-radius: 12px;
	padding: 30px;
	color: white;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-banner h4 {
	font-weight: bold;
	margin-bottom: 10px;
}

.promo-banner p {
	margin-bottom: 20px;
	opacity: 0.95;
}

.promo-banner .btn {
	background-color: white;
	color: var(--accent-color);
	padding: 10px 30px;
	border-radius: 25px;
	font-weight: 600;
	border: none;
}

/* Add supplier section */
.supplier-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s;
}

.supplier-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.supplier-logo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 15px;
	border: 3px solid var(--border-color);
}

.supplier-card h6 {
	font-weight: 600;
	margin-bottom: 8px;
}

.supplier-card .verified {
	color: var(--success-color);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.categories-menu{
	position: relative;
	line-height:40px;
}
.categories-menu *{
	list-style:none;
}
.categories-menu a{
	display:block;
}
.categories-menu li > ul{
	background: #fff;
	position: absolute;
	z-index: 999;
	right: 0;
	top: 100%;
	padding: 15px 15px 15px 15px;
	border-radius: 0 5px 5px 5px;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
	display: none;
}
.categories-menu > li:hover > ul{
	display:block;
}
.categoreis-submenu{
	width: 550px;
}
.categories-menu:hover > a{
	background: #fff;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
	color:var(--primary-color);
}
.categories-menu > div.categoreis-submenu a{
	line-height:30px;
	font-size:13px;
}
/* Added mega menu styles */
.mega-menu-wrapper {
	position: relative;
}

.mega-menu {
	position: absolute;
	top: 40px;
	right: 0;
	left: 0;
	background: white;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	border-radius: 0 0 12px 12px;
	padding: 30px;
	display: none;
	z-index: 999;
	max-height: 600px;
	overflow-y: auto;
}

.mega-menu.active {
	display: block;
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

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

.mega-menu-column {
	padding: 0 15px;
}

.mega-menu-column h6 {
	font-weight: bold;
	color: var(--secondary-color);
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--primary-color);
	display: flex;
	align-items: center;
	gap: 8px;
}

.mega-menu-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mega-menu-column ul li {
	margin-bottom: 8px;
}

.mega-menu-column ul li a {
	color: #555;
	text-decoration: none;
	display: block;
	padding: 6px 10px;
	border-radius: 6px;
	transition: all 0.3s;
	font-size: 0.9rem;
}

.mega-menu-column ul li a:hover {
	background-color: #fff5f5;
	color: var(--primary-color);
	padding-right: 15px;
}

.mega-menu-featured {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 12px;
	padding: 20px;
	color: white;
	text-align: center;
}

.mega-menu-featured img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
}

.mega-menu-featured h6 {
	color: white;
	border: none;
	padding: 0;
	margin-bottom: 10px;
}

.mega-menu-featured .btn {
	background: white;
	color: #667eea;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.85rem;
}

/* Mobile mega menu styles */
.mobile-mega-menu {
	display: none;
	background: white;
	padding: 15px;
	border-radius: 8px;
	margin-top: 10px;
}

.mobile-mega-menu.active {
	display: block;
	animation: slideDown 0.3s ease-out;
}

.mobile-category-item {
	border-bottom: 1px solid var(--border-color);
}

.mobile-category-item:last-child {
	border-bottom: none;
}

.mobile-category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 10px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.mobile-category-header:hover {
	background-color: #f8f9fa;
}

.mobile-category-header i.category-icon {
	margin-left: 10px;
	font-size: 1.2rem;
	color: var(--primary-color);
}

.mobile-category-header i.chevron {
	transition: transform 0.3s;
}

.mobile-category-header.active i.chevron {
	transform: rotate(-90deg);
}

.mobile-subcategories {
	display: none;
	padding: 10px 20px 15px 40px;
	background-color: #f8f9fa;
}

.mobile-subcategories.active {
	display: block;
}

.mobile-subcategories a {
	display: block;
	padding: 8px 10px;
	color: #555;
	text-decoration: none;
	border-radius: 6px;
	margin-bottom: 5px;
	font-size: 0.9rem;
}

.mobile-subcategories a:hover {
	background-color: white;
	color: var(--primary-color);
}

/* Footer styles */
.footer {
	background-color: var(--secondary-color);
	color: white;
	padding: 50px 0 0;
	margin-top: 60px;
}

.footer h5 {
	font-weight: bold;
	margin-bottom: 20px;
	color: white;
	display: flex;
	align-items: center;
	gap: 8px;
}

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

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

.footer ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer ul li a:hover {
	color: white;
	padding-right: 5px;
}

.footer ul li a i {
	color: var(--accent-color);
}

.footer-bottom {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px 0;
	margin-top: 40px;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 1.2rem;
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.payment-methods {
	display: flex;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.payment-methods img {
	height: 35px;
	background: white;
	padding: 5px 10px;
	border-radius: 6px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.newsletter-form input {
	flex: 1;
	padding: 12px 15px;
	border: none;
	border-radius: 25px;
	font-size: 0.9rem;
}

.newsletter-form button {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.newsletter-form button:hover {
	background: #4878DB;
}

.contact-info {
	margin-top: 20px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-info-item i {
	font-size: 1.3rem;
	color: var(--accent-color);
	width: 30px;
}

/* Responsive Design */
@media (max-width: 991px) {
	.feature-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.sidebar {
		display: none;
	}

	.mega-menu {
		display: none !important;
	}
}

@media (max-width: 768px) {
	body {
		padding-bottom: 65px;
	}

	.mobile-bottom-nav {
		display: flex;
	}

	.top-header {
		display: none;
	}

	.main-header {
		padding: 10px 0;
	}

	.logo {
		font-size: 1.2rem;
	}

	.logo i {
		font-size: 1.4rem;
	}

	.header-icons {
		display: none;
	}
	button#backToTop{
		display:none!important;
	}
	.main-nav {
		display: none;
	}

	.search-category {
		display: none;
	}

	.search-box input {
		font-size: 0.9rem;
		padding: 10px 15px 10px 15px;
		border-radius: 0 25px 25px 0;
		border-right: 2px solid var(--primary-color);
	}

	.search-box button {
		padding: 10px 20px;
	}

	.hero-banner {
		padding: 30px 20px;
		border-radius: 10px;
	}

	.hero-banner h2 {
		font-size: 1.6rem;
	}

	.hero-banner p {
		font-size: 0.95rem;
	}

	.feature-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.feature-card {
		padding: 20px 15px;
	}

	.feature-card i {
		font-size: 2.5rem;
	}

	.feature-card h5 {
		font-size: 0.9rem;
	}

	.section-title {
		font-size: 1.3rem;
		margin: 25px 0 18px;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.product-card img {
		height: 160px;
	}

	.product-card-body {
		padding: 12px;
	}

	.product-card h6 {
		font-size: 0.85rem;
		min-height: auto;
	}

	.right-sidebar {
		display: none;
	}

	/* Footer responsive */
	.footer {
		padding: 30px 0 0;
	}

	.footer h5 {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form button {
		width: 100%;
	}
}

/* Mobile menu styles */
.mobile-menu-btn {
	display: none;
}

.mobile-categories-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 80%;
	max-width: 300px;
	height: 100vh;
	background: white;
	z-index: 1050;
	overflow-y: auto;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
	padding: 1rem;
}

.mobile-categories-menu.show {
	display: block;
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1040;
}

.mobile-menu-overlay.show {
	display: block;
}

.mobile-menu-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	cursor: pointer;
	background: none;
	border: none;
}

.chatbot-container {
	position: fixed;
	bottom: 90px;
	right: 20px;
	width: 350px;
	height: 500px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	display: none;
	flex-direction: column;
}

.chatbot-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 15px;
	border-radius: 15px 15px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chatbot-body {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
	background: #f8f9fa;
}

.chatbot-footer {
	padding: 15px;
	border-top: 1px solid #dee2e6;
	background: white;
	border-radius: 0 0 15px 15px;
}

.chat-message {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.chat-message.user {
	justify-content: flex-end;
}

.chat-message.assistant {
	justify-content: flex-start;
}

.message-bubble {
	max-width: 80%;
	padding: 10px 15px;
	border-radius: 18px;
	word-wrap: break-word;
}

.message-bubble.user {
	background: #007bff;
	color: white;
	border-bottom-right-radius: 5px;
}

.message-bubble.assistant {
	background: white;
	color: #333;
	border: 1px solid #dee2e6;
	border-bottom-left-radius: 5px;
}

.chatbot-toggle {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 1001;
	transition: all 0.3s ease;
}

.chatbot-toggle:hover {
	transform: scale(1.1);
}

.typing-indicator {
	display: none;
	padding: 10px 15px;
	background: white;
	border: 1px solid #dee2e6;
	border-radius: 18px;
	border-bottom-left-radius: 5px;
	max-width: 80%;
}

.typing-dots {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #999;
	margin: 0 2px;
	animation: typing 1.4s infinite ease-in-out;
}

.typing-dots:nth-child(1) {
	animation-delay: -0.32s;
}

.typing-dots:nth-child(2) {
	animation-delay: -0.16s;
}

@keyframes typing {

	0%,
	80%,
	100% {
		transform: scale(0);
	}

	40% {
		transform: scale(1);
	}
}

.welcome-message {
	text-align: center;
	padding: 20px;
	color: #666;
}

.welcome-message i {
	font-size: 48px;
	color: #667eea;
	margin-bottom: 15px;
}

.quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.quick-action-btn {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 20px;
	padding: 5px 12px;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.quick-action-btn:hover {
	background: #e9ecef;
	border-color: #adb5bd;
}

.register-container {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-top: 50px;
	margin-bottom: 50px;
}

.register-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 2rem;
	text-align: center;
}

.register-form {
	padding: 2rem;
}

.form-control {
	border-radius: 10px;
	border: 2px solid #e9ecef;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-register {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	border-radius: 10px;
	padding: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-register:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.user-type-card {
	border: 2px solid #e9ecef;
	border-radius: 10px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.user-type-card:hover {
	border-color: #667eea;
}

.user-type-card.selected {
	border-color: #667eea;
	background-color: #f8f9ff;
}

.user-type-card input[type="radio"] {
	display: none;
}

.login-container {
	background: white;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-top: 50px;
	margin-bottom: 50px;
}

.login-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 2rem;
	text-align: center;
}

.login-form {
	padding: 2rem;
}

.form-control {
	border-radius: 10px;
	border: 2px solid #e9ecef;
	padding: 12px 15px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-login {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	border-radius: 10px;
	padding: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-login {
	display: flex;
	gap: 10px;
	margin-top: 1rem;
}

.social-btn {
	flex: 1;
	padding: 10px;
	border-radius: 10px;
	border: 2px solid #e9ecef;
	background: white;
	transition: all 0.3s ease;
}

.social-btn:hover {
	border-color: #667eea;
	color: #667eea;
}

.dashboard-menu {
	padding: 10px;
	border-radius: 10px;
	border: 2px solid #e9ecef;
	background: #f8f9fa;
	margin-top: 10px;
	margin-bottom: 10px;
}

.dashboard-menu .nav-link {
	padding: 10px;
	border-radius: 10px;
	border: 2px solid #e9ecef;
	background: #FFF;
	margin: 10px;
}

.dashboard-menu .nav-link:hover {
	background: #667eea;
	color: white;
	border-color: #667eea;
}

.stat-card {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-right: 4px solid;
	transition: transform 0.3s ease;
	margin-bottom: 15px;
}

.stat-card:hover {
	transform: translateY(-5px);
}

.stat-card.buyer {
	border-right-color: #28a745;
}

.stat-card.seller {
	border-right-color: #007bff;
}

.stat-card.admin {
	border-right-color: #dc3545;
}

.stat-card.info {
	border-right-color: #17a2b8;
}

.stat-icon {
	font-size: 2.5rem;
	opacity: 0.7;
}

.recent-orders {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-status {
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.status-pending {
	background-color: #fff3cd;
	color: #856404;
}

.status-confirmed {
	background-color: #d1ecf1;
	color: #0c5460;
}

.status-processing {
	background-color: #d4edda;
	color: #155724;
}

.status-shipped {
	background-color: #cce5ff;
	color: #004085;
}

.status-delivered {
	background-color: #d1ecf1;
	color: #0c5460;
}

.status-cancelled {
	background-color: #f8d7da;
	color: #721c24;
}

.dropdown-menu.show {
	text-align: right;
	width: 100%;
}

.dropdown-menu.show li {
	text-align: right;
	border-bottom: 1px solid #e9ecef;
}

.dropdown-menu.show li:last-child {
	border-bottom: none;
}

.dropdown-menu.show li a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	padding: 10px;
	background: #FFF;
}

.dropdown-menu.show li a:hover {
	background: #667eea;
	color: white;
	border-color: #667eea;
}

.dropdown-divider {
	display: none;
}

.bg-dark {
	background-color: #063b76 !important;
}

.bg-dark:hover {
	background-color: #063b76 !important;
}

.bg-dark:focus {
	background-color: #063b76 !important;
}

.bg-dark:active {
	background-color: #063b76 !important;
}

.blog-card,
.featured-post {
	position: relative;
	overflow: hidden;
	padding: 15px;
}

.thumb-wrap,
.featured-post .ratio-16x9 {
	height: 250px;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 15px;
	width: 100%;
}

.blog-card a {
	display: block;
	position: relative;
}

.sidebar-widget,
.card,
.summary-card {
	border: 1px solid #EFEFEF !important;
	box-shadow: 5px 5px 7px -5px #959595 !important;
	padding: 15px !important;
	margin-bottom: 15px !important;
	border-radius: 10px !important;
	background: #FFF!important;
}
.banner-item_content span{
	color:#FFF!important;
}
.banner-item_content h2{
	color:#FFF!important;
	background: none!important;
}
.sidebar-widget h5,
.card-body h5,
.main-content h2,
.seller-header {
	line-height: 35px;
	border-radius: 7px;
	padding: 7px;
	color:#333;
	margin:0;
	margin-bottom: 15px !important;
	background:#EFEFEF;
}

html body .container,html body .container-lg {
	width: 100%;
	max-width: 1650px !important;
	margin: auto;
}

.main-content {
	min-height: 70vh;
	width: 100%;
	max-width: 1650px !important;
	margin: auto;
}

.card .card-body {
	padding: 0 !important;
}

.checkout-section {
	background: white;
	border-radius: 15px;
	padding: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.order-summary {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 2rem;
}

.seller-group {
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1rem;
}

.seller-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	color: #FFF !important;
}

.seller-header * {
	color: #FFF !important;
}

.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.checkout-section .form-check,
.order-summary .form-check {
	padding: 10px;
	border: 1px solid #EFEFEF;
	border-radius: 6px;
}

.success-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 3rem;
	text-align: center;
	margin: 2rem 0;
}

.success-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	color: white;
	font-size: 3rem;
}

.order-card {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 1rem;
	border-right: 4px solid #28a745;
}

.order-number {
	font-size: 1.5rem;
	font-weight: bold;
	color: #28a745;
}

.navbar-brand img {
	max-height: 40px;
}

.dropdown-menu {
	right: 0;
	left: auto;
}

.badge {
	font-size: 0.75em;
}

.card {
	border: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn {
	border-radius: 5px;
}

.form-control {
	border-radius: 5px;
}

.table th {
	border-top: none;
	font-weight: 600;
}

.alert {
	border-radius: 5px;
}

.rating-stars {
	color: #ffc107;
}

.filter-sidebar {
	background: white;
	border-radius: 15px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	height: fit-content;
}

.list-sort-dropdown {
	background: white;
	border-radius: 10px;
	padding: 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stats-item {
	text-align: center;
	padding: 1rem;
	border: 1px solid #CCC;
	border-radius: 10px;
	margin-bottom: 15px;
	background: #FFF;
}

.stats-number {
	font-size: 1.5rem;
	font-weight: bold;
	color: #667eea;
}

.vendor-logo img {
	width: 80px !important;
	height: 80px !important;
	background: #FFF;
	padding: 10px;
	margin-bottom: 20px;
}

button#backToTop {
	left: 50%;
	bottom: 20px;
	width: 60px;
	height: 60px;
	border-radius: 100px;
	line-height: 60px;
	text-align: center;
	color: #FFF;
	background: #007FFE;
	margin-left: -30px;
	z-index: 9999999;

}

/* استایل‌های کامپوننت Product Thumb */
.product-thumb {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-thumb:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

/* اندازه‌های مختلف */
.product-thumb-sm {
	max-width: 100%;
}

.product-thumb-md {
	max-width: 100%;
}

.product-thumb-lg {
	max-width: 100%;
}

/* تصویر محصول */
.product-image-container {
	position: relative;
	overflow: hidden;
	background: #f8f9fa;
}

.product-thumb-sm .product-image-container {
	height: 150px;
}

.product-thumb-md .product-image-container {
	height: 200px;
}

.product-thumb-lg .product-image-container {
	height: 250px;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-thumb:hover .product-image {
	transform: scale(1.05);
}

.product-image-link {
	display: block;
	height: 100%;
}

/* وضعیت محصول */
.product-status {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
}

/* عملیات سریع */
.product-actions {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-thumb:hover .product-actions {
	opacity: 1;
}

.btn-action {
	width: 35px;
	height: 35px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #6c757d;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.btn-action:hover {
	background: #007bff;
	color: white;
	transform: scale(1.1);
}

/* اطلاعات محصول */
.product-info {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-category {
	margin-bottom: 8px;
}

.category-link {
	color: #6c757d;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.category-link:hover {
	color: #007bff;
}

.product-title {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.product-thumb-lg .product-title {
	font-size: 18px;
}

.product-link {
	color: #212529;
	text-decoration: none;
	transition: color 0.3s ease;
}

.product-link:hover {
	color: #007bff;
}

.product-description {
	color: #6c757d;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}

.product-seller {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #6c757d;
}

.seller-link {
	color: #007bff;
	text-decoration: none;
}

.seller-link:hover {
	text-decoration: underline;
}

.product-price {
	margin-bottom: 15px;
	margin-top: auto;
}

.price-text {
	font-size: 16px;
	font-weight: 700;
	color: #28a745;
}

.product-thumb-lg .price-text {
	font-size: 18px;
}

/* دکمه‌ها */
.product-buttons {
	display: flex;
	gap: 8px;
	margin-top: auto;
}

.product-buttons .btn {
	flex: 1;
	font-size: 12px;
	padding: 8px 12px;
}

.product-thumb-lg .product-buttons .btn {
	font-size: 14px;
	padding: 10px 15px;
}

/* Responsive */
@media (max-width: 768px) {
	.product-thumb {
		max-width: 100%;
	}

	.product-actions {
		opacity: 1;
	}

	.btn-action {
		width: 30px;
		height: 30px;
		font-size: 12px;
	}
	.section.section-bg-container .container-lg .section-heading{
	   display: none!important;
	}
	.section{
	   padding:7px!important;
	}
}

.star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}

.star-rating input {
	display: none;
}

.star-rating label {
	font-size: 2rem;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
	color: #ffc107;
}

.rating-input {
	margin-bottom: 1rem;
}

.fw-bold {
	font-weight: 700 !important;
}
.align-items-center {
	align-items: center !important;
}
@media (max-width: 600px) {
	html body .floating-chat-btn {
		bottom: 10px!important;
		left: 10px!important;
	}
}
.list-style-none{
	list-style:none;
}
.section {
	background: #fff;
	border: 1px solid #e6ecf2;
	margin-top: 20px;
	padding: 30px;
}
.section .section-heading {
	font-weight: 500;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 30px;
}
.section.section-bg-container {
	background: #fff;
	margin-top: 20px;
	flex-direction: row;
	padding:0!important;
}
.section.section-bg-container .container-lg{
	padding:0!important;
	display: flex!important;
	display: -webkit-flex;
}
.section.section-bg-container .container-lg .section-heading{
	min-width:300px;
	position: relative;
	margin-bottom: 0px;
}
.section.section-bg-container .container-lg .section-heading img.background-section{
	position: absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	object-fit: cover;
}
.section.section-bg-container .container-lg .section-heading .heading-content{
	position: relative;
	z-index:1;
	padding:30px;
	font-size:14px;
}
.section.section-bg-container .container-lg .section-heading .heading-content h5{
	font-weight: 700;
}
.product-thumbnail-card-small{
	padding:30px;
	text-align: center;
	min-height:200px;
	border-left:1px solid #e6ecf2;
	border-bottom:1px solid #e6ecf2;
}
.product-small-image{
	width:120px;
	height:120px;
	object-fit: contain;
	margin-bottom: 15px;
}
.product-thumbnail-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-thumbnail-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.product-quick-actions{
	width:30px;
	left:0;
	top:0;
	position: absolute;
}
.product-quick-actions > *{
   width:30px;
   height:30px;
   text-align: center;
   line-height:30px;
   padding:0!important;
   margin:0;
   margin-bottom:5px;
   
}
.product-thumbnail-card:hover .product-quick-actions {
	opacity: 1 !important;
}

.product-thumbnail-image {
	height: 250px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-thumbnail-card:hover .product-thumbnail-image {
	transform: scale(1.05);
}

.product-thumbnail-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 2.5em;
}

.z-index-10 {
	z-index: 10;
}

.transition-opacity {
	transition: opacity 0.3s ease;
}

/* مقایسه محصولات */
.compare-badge {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	background: #dc3545;
	color: white;
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* مودال پیش نمایش سریع */
.quick-view-modal .modal-dialog {
	max-width: 900px;
}

.quick-view-content {
	max-height: 80vh;
	overflow-y: auto;
}
.feature-item{
	margin-top: 20px;
}
.feature-item__thumb{
   height:100px;
   width:100px;
   padding:20px;
   background: #FFF;
   margin-bottom:10px!important;
}
.feature-item__thumb img{
   width:100%;
   height:100%;
	object-fit: contain;
}
.feature-item h6{
   font-size:13px;
   font-weight: 700;
}
.feature-item small{
   font-size:12px;
}
.product-details-section{
}
.product-reviews-section,.vendor-card,.blog-card,.featured-post,.magazine-article {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
}
.blog-post{
   padding:15px;
}
.blog-post img{
   border-radius: 15px;
}
.blog-post footer{
   background: #F7F7F7;
   padding:15px;
   border-radius: 15px;
}
.rounded-md{
   border-radius:10px!important;
}