/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	font-weight: 400;
	color: #333333;
	font-size: 14px;
	line-height: 1.6;
	width: 100%;
	background-color: #FFFFFF;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
	color: #333333;
}
/* default font size */
.fa {
	font-size: 14px;
	font-family: FontAwesome;
}
/* Override the bootstrap defaults */
h1 {
	font-size: 33px;
}
h2 {
	font-size: 27px;
}
h3 {
	font-size: 21px;
}
h4 {
	font-size: 15px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 10.2px;
}
a {
	color: #f3ebc8;
}
a:hover {
	text-decoration: none;
}
legend {
	font-size: 18px;
	padding: 7px 0px
}
label {
	font-size: 12px;
	font-weight: normal;
}
select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
	font-size: 12px;
}
.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
	font-size: 12px;
}
.input-group .input-group-addon {
	font-size: 12px;
	height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
	display: inline;
}

.nav-tabs {
	margin-bottom: 15px;
}
div.required .control-label:before {
	content: '* ';
	color: #F00;
	font-weight: bold;
}
/* Gradent to all drop down menus */
.dropdown-menu li > a:hover {
	text-decoration: none;
  color:black !important;
	background-repeat: repeat-x;
}
/* top */
#top {
	background-color: #D7D8D2;
	border-bottom: 1px solid #C4C5BF;
	padding: 3px 0;
	margin: 0 0 5px 0;
	min-height: 25px;
}
#top .container {
	padding: 0 10px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
	text-align: left;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
	text-shadow: none;
	color: #ffffff;
	background-color: #229ac8;
	background-image: linear-gradient(to bottom, #f3ebc8, #1f90bb);
	background-repeat: repeat-x;
}
#top .btn-link, #top-links li, #top-links a {
	color: #333333;
	text-shadow: 0 1px 0 #FFF;
	text-decoration: none;
	font-size: 11px;
}
#top .btn-link:hover, #top-links a:hover {
	color: #C4A661;
}
#top-links .dropdown {
	position: relative;
}
#top-links .dropdown:hover .dropdown-menu {
	display: block;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#top-links .dropdown-menu {
	display: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	background-color: #D7D8D2;
	border: 1px solid #C4C5BF;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	margin-top: 0;
	padding: 0;
	min-width: 200px;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1000;
}
#top-links .dropdown-menu li {
	margin: 0;
}
#top-links .dropdown-menu a {
	padding: 8px 15px;
	color: #4A4A4A;
	display: block;
	transition: all 0.3s ease;
}
#top-links .dropdown-menu a:hover {
	background-color: #C4A661;
	color: #FFFFFF;
}
#top .btn-link strong {
	font-size: 14px;
        line-height: 14px;
}
#top-links {
	padding-top: 2px;
}
#top-links a + a {
	margin-left: 8px;
}
/* logo */
#logo {
	margin: 0;
}

#logo img {
	max-height: 100px;
	width: auto;
}

#logo h1 {
	margin: 0;
	font-size: 16px;
}

#logo h1 a {
	color: #333333;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}
/* search */
#search {
	margin-bottom: 10px;
}
#search .input-lg {
	border: 1px solid #EEEEEE;
	border-radius: 0;
	height: 45px;
}
#search .btn-lg {
	background: linear-gradient(135deg, #8B8B8B, #7A7A7A);
	border: none;
	color: #FFFFFF;
	height: 50px;
	padding: 0 30px;
	border-radius: 0 30px 30px 0;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
#search .btn-lg::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: all 0.5s ease;
}
#search .btn-lg:hover {
	background: linear-gradient(135deg, #7A7A7A, #8B8B8B);
	transform: translateX(2px);
	box-shadow: 0 4px 15px rgba(139, 139, 139, 0.3);
}
#search .btn-lg:hover::before {
	left: 100%;
}
#search .btn-lg i {
	margin-right: 5px;
	font-size: 16px;
	color: #FFFFFF;
}
/* cart */
#cart {
	margin-bottom: 0;
}
#cart > .btn {
	height: 30px;
	background: linear-gradient(135deg, #8B8B8B, #7A7A7A);
	border: none;
	color: #FFFFFF;
	padding: 0 30px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(139, 139, 139, 0.2);
	margin-top: 10px;
}
#cart > .btn::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: all 0.5s ease;
}
#cart > .btn:hover {
	background: linear-gradient(135deg, #7A7A7A, #8B8B8B);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 139, 139, 0.3);
}
#cart > .btn:hover::before {
	left: 100%;
}
#cart > .btn i {
	margin-right: 8px;
	font-size: 16px;
	color: #FFFFFF;
}
#cart.open > .btn {
	background: linear-gradient(135deg, #FFFFFF, #F8F8F8);
	border: 2px solid #8B8B8B;
	color: #8B8B8B;
	box-shadow: none;
}
#cart.open > .btn:hover {
	background: linear-gradient(135deg, #F8F8F8, #FFFFFF);
	border-color: #7A7A7A;
	color: #7A7A7A;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 139, 139, 0.2);
}
#cart .dropdown-menu {
	background: #FFFFFF;
	border: none;
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	margin-top: 15px;
	padding: 20px;
	min-width: 320px;
	z-index: 1001;
}
#cart .dropdown-menu::before {
	content: '';
	position: absolute;
	top: -8px;
	right: 20px;
	width: 16px;
	height: 16px;
	background: #FFFFFF;
	transform: rotate(45deg);
	box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}
#cart .dropdown-menu table {
	margin-bottom: 15px;
	width: 100%;
}
#cart .dropdown-menu table td {
	padding: 10px 0;
	border-bottom: 1px solid #EEEEEE;
}
#cart .dropdown-menu table td:last-child {
	text-align: right;
}
#cart .dropdown-menu .text-right {
	font-weight: 600;
	color: #333333;
}
#cart .dropdown-menu .text-right strong {
	color: #8B8B8B;
}
#cart .dropdown-menu .buttons {
	display: flex;
	gap: 10px;
	margin: 0;
}
#cart .dropdown-menu .buttons .btn {
	flex: 1;
	height: 45px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}
#cart .dropdown-menu .buttons .btn-primary {
	background: linear-gradient(135deg, #8B8B8B, #7A7A7A);
	border: none;
	color: #FFFFFF;
}
#cart .dropdown-menu .buttons .btn-primary:hover {
	background: linear-gradient(135deg, #7A7A7A, #8B8B8B);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(139, 139, 139, 0.3);
}
#cart .dropdown-menu .buttons .btn-default {
	background: #FFFFFF;
	border: 2px solid #8B8B8B;
	color: #8B8B8B;
}
#cart .dropdown-menu .buttons .btn-default:hover {
	background: #F8F8F8;
	border-color: #7A7A7A;
	color: #7A7A7A;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(139, 139, 139, 0.2);
}
.empty-cart {
	text-align: center;
	padding: 30px 15px;
}
.empty-cart i {
	font-size: 48px;
	color: #8B8B8B;
	margin-bottom: 15px;
	opacity: 0.5;
}
.empty-cart p {
	margin: 0;
	color: #666666;
	font-size: 14px;
}
@media (max-width: 767px) {
	#cart > .btn {
		height: 45px;
		padding: 0 20px;
		font-size: 13px;
	}
	#cart .dropdown-menu {
		min-width: 280px;
		padding: 15px;
	}
	#cart .dropdown-menu .buttons {
		flex-direction: column;
	}
	#cart .dropdown-menu .buttons .btn {
		width: 100%;
	}
}
/* menu */
#menu {
	background-color: #D7D8D2;
	border-bottom: 1px solid #C4C5BF;
	min-height: 60px;
}
#menu .navbar-nav {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}
#menu .navbar-nav > li {
	position: relative;
}
#menu .navbar-nav > li > a {
	color: #4A4A4A;
	font-size: 14px;
	font-weight: 500;
	padding: 20px 15px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	transition: all 0.3s ease;
}
#menu .navbar-nav > li > a:hover,
#menu .navbar-nav > li.open > a {
	color: #8B8B8B;
	background-color: transparent;
}
#menu .dropdown-menu {
	border: none;
	border-radius: 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	margin-top: 0;
	padding: 0;
	min-width: 200px;
}
#menu .dropdown-inner {
	padding: 15px;
}
#menu .dropdown-inner ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#menu .dropdown-inner a {
	color: #4A4A4A;
	font-size: 13px;
	padding: 8px 0;
	display: block;
	transition: all 0.3s ease;
}
#menu .dropdown-inner a:hover {
	color: #8B8B8B;
	background-color: transparent;
}
#menu .see-all {
	display: block;
	padding: 10px 15px;
	background-color: #C4C5BF;
	color: #4A4A4A;
	font-size: 13px;
	text-align: center;
	border-top: 1px solid #EEEEEE;
	transition: all 0.3s ease;
}
#menu .see-all:hover {
	background-color: #B3B4AE;
	color: #4A4A4A;
	text-decoration: none;
}
#menu #category {
	float: left;
	padding-left: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .btn-navbar {
	font-size: 15px;
	font-stretch: expanded;
	color: #FFF;
	padding: 2px 18px;
	float: right;
	background-color: #4A4A4A;
	background-image: linear-gradient(to bottom, #f3ebc8, #1f90bb);
	background-repeat: repeat-x;
}
#menu .btn-navbar:hover, #menu .btn-navbar:focus, #menu .btn-navbar:active, #menu .btn-navbar.disabled, #menu .btn-navbar[disabled] {
	color: #ffffff;
	background-color: #8B8B8B;
}
@media (min-width: 768px) {
	#menu .dropdown:hover .dropdown-menu {
		display: block;
	}
}
@media (max-width: 767px) {
	#menu {
		background-color: #D7D8D2;
		border: none;
	}
	#menu .navbar-nav {
		display: block;
		padding: 0;
	}
	#menu .navbar-nav > li {
		border-bottom: 1px solid #C4C5BF;
	}
	#menu .navbar-nav > li > a {
		padding: 15px;
	}
	#menu .dropdown-menu {
		box-shadow: none;
		border: none;
		background-color: #C4C5BF;
	}
	#menu .dropdown-inner {
		padding: 10px 15px;
	}
	#menu .dropdown-inner a {
		padding: 8px 0;
	}
	#menu .see-all {
		background-color: #B3B4AE;
	}
}
/* content */
#content {
	min-height: 600px;
}
#product-category #content, #product-product #tab-description, #information-information #content {
	font-size: 13px;
}
/* footer */
footer {
	background-color: #D7D8D2;
	color: #4A4A4A;
	padding: 60px 0 30px;
	border-top: 1px solid #C4C5BF;
}
footer hr {
	border-color: #C4C5BF;
	margin: 30px 0;
}
footer a {
	color: #4A4A4A;
	text-decoration: none;
	transition: color 0.3s ease;
}
footer a:hover {
	color: #8B8B8B;
}
footer h5 {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #4A4A4A;
}
footer p {
	color: #666666;
	line-height: 1.6;
	margin-bottom: 20px;
}
footer .social-links {
	display: flex;
	gap: 15px;
}
footer .social-links a {
	color: #4A4A4A;
	font-size: 18px;
	transition: color 0.3s ease;
}
footer .social-links a:hover {
	color: #8B8B8B;
}
footer ul.list-unstyled {
	margin: 0;
	padding: 0;
}
footer ul.list-unstyled li {
	margin-bottom: 10px;
}
footer ul.list-unstyled li:last-child {
	margin-bottom: 0;
}
footer ul.list-unstyled a {
	color: #666666;
	text-decoration: none;
	transition: color 0.3s ease;
}
footer ul.list-unstyled a:hover {
	color: #8B8B8B;
}
footer .newsletter-form {
	margin-top: 15px;
}
footer .newsletter-form .input-group {
	display: flex;
}
footer .newsletter-form input {
	border: 1px solid #C4C5BF;
	border-radius: 0;
	background-color: #FFFFFF;
	color: #4A4A4A;
	padding: 10px 15px;
	height: 45px;
}
footer .newsletter-form input::placeholder {
	color: #8B8B8B;
}
footer .newsletter-form .btn {
	background-color: #4A4A4A;
	border: none;
	color: #FFFFFF;
	padding: 0 20px;
	height: 45px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease;
}
footer .newsletter-form .btn:hover {
	background-color: #8B8B8B;
}
footer .payment-methods {
	text-align: right;
}
footer .payment-methods img {
	max-height: 30px;
	width: auto;
}
@media (max-width: 767px) {
	footer {
		padding: 40px 0 20px;
	}
	footer h5 {
		margin-bottom: 20px;
	}
	footer .social-links {
		margin-bottom: 20px;
	}
	footer .payment-methods {
		text-align: center;
		margin-top: 20px;
	}
}
/* alert */
.alert {
	padding: 8px 14px 8px 14px;
}
/* breadcrumb */
.breadcrumb {
	background-color: #FFFFFF;
	border-bottom: 1px solid #EEEEEE;
	padding: 15px 0;
}
.breadcrumb i {
	font-size: 15px;
}
.breadcrumb > li {
	text-shadow: 0 1px 0 #FFF;
	padding: 0 20px;
	position: relative;
	white-space: nowrap;
	color: #000000;
}
.breadcrumb > li a {
	color: #000000;
}
.breadcrumb > li .brand {
	color: #000000;
}
.breadcrumb > li + li:before {
	content: '';
	padding: 0;
}
.breadcrumb > li:after {
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	right: -5px;
	width: 26px;
	height: 26px;
	border-right: 1px solid #DDD;
	border-bottom: 1px solid #DDD;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
html[dir=rtl] .breadcrumb > li::after {
  top: -3px;
  left: -5px;
  width: 26px;
  height: 26px;
  border-left: 1px solid #DDD;
  border-top: 1px solid #DDD;
  right: unset;
  border-right: unset;
  border-bottom:unset;

}
.pagination {
	margin: 0;
}
/* buttons */
.buttons {
	margin: 1em 0;
}
.btn {
	padding: 7.5px 12px;
	font-size: 12px;
	border: 1px solid #cccccc;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
}
.btn-xs {
	font-size: 9px;
}
.btn-sm {
	font-size: 10.2px;
}
.btn-lg {
	padding: 10px 16px;
	font-size: 15px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
	font-size: 12px;
}
.btn-group > .btn-xs {
	font-size: 9px;
}
.btn-group > .btn-sm {
	font-size: 10.2px;
}
.btn-group > .btn-lg {
	font-size: 15px;
}
.btn-default {
	color: #777;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #e7e7e7;
	background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
	background-repeat: repeat-x;
	border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}
.btn-primary {
	background-color: #333333;
	border: none;
	color: #FFFFFF;
	padding: 10px 25px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.btn-primary:hover {
	background-color: #C4A661;
}
.btn-warning {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #faa732;
	background-image: linear-gradient(to bottom, #fbb450, #f89406);
	background-repeat: repeat-x;
	border-color: #f89406 #f89406 #ad6704;
}
.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-danger {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #da4f49;
	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
	background-repeat: repeat-x;
	border-color: #bd362f #bd362f #802420;
}
.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-success {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #5bb75b;
	background-image: linear-gradient(to bottom, #62c462, #51a351);
	background-repeat: repeat-x;
	border-color: #51a351 #51a351 #387038;
}
.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
	box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}
.btn-info {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #df5c39;
	background-image: linear-gradient(to bottom, #e06342, #dc512c);
	background-repeat: repeat-x;
	border-color: #dc512c #dc512c #a2371a;
}
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
	background-image: none;
	background-color: #df5c39;
}
.btn-link {
	border-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	color: #f3ebc8;
	border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled] {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	box-shadow: none;
}
.btn-inverse {
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #363636;
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
}
.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
	background-color: #222222;
	background-image: linear-gradient(to bottom, #333333, #111111);
}
/* list group */
.list-group a {
	border: 1px solid #DDDDDD;
	color: #888888;
	padding: 8px 12px;
}
.list-group a.active, .list-group a.active:hover, .list-group a:hover {
	color: #444444;
	background: #eeeeee;
	border: 1px solid #DDDDDD;
	text-shadow: 0 1px 0 #FFF;
}
/* carousel */
.carousel-caption {
	color: #FFFFFF;
	text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
	content: '\f053';
	font-family: FontAwesome;
}
.carousel-control .icon-next:before {
	content: '\f054';
	font-family: FontAwesome;
}
/* product list */
.product-thumb {
	border: none;
	margin-bottom: 30px;
	transition: transform 0.3s ease;
}
.product-thumb:hover {
	transform: translateY(-5px);
}
.product-thumb .image {
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
}
.product-thumb .image a {
	display: block;
	position: relative;
	padding-bottom: 100%;
}
.product-thumb .image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.product-thumb:hover .image img {
	transform: scale(1.05);
}
.product-thumb .caption {
	padding: 0;
	text-align: center;
}
.product-thumb h4 {
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #333333;
}
.product-thumb h4 a {
	color: #333333;
	text-decoration: none;
	transition: color 0.3s ease;
}
.product-thumb h4 a:hover {
	color: #C4A661;
}
.product-thumb .price {
	color: #333333;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
}
.product-thumb .price-old {
	color: #999999;
	text-decoration: line-through;
	font-size: 14px;
	margin-right: 10px;
}
.product-thumb .price-new {
	color: #C4A661;
}
.product-thumb .button-group {
	display: flex;
	gap: 10px;
	justify-content: center;
}
.product-thumb .button-group button {
	flex: 1;
	background-color: #333333;
	border: none;
	color: #FFFFFF;
	padding: 10px 20px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: background-color 0.3s ease;
}
.product-thumb .button-group button:hover {
	background-color: #C4A661;
}
.product-thumb .button-group button + button {
	background-color: #F8F8F8;
	color: #333333;
}
.product-thumb .button-group button + button:hover {
	background-color: #EEEEEE;
}
.product-thumb .rating {
	margin-bottom: 10px;
	color: #000000;
}
.product-thumb .rating .fa-stack {
	font-size: 12px;
}
.product-thumb .rating .fa-star-o {
	color: #000000;
}
.product-thumb .rating .fa-star {
	color: #000000;
}
@media (max-width: 767px) {
	.product-thumb {
		margin-bottom: 20px;
	}
	
	.product-thumb .button-group {
		flex-direction: column;
	}
	
	.product-thumb .button-group button {
		width: 100%;
	}
}
.product-grid .product-thumb .image {
	float: none;
}
@media (min-width: 767px) {
.product-list .product-thumb .image {
	float: left;
	padding: 0 15px;
}
}
.product-list .product-thumb .caption {
	margin-left: 230px;
}
@media (max-width: 1200px) {
.product-grid .product-thumb .caption {
	min-height: 210px;
	padding: 0 10px;
}
}
@media (max-width: 767px) {
.product-list .product-thumb .caption {
	min-height: 0;
	margin-left: 0;
	padding: 0 10px;
}
.product-grid .product-thumb .caption {
	min-height: 0;
}
}
.thumbnails {
	overflow: auto;
	clear: both;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thumbnails > li {
	margin-left: 20px;
}
.thumbnails {
	margin-left: -20px;
}
.thumbnails > img {
	width: 100%;
}
.image-additional a {
	margin-bottom: 20px;
	padding: 5px;
	display: block;
	border: 1px solid #ddd;
}
.image-additional {
	max-width: 78px;
}
.thumbnails .image-additional {
	float: left;
	margin-left: 20px;
}

@media (min-width: 1200px) {
	#content .col-lg-2:nth-child(6n+1),
	#content .col-lg-3:nth-child(4n+1),
	#content .col-lg-4:nth-child(3n+1),
	#content .col-lg-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#content .col-md-2:nth-child(6n+1),
	#content .col-md-3:nth-child(4n+1),
	#content .col-md-4:nth-child(3n+1),
	#content .col-md-6:nth-child(2n+1) {
		clear:left;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#content .col-sm-2:nth-child(6n+1),
	#content .col-sm-3:nth-child(4n+1),
	#content .col-sm-4:nth-child(3n+1),
	#content .col-sm-6:nth-child(2n+1) {
		clear:left;
	}
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left  .product-layout .col-md-3 {
       width: 100%;
    }

	#column-left + #content .product-layout .col-md-3 {
       width: 50%;
    }

	#column-left + #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
       width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout, #column-right .product-layout {
	width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
	min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}
html[dir=rtl] .checkbox input[type="checkbox"],
html[dir=rtl] .checkbox-inline input[type="checkbox"],
html[dir=rtl] .radio input[type="radio"],
html[dir=rtl] .radio-inline input[type="radio"] {
    position: absolute;
    margin-top: 4px\9;
    margin-right: -20px;
      margin-left: unset;
}
html[dir=rtl] .input-group-btn:last-child > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
html[dir=rtl] .input-group .form-control:first-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}
html[dir=rtl] .container .row:first-child  .col-sm-4, html[dir=rtl] .container .row:first-child  .col-sm-5 {
  float: right;

}
html[dir=rtl] #cart .dropdown-menu {
  left: 0;
  right: auto;

}
@media (min-width: 768px) {
   
    html[dir=rtl] .navbar-nav {
        float: right;
        margin: 0;
    }
    
    html[dir=rtl] .navbar-nav > li {
        float: right;
    }
   
}

/* Cart Styles */
.cart-items {
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #EEEEEE;
}

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

.cart-item-image {
  flex: 0 0 80px;
  margin-right: 15px;
}

.cart-item-image img {
  max-width: 100%;
  height: auto;
}

.cart-item-details {
  flex: 1;
  position: relative;
}

.cart-item-details h4 {
  margin: 0 0 5px;
  font-size: 14px;
}

.cart-item-details h4 a {
  color: #333333;
  text-decoration: none;
}

.cart-item-details h4 a:hover {
  color: #C4A661;
}

.cart-item-options {
  margin-bottom: 5px;
}

.cart-item-options small {
  display: block;
  color: #666666;
  font-size: 12px;
}

.cart-item-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.cart-item-quantity .quantity {
  color: #666666;
  font-size: 13px;
}

.cart-item-quantity .price {
  color: #333333;
  font-weight: 600;
  font-size: 14px;
}

.btn-remove {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: #999999;
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn-remove:hover {
  color: #C4A661;
}

.cart-totals {
  padding: 15px;
}

.cart-totals table {
  margin-bottom: 15px;
}

.cart-totals table td {
  padding: 8px 0;
  border-top: 1px solid #EEEEEE;
}

.cart-buttons {
  display: flex;
  gap: 10px;
}

.cart-buttons .btn {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.empty-cart {
  text-align: center;
  padding: 30px 15px;
}

.empty-cart i {
  font-size: 48px;
  color: #8B8B8B;
  margin-bottom: 15px;
  opacity: 0.5;
}

.empty-cart p {
  margin: 0;
  color: #666666;
  font-size: 14px;
}

/* Header Styles */
#top {
  background-color: #D7D8D2;
  border-bottom: 1px solid #C4C5BF;
  padding: 3px 0;
  margin: 0 0 5px 0;
  min-height: 25px;
}

.contact-info {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #4A4A4A;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-info i {
  color: #8B8B8B;
}

#top-links {
  padding-top: 2px;
}

#top-links a + a {
  margin-left: 8px;
}

#top-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

#top-links a {
  color: #4A4A4A;
  text-decoration: none;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

#top-links a:hover {
  color: #C4A661;
}

#top-links .dropdown-menu {
  background-color: #D7D8D2;
  border: 1px solid #C4C5BF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#top-links .dropdown-menu li {
  margin: 0;
}

#top-links .dropdown-menu a {
  padding: 8px 15px;
  color: #4A4A4A;
}

#top-links .dropdown-menu a:hover {
  background-color: #C4A661;
  color: #FFFFFF;
}

header {
  padding: 8px 0;
  background-color: #FFFFFF;
}

#logo {
  margin: 0;
}

#logo img {
  max-height: 100px;
  width: auto;
}

#logo h1 {
  margin: 0;
  font-size: 16px;
}

#logo h1 a {
  color: #333333;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.search-wrapper {
  padding: 8px 0;
}

#search .input-lg {
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
}

#search .btn-lg {
  height: 32px;
  padding: 0 15px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .search-wrapper {
    padding: 15px 0;
  }
  
  #search {
    max-width: 100%;
  }
  
  #search .input-lg {
    height: 45px;
    font-size: 13px;
  }
  
  #search .btn-lg {
    height: 45px;
    padding: 0 20px;
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  #search .input-lg {
    height: 40px;
    padding: 0 15px;
  }
  
  #search .btn-lg {
    height: 40px;
    padding: 0 15px;
  }
}

.cart-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 767px) {
  .contact-info {
    justify-content: center;
    margin-bottom: 10px;
  }
  
  #top-links {
    justify-content: center;
  }
  
  #logo {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .search-wrapper {
    margin-bottom: 20px;
  }
  
  .cart-wrapper {
    justify-content: center;
  }
}

/* Product Page Styles */
.product-info {
  margin-bottom: 40px;
}

.product-info .left {
  margin-bottom: 20px;
}

.product-info .left .image {
  margin-bottom: 15px;
}

.product-info .left .image img {
  max-width: 100%;
  height: auto;
}

.product-info .left .thumbnails {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-info .left .thumbnails > li {
  padding: 0 5px;
  width: 80px;
}

.product-info .left .thumbnails > li > a {
  display: block;
  position: relative;
  padding-bottom: 100%;
}

.product-info .left .thumbnails > li > a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #EEEEEE;
  transition: border-color 0.3s ease;
}

.product-info .left .thumbnails > li > a:hover img {
  border-color: #C4A661;
}

.product-info .right {
  padding: 0 20px;
}

.product-info .right h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #333333;
}

.product-info .right .rating {
  margin-bottom: 15px;
}

.product-info .right .rating .fa-stack {
  font-size: 14px;
}

.product-info .right .rating .fa-star-o {
  color: #CCCCCC;
}

.product-info .right .rating .fa-star {
  color: #C4A661;
}

.product-info .right .price {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 20px;
}

.product-info .right .price-old {
  color: #999999;
  text-decoration: line-through;
  font-size: 18px;
  margin-right: 10px;
}

.product-info .right .price-new {
  color: #C4A661;
}

.product-info .right .description {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-info .right .options {
  margin-bottom: 20px;
}

.product-info .right .options h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #333333;
}

.product-info .right .options .form-group {
  margin-bottom: 15px;
}

.product-info .right .options select.form-control {
  height: 40px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  padding: 0 15px;
  font-size: 14px;
}

.product-info .right .cart {
  margin-bottom: 20px;
}

.product-info .right .cart .input-group {
  display: flex;
  max-width: 200px;
}

.product-info .right .cart input[name="quantity"] {
  height: 45px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
}

.product-info .right .cart .input-group-btn {
  display: flex;
  flex-direction: column;
}

.product-info .right .cart .input-group-btn button {
  flex: 1;
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  border-left: none;
  color: #333333;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.product-info .right .cart .input-group-btn button:hover {
  background-color: #EEEEEE;
}

.product-info .right .cart .btn-primary {
  background-color: #333333;
  border: none;
  color: #FFFFFF;
  padding: 12px 30px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.product-info .right .cart .btn-primary:hover {
  background-color: #C4A661;
}

.product-info .right .minimum {
  color: #666666;
  font-size: 13px;
  margin-bottom: 20px;
}

.product-info .right .links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-info .right .links button {
  flex: 1;
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  color: #333333;
  padding: 10px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.product-info .right .links button:hover {
  background-color: #EEEEEE;
}

.product-info .right .links button i {
  margin-right: 5px;
}

.product-info .right .share {
  display: flex;
  gap: 15px;
  align-items: center;
}

.product-info .right .share span {
  color: #666666;
  font-size: 13px;
}

.product-info .right .share a {
  color: #333333;
  font-size: 18px;
  transition: color 0.3s ease;
}

.product-info .right .share a:hover {
  color: #C4A661;
}

@media (max-width: 767px) {
  .product-info .right {
    padding: 0;
  }
  
  .product-info .right h1 {
    font-size: 24px;
  }
  
  .product-info .right .price {
    font-size: 20px;
  }
  
  .product-info .right .cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .product-info .right .cart .input-group {
    max-width: 100%;
  }
  
  .product-info .right .cart .btn-primary {
    margin-left: 0;
    width: 100%;
  }
  
  .product-info .right .links {
    flex-direction: column;
  }
}

/* Category Page Styles */
#content {
  margin-bottom: 40px;
}

#content h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #333333;
}

#content .description {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 30px;
}

#content .row {
  margin: 0 -10px;
}

#content .product-layout {
  padding: 0 10px;
}

#column-left {
  margin-bottom: 30px;
}

#column-left h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #333333;
  padding-bottom: 10px;
  border-bottom: 1px solid #EEEEEE;
}

#column-left .list-group {
  margin: 0;
  padding: 0;
  border: none;
}

#column-left .list-group-item {
  border: none;
  padding: 8px 0;
  background: none;
}

#column-left .list-group-item:first-child {
  border-top: none;
}

#column-left .list-group-item:last-child {
  border-bottom: none;
}

#column-left .list-group-item a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

#column-left .list-group-item a:hover {
  color: #C4A661;
}

#column-left .list-group-item.active {
  background: none;
  border: none;
}

#column-left .list-group-item.active a {
  color: #C4A661;
  font-weight: 500;
}

#column-left .price-range {
  margin-bottom: 20px;
}

#column-left .price-range input {
  width: 100%;
  margin-bottom: 10px;
}

#column-left .price-range .price-inputs {
  display: flex;
  gap: 10px;
}

#column-left .price-range .price-inputs input {
  flex: 1;
  height: 35px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  padding: 0 10px;
  font-size: 13px;
}

#column-left .price-range .btn {
  width: 100%;
  background-color: #333333;
  border: none;
  color: #FFFFFF;
  padding: 8px 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

#column-left .price-range .btn:hover {
  background-color: #C4A661;
}

#column-left .manufacturer {
  margin-bottom: 20px;
}

#column-left .manufacturer select {
  width: 100%;
  height: 35px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  padding: 0 10px;
  font-size: 13px;
}

#content .product-compare {
  margin-bottom: 20px;
}

#content .product-compare a {
  display: inline-block;
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  color: #333333;
  padding: 8px 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#content .product-compare a:hover {
  background-color: #EEEEEE;
}

#content .product-compare a i {
  margin-right: 5px;
}

#content .product-sort {
  margin-bottom: 20px;
}

#content .product-sort .input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

#content .product-sort .input-group label {
  color: #666666;
  font-size: 13px;
  margin: 0;
}

#content .product-sort select {
  height: 35px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  padding: 0 10px;
  font-size: 13px;
  min-width: 150px;
}

#content .product-limit {
  margin-bottom: 20px;
}

#content .product-limit .input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

#content .product-limit .input-group label {
  color: #666666;
  font-size: 13px;
  margin: 0;
}

#content .product-limit select {
  height: 35px;
  border: 1px solid #EEEEEE;
  border-radius: 0;
  padding: 0 10px;
  font-size: 13px;
  min-width: 80px;
}

#content .pagination {
  margin: 30px 0 0;
  display: flex;
  justify-content: center;
}

#content .pagination > li {
  display: inline-block;
  margin: 0 5px;
}

#content .pagination > li > a,
#content .pagination > li > span {
  display: block;
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #F8F8F8;
  border: 1px solid #EEEEEE;
  color: #333333;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#content .pagination > li > a:hover {
  background-color: #EEEEEE;
}

#content .pagination > .active > span {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  #content h1 {
    font-size: 24px;
  }
  
  #content .product-sort,
  #content .product-limit {
    margin-bottom: 15px;
  }
  
  #content .product-sort .input-group,
  #content .product-limit .input-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #content .product-sort select,
  #content .product-limit select {
    width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  #logo {
    text-align: center;
    margin-bottom: 20px;
  }
  
  #logo img {
    max-height: 40px;
  }
  
  .search-wrapper {
    margin-bottom: 20px;
  }
  
  #search {
    max-width: 100%;
  }
  
  .cart-wrapper {
    justify-content: center;
  }
  
  #menu .navbar-nav {
    padding: 0;
  }
  
  #menu .navbar-nav > li {
    border-bottom: 1px solid #EEEEEE;
  }
  
  #menu .navbar-nav > li > a {
    padding: 15px;
  }
  
  #menu .dropdown-menu {
    box-shadow: none;
    border: none;
    background-color: #F8F8F8;
  }
  
  #menu .dropdown-inner {
    padding: 10px 15px;
  }
  
  #menu .dropdown-inner a {
    padding: 8px 0;
  }
  
  #menu .see-all {
    background-color: #EEEEEE;
  }
  
  .product-thumb {
    margin-bottom: 20px;
  }
  
  .product-thumb .button-group {
    flex-direction: column;
  }
  
  .product-thumb .button-group button {
    width: 100%;
  }
  
  footer {
    padding: 40px 0 20px;
  }
  
  footer h5 {
    margin-bottom: 20px;
  }
  
  footer .social-links {
    margin-bottom: 20px;
  }
  
  footer .payment-methods {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  #top {
    text-align: center;
  }
  
  .contact-info {
    justify-content: center;
    margin-bottom: 10px;
  }
  
  #top-links {
    justify-content: center;
  }
  
  #top-links ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  
  #top-links a {
    padding: 5px 10px;
  }
  
  #content h1 {
    font-size: 24px;
  }
  
  #content .product-sort,
  #content .product-limit {
    margin-bottom: 15px;
  }
  
  #content .product-sort .input-group,
  #content .product-limit .input-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #content .product-sort select,
  #content .product-limit select {
    width: 100%;
  }
  
  .product-info .right {
    padding: 0;
  }
  
  .product-info .right h1 {
    font-size: 24px;
  }
  
  .product-info .right .price {
    font-size: 20px;
  }
  
  .product-info .right .cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .product-info .right .cart .input-group {
    max-width: 100%;
  }
  
  .product-info .right .cart .btn-primary {
    margin-left: 0;
    width: 100%;
  }
  
  .product-info .right .links {
    flex-direction: column;
  }
  
  .product-info .right .share {
    flex-wrap: wrap;
  }
  
  #column-left {
    margin-bottom: 30px;
  }
  
  #column-left + #content .product-layout .col-md-3 {
    width: 100%;
  }
  
  #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  #logo img {
    max-height: 35px;
  }
  
  #search .input-lg {
    height: 40px;
  }
  
  #search .btn-lg {
    height: 40px;
    padding: 0 15px;
  }
  
  #cart > .btn {
    height: 40px;
    padding: 0 15px;
  }
  
  .product-thumb h4 {
    font-size: 13px;
  }
  
  .product-thumb .price {
    font-size: 14px;
  }
  
  .product-thumb .button-group button {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  footer {
    padding: 30px 0 15px;
  }
  
  footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  footer p {
    font-size: 12px;
  }
  
  footer .social-links a {
    font-size: 16px;
  }
  
  footer .newsletter-form input {
    height: 40px;
    font-size: 13px;
  }
  
  footer .newsletter-form .btn {
    height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }
}

/* Fix for iOS devices */
@supports (-webkit-touch-callout: none) {
  .dropdown-menu {
    -webkit-overflow-scrolling: touch;
  }
  
  .product-thumb .image img {
    object-fit: cover;
  }
}

/* Fix for Android devices */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

/* Container Styles */
.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.artistic-line {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.artistic-line::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C4A661, transparent);
  transform: scaleX(0.5);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.artistic-line:hover::before {
  transform: scaleX(1);
}

@keyframes shine {
  0% {
    transform: scaleX(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.5);
    opacity: 0.5;
  }
}

.artistic-line::before {
  animation: shine 3s infinite;
}

/* Mobile Footer Menu */
.mobile-footer-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(215, 216, 210, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #C4C5BF;
  z-index: 9999;
  padding: 8px 0;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
  transform: translateY(0);
  transition: all 0.3s ease;
  will-change: transform;
}

.mobile-footer-menu ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-footer-menu li {
  flex: 1;
  text-align: center;
  position: relative;
}

.mobile-footer-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #4A4A4A;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.mobile-footer-menu a i {
  font-size: 22px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.mobile-footer-menu a span {
  display: block;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.mobile-footer-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C4A661;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.mobile-footer-menu a:hover,
.mobile-footer-menu a.active {
  color: #C4A661;
}

.mobile-footer-menu a:hover i,
.mobile-footer-menu a.active i {
  transform: translateY(-2px);
}

.mobile-footer-menu a:hover::after,
.mobile-footer-menu a.active::after {
  width: 20px;
}

@media (max-width: 767px) {
  .mobile-footer-menu {
    display: block !important;
  }
  
  footer {
    padding-bottom: 70px;
  }
  
  body {
    padding-bottom: 60px;
  }
}

.newsletter-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-bottom: 30px;
  text-align: center;
}

.newsletter-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.newsletter-section .lead {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-section .newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.newsletter-section .input-group {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

.newsletter-section .form-control {
  height: 50px;
  border: none;
  padding: 0 20px;
  text-align: center;
}

.newsletter-section .btn-primary {
  height: 50px;
  padding: 0 30px;
  background-color: #333;
  border: none;
  font-weight: 600;
}

.newsletter-section .btn-primary:hover {
  background-color: #444;
}

.best-selling-section {
  padding: 60px 0;
  background-color: #f8f9fa;
  margin-bottom: 30px;
}

.best-selling-section .section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.best-selling-section .section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.best-selling-section .product-thumb {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.best-selling-section .product-thumb:hover {
  transform: translateY(-5px);
}

.best-selling-section .product-thumb .image {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 5px;
}

.best-selling-section .product-thumb .image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.best-selling-section .product-thumb:hover .image img {
  transform: scale(1.05);
}

.best-selling-section .product-thumb h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.best-selling-section .product-thumb h4 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.best-selling-section .product-thumb h4 a:hover {
  color: #C4A661;
}

.best-selling-section .product-thumb .price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.best-selling-section .product-thumb .price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.best-selling-section .product-thumb .price-new {
  color: #C4A661;
}

@media (max-width: 767px) {
  .best-selling-section {
    padding: 40px 0;
  }
  
  .best-selling-section .section-title {
    font-size: 24px;
  }
  
  .best-selling-section .section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .best-selling-section .product-thumb {
    margin-bottom: 20px;
  }
}

/* مگا منو */
.mega-menu {
  position: relative;
}

.mega-menu .dropdown-menu {
  width: 100%;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  border: none;
  min-width: 100%;
  left: 0;
  transform: none;
  margin-top: 0;
}

.mega-menu-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.mega-menu .row {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.mega-menu .col-md-3 {
  padding: 0 15px;
  margin-bottom: 20px;
  flex: 1;
  min-width: 200px;
}

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

.mega-menu .list-unstyled li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px dashed #f0f0f0;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

.mega-menu .list-unstyled li:hover {
  background-color: transparent;
}

.mega-menu .list-unstyled li:hover .subcategory-icon {
  transform: scale(1.15);
  border-color: #f3ebc8;
}

.mega-menu .list-unstyled a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  display: block;
  flex: 1;
  padding-left: 5px;
}

.mega-menu .list-unstyled a:hover {
  color: #f3ebc8;
  transform: translateX(3px);
  background-color: transparent;
}

.mega-menu-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  text-align: center;
}

.mega-menu-footer .see-all {
  color: #f3ebc8;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 15px;
  background-color: #f8f9fa;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s;
}

.mega-menu-footer .see-all:hover {
  background-color: #e9ecef;
  text-decoration: none;
}

@media (max-width: 991px) {
  .mega-menu .dropdown-menu {
    width: 100%;
    padding: 15px;
    min-width: auto;
    max-width: 100%;
    position: relative;
    left: 0;
    transform: none;
    box-shadow: none;
  }
  
  .mega-menu .row {
    margin: 0 -10px;
    display: block;
  }
  
  .mega-menu .col-md-3 {
    padding: 0 10px;
    width: 100%;
    min-width: auto;
  }
  
  .mega-menu .list-unstyled li {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .mega-menu-footer {
    margin-top: 15px;
    padding-top: 10px;
  }
}

@media (max-width: 767px) {
  .mega-menu .dropdown-menu {
    padding: 10px;
  }
  
  .mega-menu .subcategory-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  
  .mega-menu .list-unstyled a {
    font-size: 13px;
  }
  
  .mega-menu-footer .see-all {
    width: 100%;
    padding: 6px 10px;
  }
}

.mega-menu .list-unstyled li:last-child {
  border-bottom: none;
}

.mega-menu .subcategory-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  display: inline-block;
  border: 1px solid #eee;
  padding: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.rating {
	color: #000000;
}
.rating p {
	color: #000000;
}
.rating p a {
	color: #000000;
}
.rating .fa-stack {
	font-size: 12px;
}
.rating .fa-star-o {
	color: #000000;
}
.rating .fa-star {
	color: #000000;
}
