/* =================================
------------------------------------
  ISEIGUR - Luxury Bags & Accessories
  Inspired by voviabags.com style
 ------------------------------------ 
 ====================================*/

/* 返回顶部按钮样式 */
#ui-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

#ui-to-top:hover {
    background-color: #555;
    transform: translateY(-3px);
}

#ui-to-top.active {
    display: block !important;
}

/* 移动端响应式 */
@media only screen and (max-width: 767px) {
    #ui-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        font-size: 20px !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 9999 !important;
        pointer-events: auto !important;
    }
    
    #ui-to-top.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}


/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	background: #ffffff;
	color: #333333;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	transition: all 0.3s ease;
}

/* 定义全局动画 */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.fade-in {
	animation: fadeIn 0.7s ease-out forwards;
}

.fade-in-delay-1 {
	animation: fadeIn 0.7s ease-out 0.2s forwards;
	opacity: 0;
}

.fade-in-delay-2 {
	animation: fadeIn 0.7s ease-out 0.4s forwards;
	opacity: 0;
}

.fade-in-delay-3 {
	animation: fadeIn 0.7s ease-out 0.6s forwards;
	opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 300;
	color: #000000;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

h1 {
	font-weight: 200;
	letter-spacing: 0.02em;
}

h2 {
	font-weight: 300;
	letter-spacing: 0.01em;
}

h3 {
	font-weight: 300;
}

h4 {
	font-weight: 400;
}

h5 {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

h6 {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

p {
	font-size: 16px;
	color: #666666;
	line-height: 1.7;
	margin-bottom: 20px;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

.text-limit {
	 display: -webkit-box;
	 -webkit-box-orient: vertical;
	 -webkit-line-clamp: 2;
	 overflow: hidden;
	 text-overflow: ellipsis;
 }

.footer-link {
	color: #888888;
	transition: color 0.3s ease;
}
.footer-link:hover {
	color: #000000;
}

/* 页脚样式 */
.footer-section {
	background: #f9f9f9;
	padding: 80px 0 40px;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	max-height: 40px;
}

.footer-about {
	margin-bottom: 30px;
}

.footer-about p {
	font-size: 14px;
	line-height: 1.6;
	color: #666666;
}

.footer-widget {
	margin-bottom: 40px;
}

.footer-widget h6 {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	color: #000000;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	display: inline-block;
	font-size: 14px;
	color: #666666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #000000;
	transform: translateX(3px);
}

.footer-contact {
	font-size: 14px;
	line-height: 1.8;
	color: #666666;
}

.footer-contact p {
	margin-bottom: 12px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-link {
	width: 36px;
	height: 36px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-link:hover {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
	transform: translateY(-2px);
}

.copyright {
	text-align: center;
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #e0e0e0;
	font-size: 13px;
	color: #888888;
}

.copyright a {
	color: #000000;
	text-decoration: none;
	transition: color 0.3s ease;
}

.copyright a:hover {
	color: #333333;
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.header-section,
	.header-section.header-normal {
		padding: 15px 40px;
	}
	
	.main-menu li {
		margin-right: 30px;
	}
}

@media (max-width: 992px) {
	.header-section,
	.header-section.header-normal {
		padding: 15px 30px;
	}
	
	.site-logo {
		margin-right: 60px;
	}
	
	.main-menu li {
		margin-right: 20px;
	}
	
	.main-menu li a {
		font-size: 12px;
		letter-spacing: 1px;
	}
	
	.section-title h2 {
		font-size: 22px;
	}
	
	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.header-section,
	.header-section.header-normal {
		padding: 15px 20px;
	}
	
	.site-logo {
		margin-right: 30px;
	}
	
	.site-logo img {
		max-height: 35px;
	}
	
	.main-menu {
		display: none;
	}
	
	.nav-switch {
		display: block;
	}
	
	h1 {
		font-size: 36px;
	}
	
	h2 {
		font-size: 28px;
	}
	
	h3 {
		font-size: 24px;
	}
	
	.section-title {
		margin-bottom: 45px;
	}
	
	.section-title h2 {
		font-size: 20px;
		letter-spacing: 2px;
	}

	.footer-section {
		padding: 60px 0 30px;
	}
	
	.footer-widget {
		margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.header-section,
	.header-section.header-normal {
		padding: 12px 15px;
	}
	
	h1 {
		font-size: 30px;
	}
	
	h2 {
		font-size: 24px;
	}
	
	.site-btn {
		padding: 12px 25px;
		font-size: 12px;
		letter-spacing: 1px;
		min-width: 120px;
	}

	.header-download {
		display: none;
	}

	.main-menu li.download-btn {
		display: block;
	}
	
	.product-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.product-item {
		margin-bottom: 20px;
	}
	
	.footer-section {
		padding: 50px 0 20px;
	}
	
	.copyright {
		padding-top: 30px;
		margin-top: 30px;
	}
}
.align-center {
	text-align: center;
}
/*---------------------  
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 400;
	letter-spacing: 3px;
	margin-bottom: 15px;
}


.section-title p {
	font-size: 16px;
	font-weight: 300;
	max-width: 700px;
	margin: 0 auto;
	color: #666666;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 80px;
	padding-bottom: 80px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.rating i {
	color: #fbb710;
	font-size: 14px;
	letter-spacing: 2px;
}

.rating .is-fade {
	color: #e0e3e4;
}

/* 产品卡片样式 */
.product-item {
	position: relative;
	background: #ffffff;
	transition: all 0.4s ease;
	overflow: hidden;
	margin-bottom: 30px;
}

.product-item:hover {
	transform: translateY(-5px);
}

.product-item:hover .product-item-title {
	color: #333333;
}

.product-item:hover .product-thumb img {
	/*transform: scale(1.05);*/
}

.product-thumb {
	position: relative;
	overflow: hidden;
	/*margin-bottom: 15px;*/
	margin: 1px;
}

.product-thumb img {
	width: 100%;
	transition: transform 0.6s ease;
}

.product-info {
	padding: 0 10px;
	margin: 10px;
}

.product-item-title {
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.product-item-title a {
	color: #000000;
	text-decoration: none;
}

.product-item-title a:hover {
	color: #333333;
}

.product-item-price {
	font-size: 16px;
	font-weight: 500;
	color: #000000;
}

.product-hover-actions {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	transition: bottom 0.3s ease;
	z-index: 5;
}

.product-item:hover .product-hover-actions {
	bottom: 20px;
}

.product-action-btn {
	width: 40px;
	height: 40px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.product-action-btn:hover {
	background: #000000;
	color: #ffffff;
	border-color: #000000;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

/*---------------------  
  Commom elements
-----------------------*/

/* buttons */

.site-btn {
	display: inline-block;
	text-align: center;
	font-size: 13px;
	color: #000000;
	padding: 14px 30px;
	min-width: 140px;
	font-weight: 500;
	border: 1px solid #000000;
	background: transparent;
	cursor: pointer;
	line-height: normal;
	transition: all 0.3s ease 0s;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 0;
	position: relative;
	overflow: hidden;
}

.site-btn:hover {
	background: #000000;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.site-btn:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.1);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
}

.site-btn:hover:before {
	transform: translateX(0);
}

.site-btn.btn-primary {
	background: #000000;
	color: #ffffff;
	border: 1px solid #000000;
}

.site-btn.btn-primary:hover {
	background: transparent;
	color: #000000;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.site-btn.btn-line {
	background: transparent;
	border: 1px solid #000000;
	color: #000000;
	padding: 14px 30px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/*------------------
  Header section
---------------------*/

.header-section {
	position: fixed;
	width: 100%;
	padding: 20px 60px;
	left: 0;
	top: 0;
	z-index: 999;
	background: transparent;
	transition: all 0.3s ease;
}

.header-section.header-normal {
	position: relative;
	overflow: visible;
	padding: 20px 60px;
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-logo {
	display: inline-block;
	padding-top: 0;
	float: left;
	margin-right: 100px;
}

.site-logo img {
	max-height: 60px;
}

.nav-switch {
	display: none;
}

.main-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}

.main-menu li {
	display: inline-block;
	margin-right: 40px;
	position: relative;
}

.main-menu li.download-btn {
	display: none;
}

.main-menu li:last-child {
	margin-right: 0;
}

.main-menu li a {
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	color: #000000;
	padding: 8px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.3s ease;
	position: relative;
}

.main-menu li a:hover {
	color: #333333;
	text-decoration: none;
}

.main-menu li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #000000;
	transition: width 0.3s ease;
}

.main-menu li a:hover:after {
	width: 100%;
}

.header-right {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 15px;
}

.header-search {
	position: relative;
	margin-right: 10px;
}

.search-btn {
	display: inline-block;
	color: #000000;
	font-size: 17px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	transition: all 0.3s ease;
	border-radius: 0;
	border: 1px solid transparent;
}

.search-btn:hover {
	color: #333333;
	background: #f9f9f9;
	border-color: #f0f0f0;
}

.search-form {
	position: absolute;
	top: 100%;
	right: 0;
	width: 320px;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 20px;
	z-index: 999;
	display: none;
	margin-top: 10px;
}

.search-form.active {
	display: block;
	animation: fadeIn 0.3s ease-out;
}

.search-form input {
	width: calc(100% - 45px);
	height: 42px;
	border: 1px solid #e0e0e0;
	padding: 0 15px;
	font-size: 14px;
	font-weight: 300;
	transition: border-color 0.3s ease;
}

.search-form input:focus {
	border-color: #000000;
}

.search-form button {
	width: 42px;
	height: 42px;
	background: #000000;
	color: #ffffff;
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

.search-form button:hover {
	background: #333333;
}

/* 购物车和用户图标样式 */
.cart-icon,
.user-icon {
	display: inline-block;
	color: #000000;
	font-size: 17px;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	transition: all 0.3s ease;
	border-radius: 0;
	border: 1px solid transparent;
	position: relative;
}

.cart-icon:hover,
.user-icon:hover {
	color: #333333;
	background: #f9f9f9;
	border-color: #f0f0f0;
}

.cart-count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #000000;
	color: #ffffff;
	font-size: 10px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 10px;
	min-width: 18px;
	text-align: center;
}
.header-cart {
	position: relative;
	margin-right: 20px;
}

.cart-btn {
	display: inline-block;
	color: #000000;
	font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	transition: all 0.3s ease;
}

.cart-btn:hover {
	color: #666666;
}

.cart-count {
	position: absolute;
	top: -5px;
	right: -5px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	background: #000000;
	color: #ffffff;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border-radius: 10px;
}

.header-user {
	margin-right: 20px;
}

.header-user a {
	display: inline-block;
	color: #000000;
	font-size: 18px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	transition: all 0.3s ease;
}

.header-user a:hover {
	color: #666666;
}

.header-download {
	margin-left: 10px;
}

/*------------------
  Social media links
---------------------*/
.social-links {
	margin-top: 15px;
}

.social-link {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: #999999;
	background: transparent;
	border: 1px solid #333333;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #ffffff;
	color: #000000;
	text-decoration: none;
	transform: translateY(-2px);
}

.social-link:last-child {
	margin-right: 0;
}

/*------------------
  Language switcher
---------------------*/
.language-switcher {
	display: inline-block;
}

.language-switcher a {
	color: #999999;
	font-size: 14px;
	margin: 0 10px;
	transition: color 0.3s ease;
}

.language-switcher a:hover {
	color: #ffffff;
	text-decoration: none;
}

.language-switcher span {
	color: #999999;
	font-size: 14px;
}

/*------------------
  Responsive styles
---------------------
@media (max-width: 1200px) {
	.header-section {
		padding: 25px 40px;
	}
	
	.main-menu li {
		margin-right: 25px;
	}
	
	.hs-item .hs-left,
	.hs-item .hs-right {
		padding: 0 40px;
	}
}

@media (max-width: 992px) {
	.header-section {
		padding: 20px 30px;
	}
	
	.main-menu {
		display: none;
	}
	
	.nav-switch {
		display: block;
		float: right;
		font-size: 24px;
		color: #000000;
		cursor: pointer;
	}
	
	.header-right {
		display: none;
	}
	
	.hs-item {
		flex-direction: column;
	}
	
	.hs-item .hs-left,
	.hs-item .hs-right {
		width: 100%;
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.hs-item .hs-content h2 {
		font-size: 36px;
	}
	
	.hs-item .hs-content h3 {
		font-size: 24px;
	}
	
	.footer-top-section .row {
		text-align: center;
	}
	
	.footer-widget {
		margin-bottom: 50px;
	}
	
	.footer-widget .fw-title::after {
		left: 50%;
		transform: translateX(-50%);
	}
}

/*------------------
  Hero section
---------------------*/
.hero-section {
	position: relative;
	overflow: hidden;
}

.hero-slider {
	position: relative;
}

.hs-item {
	height: 100vh;
	overflow: hidden;
	width: 100%;
	position: relative;
	background-color: #f8f8f8;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hs-item .hs-left {
	width: 50%;
	padding: 0 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hs-item .hs-left img {
	max-width: 100%;
	height: auto;
	transform: scale(1.05);
	transition: transform 0.7s ease;
}

.hs-item:hover .hs-left img {
	transform: scale(1.1);
}

.hs-item .hs-right {
	width: 50%;
	padding: 0 60px;
}

.hs-item .hs-content {
	max-width: 100%;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.price-tag {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #666666;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hs-item .hs-content h3 {
	font-size: 32px;
	font-weight: 300;
	margin-bottom: 15px;
	color: #000000;
}

.hs-item .hs-content h2 {
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 30px;
	color: #000000;
	line-height: 1.1;
}

.hs-item .hs-content .btn {
	margin-top: 20px;
}

/*------------------
  Slider controls
---------------------
.hero-slider .owl-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.hero-slider .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #dddddd;
	margin: 0 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-slider .owl-dot.active {
	background: #000000;
	transform: scale(1.2);
}

.hero-slider .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 10;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
	position: absolute;
	font-size: 32px;
	color: #000000;
	opacity: 0.7;
	transition: all 0.3s ease;
	cursor: pointer;
}

.hero-slider .owl-prev {
	left: 30px;
}

.hero-slider .owl-next {
	right: 30px;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
	opacity: 1;
	transform: scale(1.1);
}

.hs-item .hs-right {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.hs-item .hs-content .price {
	font-size: 24px;
	font-weight: 300;
	color: #000000;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.hs-item .hs-content h2 {
	font-size: 48px;
	color: #000000;
	font-weight: 200;
	line-height: 1.2;
	margin-bottom: 30px;
	letter-spacing: -1px;
}

.hs-item .hs-content h3 {
	font-size: 28px;
	color: #666666;
	font-weight: 300;
	line-height: 1.4;
	margin-bottom: 40px;
}

/* 为标题添加阴影特效 */
.hs-item .hs-content h2 {
	/* 多层阴影效果，增强立体感 */
	text-shadow:
			0 2px 4px rgba(0, 0, 0, 0.3),
			0 6px 12px rgba(0, 0, 0, 0.2),
			0 10px 20px rgba(0, 0, 0, 0.15);
	/* 提升文本渲染质量 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* 为标题中的span元素添加相应的阴影效果 */
.hs-item .hs-content h2 span {
	/* 针对深色文本的阴影效果 */
	text-shadow:
			0 2px 4px rgba(0, 0, 0, 0.2),
			0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 为激活状态的标题保持一致的阴影效果 */
.owl-item.active .hs-item .hs-content h2 {
	font-weight: 100;
	text-shadow:
			0 2px 4px rgba(0, 0, 0, 0.3),
			0 6px 12px rgba(0, 0, 0, 0.2),
			0 10px 20px rgba(0, 0, 0, 0.15);
}

.owl-item.active .hs-item .hs-content h2 span {
	text-shadow:
			0 2px 4px rgba(0, 0, 0, 0.2),
			0 4px 8px rgba(0, 0, 0, 0.1);
}

.hs-item .hs-content .site-btn {
	top: 70px;
	position: relative;
	opacity: 0;
	-webkit-transition: all 0s;
	-o-transition: all 0s;
	transition: all 0s;
}

.owl-item.active .hs-item .hs-left {
	padding-top: 250px;
	opacity: 1;
	-webkit-transition: all 0.5s ease 0.4s;
}

.owl-item.active .hs-item .hs-content h2,
.owl-item.active .hs-item .hs-content .price,
.owl-item.active .hs-item .hs-content .site-btn {
	top: 0;
	opacity: 1;
	font-weight: 100;
}

.owl-item.active .hs-item .hs-content .site-btn {
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.owl-item.active .hs-item .hs-content h2 {
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.owl-item.active .hs-item .hs-content .price {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

/*------------------
  Intro section
---------------------*/

.intro-section {
	padding: 120px 0;
	text-align: center;
}

.intro-section .section-title {
	margin-bottom: 60px;
}

.intro-slider {
	margin-top: 50px;
	position: relative;
}

.intro-slider .slidee {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.intro-slider .slidee li {
	flex-shrink: 0;
	margin-right: 30px;
	width: 280px;
}

.intro-slider .intro-item {
	padding: 0;
	transition: transform 0.3s ease;
}

.intro-slider .intro-item:hover {
	transform: translateY(-5px);
}

.intro-slider .intro-item figure {
	margin: 0 0 20px 0;
	overflow: hidden;
	position: relative;
}

.intro-slider .intro-item img {
	width: 100%;
	transition: transform 0.7s ease;
	height: auto;
	display: block;
}

.intro-slider .intro-item:hover img {
	transform: scale(1.05);
}

.intro-slider .intro-item figure .bache {
	position: absolute;
	min-width: 59px;
	height: 59px;
	right: 0;
	top: 0;
	color: #fff;
	font-size: 14px;
	padding: 20px 10px 0;
	text-align: center;
	background: #000;
	z-index: 3;
	opacity: 0;
}

.intro-slider .intro-item .product-info {
	opacity: 0;
	padding-top: 20px;
	text-align: center;
	transition: all 0.4s ease;
}

.intro-slider .intro-item .product-info h5 {
	text-transform: none;
	font-weight: 700;
	margin-bottom: 15px;
	max-height: 6em;
	line-height: 1.5em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.intro-slider .intro-item .product-info h5 a {
	text-transform: none;
	display: inline-block;
	max-height: 3.6em;
	line-height: 1.2em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.intro-slider .intro-item .product-info p {
	font-size: 24px;
	color: #8d8d8d;
}

.intro-slider .active .intro-item figure {
	outline: 7px solid #414141;
	outline-offset: -7px;
	-webkit-transform: scale(1.06, 1.07);
	-ms-transform: scale(1.06, 1.07);
	transform: scale(1.06, 1.07);
}

.intro-slider .active .intro-item figure .bache {
	opacity: 1;
}

.intro-slider .active .intro-item .product-info {
	opacity: 1;
}

.scrollbar {
	margin: 80px auto 0;
	width: 100%;
	height: 7px;
	line-height: 0;
	background: #ececec;
	overflow: hidden;
}

.scrollbar .handle {
	width: 100px;
	height: 100%;
	background: #fff;
	cursor: pointer;
}

.scrollbar .handle .mousearea {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: #b09d81;
	border-radius: 30px;
}

.intro-slider {
	width: 100%;
	padding: 0;
}

.intro-slider .slidee {
	margin: 0;
	padding: 0;
	height: 100%;
	list-style: none;
}

.intro-slider .slidee li {
	float: left;
	margin: 0 32px;
	padding: 0;
	height: 100%;
	width: 391px;
}

/*------------------
  Featured section
---------------------*/

.featured-section {
	padding: 80px 0;
	background: #ffffff;
}

.featured-item {
	position: relative;
	overflow: hidden;
	transition: transform 0.5s ease;
	margin-bottom: 30px;
}

.featured-item:last-child {
	margin-bottom: 0;
}

.featured-item:hover {
	transform: scale(1.02);
}

.featured-item img {
	width: 100%;
	height: auto;
	transition: transform 0.7s ease;
	display: block;
}

.featured-item:hover img {
	transform: scale(1.05);
}

.featured-item .site-btn {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: all 0.3s ease;
}

.featured-item:hover .site-btn {
	opacity: 1;
	bottom: 35px;
}

/*------------------
  Product section
---------------------*/

.product-section {
	padding: 50px 0 20px 0;
}

.product-section .section-title {
	margin-bottom: 60px;
	text-align: center;
}

#product-filter {
	margin-top: 40px;
}

.mix {
	margin-bottom: 60px;
}

.product-item {
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

.product-item:hover {
	transform: translateY(-5px);
}

.product-item figure {
	margin: 0;
	overflow: hidden;
}

.product-item img {
	width: 100%;
	height: auto;
	transition: transform 0.7s ease;
	display: block;
}

.product-item:hover img {
	transform: scale(1.05);
}

.product-item .product-info {
	padding-top: 20px;
	text-align: left;
}

/*------------------
  Product section
---------------------*/

.product-section .container {
	margin-bottom: -90px;
}

.product-filter {
	list-style: none;
	text-align: center;
	margin-bottom: 90px;
}

.product-filter li {
	display: inline-block;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 700;
	margin-right: 70px;
	position: relative;
	cursor: pointer;
}

.product-filter li:last-child {
	margin-right: 0;
}

.product-filter li:last-child:after {
	display: none;
}

.product-filter li:after {
	position: absolute;
	content: "";
	height: 25px;
	width: 1px;
	right: -34px;
	top: 3px;
	background: #414141;
	-webkit-transform: skewX(-20deg);
	-ms-transform: skewX(-20deg);
	transform: skewX(-20deg);
}

.product-item {
	/*margin-bottom: 95px;*/
}

.product-item figure {
	/*margin-bottom: 45px;*/
	position: relative;
	overflow: hidden;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	position: relative;
}

.product-item figure img {
	min-width: 100%;
}

.product-item figure:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	border: 2px solid #ebebeb;
}

.product-item .bache {
	position: absolute;
	min-width: 59px;
	height: 59px;
	right: 0;
	top: 0;
	color: #fff;
	font-size: 14px;
	padding: 20px 10px 0;
	text-align: center;
	background: #414141;
	z-index: 3;
}

.product-item .bache.sale {
	background: #fd0018;
}

.product-item .pi-meta {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: #414141;
	padding: 10px 0;
	opacity: 0;
	-webkit-transform: translateY(110%);
	-ms-transform: translateY(110%);
	transform: translateY(110%);
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}

.product-item .pi-meta p {
	margin-bottom: 0;
	color: #fff;
	font-size: 12px;
}

.product-item .pi-meta img {
	min-width: auto;
}

.product-item .pi-meta .pi-m-left {
	float: left;
	display: inline-block;
	text-align: center;
	padding: 0 35px;
}

.product-item .pi-meta .pi-m-right {
	float: right;
	display: inline-block;
	text-align: center;
	padding: 0 35px;
}

.product-item .product-info {
	text-align: center;
}

.product-item .product-info h6 {
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 5px;
}

.product-item .product-info p {
	font-size: 24px;
	font-weight: 700;
	color: #414141;
}

.product-item .product-info p span {
	font-size: 14px;
	font-weight: 400;
	color: #000;
}

.product-item:hover figure:after {
	opacity: 1;
}

.product-item:hover .pi-meta {
	opacity: 1;
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}

/*------------------
  Blog section
---------------------*/

.blog-section {
	padding: 0 0 120px 0;
	/*background: #f9f9f9;*/
}

.blog-section .container {
	position: relative;
}

.blog-section .bgs-title {
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #000000;
}

.blog-item {
	margin-bottom: 50px;
	display: flex;
	align-items: flex-start;
	transition: transform 0.3s ease;
}

.blog-item:hover {
	transform: translateX(10px);
}

.blog-item:last-child {
	margin-bottom: 0;
}

.blog-item .bi-thumb {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	margin-right: 30px;
	overflow: hidden;
}

.blog-item .bi-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.blog-item:hover .bi-thumb img {
	transform: scale(1.05);
}

.blog-item .bi-content {
	flex-grow: 1;
	padding-left: 0;
}

.blog-item .bi-content h5 {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #000000;
	transition: color 0.3s ease;
}

.blog-item .bi-content h5:hover {
	color: #666666;
}

.blog-item .bi-content .bi-meta {
	font-size: 14px;
	font-weight: 400;
	color: #999999;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.blog-item .bi-content .readmore {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	padding-right: 20px;
	transition: color 0.3s ease;
}

.blog-item .bi-content .readmore:hover {
	color: #666666;
	text-decoration: none;
}

.blog-item .bi-content .readmore::after {
	content: '→';
	position: absolute;
	right: 0;
	transition: transform 0.3s ease;
}

.blog-item .bi-content .readmore:hover::after {
	transform: translateX(5px);
}

/*------------------
  Page Header
---------------------*/
.page-header {
	padding: 80px 0;
	text-align: center;
	background: #ffffff;
	position: relative;
}

.page-header h1 {
	font-size: 42px;
	font-weight: 100;
	color: #000000;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.breadcrumb {
	font-size: 14px;
	color: #999999;
	letter-spacing: 1px;
}

.breadcrumb a {
	color: #999999;
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: #000000;
	text-decoration: none;
}

.breadcrumb span {
	margin: 0 10px;
}

/*------------------
  Blog List
---------------------*/
.page-area {
	padding: 80px 0;
}

.blog-list {
	margin-bottom: 40px;
}

.blog-item {
	margin-bottom: 60px;
	transition: all 0.3s ease;
}

.blog-item:last-child {
	margin-bottom: 0;
}

.blog-media {
	margin-bottom: 25px;
	overflow: hidden;
}

.blog-media img {
	width: 100%;
	height: auto;
	transition: transform 0.7s ease;
	display: block;
}

.blog-item:hover .blog-media img {
	transform: scale(1.05);
}

.blog-content h3 {
	margin-bottom: 15px;
	color: #000000;
	transition: color 0.3s ease;
}

.blog-content h3:hover {
	color: #666666;
}

.blog-content h3 a {
	color: inherit;
	font-size: 22px;
}

.blog-content h3 a:hover {
	text-decoration: none;
}

.blog-meta {
	font-size: 14px;
	color: #999999;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.blog-meta span {
	margin-right: 20px;
}

.blog-excerpt {
	margin-bottom: 25px;
}

.blog-excerpt p {
	font-size: 16px;
	color: #666666;
	line-height: 1.8;
}

/*------------------
  Pagination
---------------------*/
.pagination {
	margin-top: 60px;
	text-align: center;
	justify-content: center;
}

.pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}

.pagination li {
	display: inline-block;
	margin: 0 5px;
}

.pagination a {
	display: inline-block;
	padding: 12px 16px;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.pagination a:hover {
	text-decoration: none;
	color: #666666;
}

.pagination li.active span {
	display: inline-block;
	padding: 12px 16px;
	background: #000000;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
}

.pagination li span {
	color: #999999;
	padding: 12px 16px;
}

.pagination a.prev,
.pagination a.next {
	padding: 12px 20px;
	letter-spacing: 1px;
}

.pagination a.prev i,
.pagination a.next i {
	margin: 0 5px;
}

/*------------------
  Sidebar
---------------------*/
.sidebar {
	position: relative;
}

.widget {
	margin-bottom: 60px;
}

.widget-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 30px;
	color: #000000;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 15px;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 1px;
	background: #000000;
}

/* Search Widget */
.search-form {
	position: relative;
}

.search-form input {
	width: 100%;
	padding: 15px 50px 15px 20px;
	border: 1px solid #e0e0e0;
	font-size: 14px;
	color: #000000;
	outline: none;
	transition: border-color 0.3s ease;
}

.search-form input:focus {
	border-color: #000000;
}

.search-form button {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 100%;
	background: none;
	border: none;
	color: #000000;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.3s ease;
}

.search-form button:hover {
	color: #666666;
}

/* About Widget */
.about-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #666666;
}

/* Recent Posts Widget */
.recent-posts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.recent-post {
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.recent-post:hover {
	transform: translateX(5px);
}

.recent-post:last-child {
	margin-bottom: 0;
}

.recent-post-title {
	display: block;
	font-size: 15px;
	font-weight: 400;
	color: #000000;
	margin-bottom: 5px;
	transition: color 0.3s ease;
}

.recent-post-title:hover {
	color: #666666;
	text-decoration: none;
}

.recent-post-date {
	font-size: 12px;
	color: #999999;
	letter-spacing: 1px;
}

/*------------------
  Call to Action
---------------------*/
.section-sm {
	padding: 60px 0;
}

.bg-accent {
	background: #000000;
	color: #ffffff;
}

.heading-decorated {
	font-size: 24px;
	font-weight: 300;
	letter-spacing: 2px;
	margin: 0;
}

/*------------------
  Footer Top section
---------------------*/

.footer-top-section {
	background: #111111;
	padding: 80px 0 0px;
	color: #ffffff;
}

.footer-top-section.home-footer {
	padding-bottom: 60px;
}

.footer-widget {
	margin-bottom: 40px;
}

.footer-widget .fw-title {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

.footer-widget .fw-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 1px;
	background: #666666;
}

.footer-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widget ul li {
	margin-bottom: 15px;
}

.footer-widget ul li a {
	color: #999999;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
	color: #ffffff;
	text-decoration: none;
}

.footer-widget .text-box p {
	color: #999999;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.footer-widget .text-box p:last-child {
	margin-bottom: 0;
}

.about-widget p {
	color: #999999;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.about-widget .cards img {
	margin-right: 10px;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.about-widget .cards img:hover {
	opacity: 1;
}

/*------------------
  Footer section
---------------------*/

.copyright {
	color: #999999;
	font-size: 14px;
	text-align: center;
	border-top: 1px solid #333333;
	padding: 25px 0;
	margin: 0;
	background: #111111;
}

/*------------------
	Other Pages
---------------------
========================*/

.page-info-section {
	background: #ebebeb;
}

.page-info-section.page-info-big {
	padding: 150px 0;
}

.page-info-section.page-info {
	padding: 87px 0;
}

.page-info-section h2 {
	font-size: 72px;
	font-weight: 400;
	line-height: normal;
}

.page-info-section .container {
	position: relative;
}

.page-info-section .page-info-art {
	position: absolute;
	bottom: -200px;
	right: 50px;
	width: 400px;
	height: 400px;
}

/*------------------
  Page Header
---------------------*/

.page-header {
	padding: 80px 0;
	background-color: #F1F1F1;
	position: relative;
	margin-bottom: 60px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
}

.page-header .container {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-header h1 {
	font-size: 42px;
	font-weight: 100;
	color: #333333;
	margin-bottom: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	animation: fadeInDown 0.8s ease;
}

.page-header .breadcrumb {
	display: inline-block;
	background: rgba(255, 255, 255, 0.7);
	padding: 10px 25px;
	border-radius: 25px;
	backdrop-filter: blur(5px);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	animation: fadeInUp 0.8s ease;
}

.page-header .breadcrumb a,
.page-header .breadcrumb span {
	color: #333333;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 500;
}

.page-header .breadcrumb a:hover {
	color: #cccccc;
	text-decoration: none;
}

/*------------------
  Animations
---------------------*/
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.site-breadcrumb {
	color: #909090;
}

.site-breadcrumb a {
	font-size: 18px;
	color: #909090;
}

.site-breadcrumb span {
	color: #414141;
}

.site-pagination a,
.site-pagination span {
	color: #969696;
	font-size: 14px;
}

.site-pagination a.active,
.site-pagination span.active {
	color: #414141;
}

/*------------------
  Categorie page
---------------------*/

.categorie-page {
	padding-top: 100px;
}

.cata-top-pic {
	position: absolute;
	top: -131px;
	right: 40px;

	width: 400px;
	height: 400px;
}

.categorie-filter-warp {
	margin-bottom: 100px;
	padding-top: 20px;
	overflow: hidden;
}

.categorie-filter-warp p {
	display: inline-block;
	color: #414141;
	padding-top: 3px;
}

.categorie-filter-warp .cf-right {
	float: right;
}

.categorie-filter-warp select {
	width: 190px;
	height: 36px;
	border: none;
	font-size: 14px;
	padding: 0 26px;
	background: #f1f2ff;
	margin-left: 10px;
}

.categorie-filter-warp form {
	float: right;
}

.cf-layouts {
	float: right;
	margin-left: 35px;
}

.cf-layouts a {
	margin-left: 8px;
}

.cf-layouts a img {
	padding-top: 5px;
	opacity: 0.3;
}

.cf-layouts a.active img {
	opacity: 1;
}

/*------------------
  Product page
---------------------*/

.product-page {
	padding-top: 100px;
	padding-bottom: 5px;
}

.product-thumbs {
	/*position: absolute;*/
	/*height: 750px;*/
	/*width: 157px;*/
	right: 100%;
	top: 0;
	overflow-y: auto;
}

.product-thumbs-track{
	text-align: right;
}

.product-thumbs .pt {
	display: inline-block;
	margin-bottom: 16px;
	cursor: pointer;
	text-align: right;
}

.product-thumbs .pt img {
	border: 1px solid #222;
	width: 80px;
	height: 80px;
}

.product-thumbs .pt:last-child {
	margin-bottom: 0;
}

.product-content h2 {
	margin-bottom: 20px;
}

.product-content .pc-meta {
	margin-bottom: 45px;
}

.product-content .price {
	font-weight: 700;
	display: inline-block;
	margin-right: 18px;
}

.product-content .review {
	display: inline-block;
	position: relative;
	top: -3px;
}

.product-content .review .rating {
	display: inline-block;
	margin-right: 18px;
}

.product-content .review .rating i {
	font-size: 12px;
}

.product-content .review span {
	font-size: 12px;
	color: #b4b4b4;
	font-weight: 600;
}

.product-content p {
	font-weight: 500;
	margin-bottom: 50px;
}

.product-content .color-choose {
	margin-bottom: 50px;
}

.product-content .color-choose span {
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	float: left;
	margin-right: 24px;
}

.product-content .color-choose .cs-item {
	display: inline-block;
	position: relative;
	margin-right: 21px;
}

.product-content .color-choose label {
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background: #333;
	position: relative;
	cursor: pointer;
}

.product-content .color-choose label:after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	left: 50%;
	top: 50%;
	border-radius: 50px;
	opacity: 0;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.product-content .color-choose label.cs-black {
	background: #111111;
}

.product-content .color-choose label.cs-black:after {
	border: 1px solid #111111;
}

.product-content .color-choose label.cs-blue {
	background: #6f91ff;
}

.product-content .color-choose label.cs-blue:after {
	border: 1px solid #6f91ff;
}

.product-content .color-choose label.cs-yollow {
	background: #ffb017;
}

.product-content .color-choose label.cs-yollow:after {
	border: 1px solid #ffb017;
}

.product-content .color-choose label.cs-orange {
	background: #e2613f;
}

.product-content .color-choose label.cs-orange:after {
	border: 1px solid #e2613f;
}

.product-content .color-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.product-content .color-choose input[type=radio]:checked+label:after {
	left: calc(50% - 13.5px);
	top: calc(50% - 13.5px);
	width: 27px;
	height: 27px;
	opacity: 1;
}

.product-content .size-choose {
	margin-bottom: 50px;
}

.product-content .size-choose span {
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	float: left;
	margin-right: 24px;
	padding-top: 10px;
}

.product-content .size-choose .sc-item {
	display: inline-block;
	position: relative;
	margin-right: 5px;
}

.product-content .size-choose label {
	display: inline-block;
	height: 37px;
	min-width: 37px;
	text-align: center;
	padding: 7px 5px 8px;
	font-size: 14px;
	color: #414141;
	font-weight: 500;
	border: 1px solid #dcdfff;
	cursor: pointer;
}

.product-content .size-choose input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.product-content .size-choose input[type=radio]:checked+label {
	border: 1px solid #111111;
}

.product-details {
	margin: 50px 0;
	padding: 40px 20px;
	border-top: 1px solid #F2F2F2;
	border-bottom: 1px solid #F2F2F2;
	text-align: center;
}

.product-details .nav {
	text-align: center;
	display: block;
	margin-bottom: 55px;
}

.product-details .nav li {
	display: inline-block;
	margin-right: 60px;
}

.product-details .nav li:last-child {
	margin-right: 0;
}

.product-details .nav li a {
	font-size: 18px;
	font-weight: 500;
	color: #414141;
	padding: 5px 0;
}

.product-details .nav li a.active {
	border-bottom: 3px solid #b09d81;
}

.product-details .tab-pane p {
	font-weight: 500;
}

.rp-title {
	margin-bottom: 100px;
}

.rp-title h5 {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}

/*------------------
  Cart page
---------------------*/

.cart-table {
	margin-bottom: 54px;
	overflow-y: auto;
}

.cart-table table {
	width: 100%;
}

.cart-table thead {
	background: #ebebeb;
	margin-bottom: 55px;
}

.cart-table thead th {
	padding: 5px 25px;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
}

.cart-table tbody td {
	margin-top: 37px;
}

.cart-table .product-th {
	text-align: left;
}

.cart-table .product-col {
	display: table;
}

.cart-table .product-col img {
	display: table-cell;
	max-width: 187px;
}

.cart-table .product-col .pc-title {
	padding-left: 35px;
	display: table-cell;
	vertical-align: middle;
}

.cart-table .product-col .pc-title h4 {
	font-size: 18px;
	font-weight: 400;
}

.cart-table .product-col .pc-title a {
	font-size: 12px;
	color: #9e9e9e;
}

.cart-table .quy-input {
	width: 147px;
	height: 60px;
	background: #ebebeb;
	overflow: hidden;
	padding-top: 17px;
	padding-left: 25px;
	padding-right: 3px;
	margin: 0 auto;
}

.cart-table .quy-input span {
	font-size: 16px;
}

.cart-table .quy-input input {
	font-size: 16px;
	float: right;
	width: 60px;
	background-color: transparent;
	border: none;
}

.cart-table .price-col {
	text-align: center;
}

.cart-table .total-col {
	text-align: right;
	width: 8%;
}

.cart-table .total-th {
	text-align: right;
}

.cart-buttons {
	margin-bottom: 50px;
}

.cart-buttons .btn-continue {
	background: #b09d81;
	padding: 21px 30px;
	min-width: 260px;
	font-size: 16px;
}

.cart-buttons .btn-clear {
	min-width: 180px;
	padding: 21px 30px;
	background: #ebebeb;
	color: #414141;
	margin-right: 17px;
	font-size: 16px;
}

.cart-buttons .btn-update {
	min-width: 178px;
	padding: 19px 30px;
	font-size: 16px;
}

.card-warp {
	max-width: 1284px;
	margin: 0 auto;
	background: #ebebeb;
	padding: 65px 0;
}

.shipping-info h4 {
	font-weight: 400;
}

.shipping-info p {
	margin-bottom: 40px;
}

.shipping-chooes {
	margin-bottom: 85px;
}

.shipping-chooes .sc-item {
	margin-bottom: 31px;
}

.shipping-chooes label {
	display: block;
	font-size: 14px;
	color: #414141;
	margin-bottom: 0;
	padding-left: 35px;
	position: relative;
	cursor: pointer;
}

.shipping-chooes label span {
	float: right;
}

.shipping-chooes label:after {
	position: absolute;
	content: "";
	width: 11px;
	height: 11px;
	left: 0;
	top: 5px;
	background: #fff;
	border: 2px solid #9f9f9f;
	border-radius: 40px;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.shipping-chooes input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.shipping-chooes input[type=radio]:checked+label:after {
	background: #e95a5a;
	border: 2px solid #e95a5a;
}

.cupon-input {
	position: relative;
}

.cupon-input input {
	width: 100%;
	height: 52px;
	border: none;
	background: #fff;
	padding: 10px 20px;
	padding-right: 135px;
}

.cupon-input .site-btn {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	min-width: 122px;
	background: #b09d81;
}

.cart-total-details h4 {
	font-weight: 400;
}

.cart-total-details p {
	margin-bottom: 40px;
}

.cart-total-details .btn-full {
	width: 100%;
	font-size: 16px;
	background: #b09d81;
	padding: 20px 30px;
}

.cart-total-card {
	background: #fff;
	list-style: none;
	padding: 15px 7px 77px;
}

.cart-total-card li {
	display: block;
	font-size: 14px;
	color: #414141;
	padding: 15px 36px;
	margin-bottom: 15px;
}

.cart-total-card li span {
	float: right;
}

.cart-total-card li.total {
	background: #f7f7f7;
}

/*------------------
  Checkout page
---------------------*/

.checkout-form .checkout-title {
	font-weight: 400;
	margin-bottom: 50px;
}

.checkout-form input[type=text],
.checkout-form input[type=email],
.checkout-form input[type=password],
.checkout-form select {
	width: 100%;
	border: none;
	background: #ebebeb;
	font-size: 14px;
	height: 52px;
	margin-bottom: 25px;
	color: #414141;
	padding: 5px 20px;
}

.checkbox-items .ci-item:last-child label {
	margin-bottom: 0;
}

.checkbox-items .ci-item input[type=password] {
	opacity: 0;
	visibility: hidden;
	margin-bottom: 0;
	height: 0;
	padding: 0 20px;
	display: block;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.checkbox-items .ci-item label {
	display: block;
	font-size: 14px;
	color: #7e7e7e;
	margin-bottom: 5px;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.checkbox-items .ci-item label:after {
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	left: 0;
	top: 3px;
	background-color: #f2f4f8;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.checkbox-items .ci-item input[type=checkbox] {
	visibility: hidden;
	position: absolute;
}

.checkbox-items .ci-item input[type=checkbox]:checked+label:after {
	background-image: url("../img/icons/check.png");
}

.checkbox-items .ci-item input[type=checkbox]:checked+label+input[type=password] {
	height: 52px;
	opacity: 1;
	visibility: visible;
	padding: 5px 20px;
	margin-bottom: 15px;
}

.order-card {
	background: #ebebeb;
	padding: 34px 40px;
	border: 2px solid #f4f2f8;
}

.order-card .btn-full {
	width: 100%;
	font-size: 16px;
	background: #b09d81;
	padding: 20px 30px;
	margin-top: 32px;
}

.order-details {
	padding: 38px 19px 24px;
	background: #fff;
}

.od-warp {
	padding: 0 26px;
}

.order-table {
	width: 100%;
}

.order-table th {
	font-size: 14px;
	font-weight: 400;
	color: #414141;
}

.order-table td {
	font-size: 14px;
	color: #7e7e7e;
}

.order-table thead th {
	padding-bottom: 40px;
}

.order-table tbody td {
	padding-bottom: 40px;
}

.payment-method {
	background: #f5f5f5;
	padding: 35px 55px 15px;
	margin-top: 80px;
}

.payment-method .pm-item {
	margin-bottom: 15px;
}

.payment-method label {
	display: block;
	font-size: 14px;
	color: #414141;
	margin-bottom: 0;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
}

.payment-method label:after {
	position: absolute;
	content: "";
	width: 11px;
	height: 11px;
	left: 0;
	top: 5px;
	border: 2px solid #6c6a74;
	border-radius: 40px;
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
}

.payment-method input[type=radio] {
	visibility: hidden;
	position: absolute;
}

.payment-method input[type=radio]:checked+label:after {
	border: 2px solid #e95a5a;
}

/*------------------
  Contact page
---------------------*/

.contact-title {
	line-height: normal;
	margin-bottom: 50px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
	width: 100%;
	border: none;
	background: #ebebeb;
	font-size: 14px;
	height: 52px;
	margin-bottom: 23px;
	color: #414141;
	padding: 5px 20px;
}

.contact-form textarea {
	margin-top: 5px;
	height: 197px;
	padding: 20px 20px;
}

.contact-form .site-btn {
	font-size: 16px;
	background: #b09d81;
	padding: 20px 30px;
	min-width: 215px;
}

.map-area {
	height: 661px;
	background: #ddd;
	position: relative;
	margin-top: -565px;
}

.map {
	height: 100%;
}

.contact-page{
	margin-top: 200px;
}
.contact-info-warp {
	position: relative;
	z-index: 99;
	padding-top: 100px;
}

.contact-warp {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: table;
	z-index: 99;
}

.contact-warp .cw-center {
	display: table-cell;
	vertical-align: middle;
}

.contact-card {
	width: 336px;
	padding: 85px 54px 5px;
	background: #b09d81;
	margin-left: auto;
}

.contact-section{
	margin-bottom: 80px;
}
.contact-info {
	margin-bottom: 80px;
}

.contact-info .contact-item{
	display: flex;
}

.contact-info h4 {
	font-weight: 100;
	margin-bottom: 25px;
	margin-left: 15px;
	font-size: 14px;
}

.contact-info p {
	color: #fff;
	margin-bottom: 0;
}

/*------------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 85%;
	}
}

@media only screen and (max-width: 1673px) {
	.hs-item .hs-left {
		width: 40%;
	}
}

@media only screen and (max-width: 1527px) {
	.hs-item .hs-left {
		width: 40%;
	}
	.main-menu {
		margin-right: 0px;
	}
	.product-thumbs {
		position: relative;
		width: 100%;
		height: 80px;
		right: 0;
		margin-top: 16px;
	}
	.product-thumbs-track {
		width: 2000px;
		display: flex;
	}
	.product-thumbs .pt {
		width: 80px;
		float: left;
		margin-bottom: 0;
		margin-right: 16px;
	}
}

@media only screen and (max-width: 1415px) {
	.hs-item .hs-left {
		top: 10px;
		position: relative;
		width: 40%;
	}
	.hs-item .hs-content h2 {
		font-size: 70px;
	}
}

@media only screen and (max-width: 1350px) {
	.main-menu {
		margin-right: 0px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.hs-item .hs-left {
		top: 30px;
		position: relative;
	}
	.hs-item .hs-content h2 {
		font-size: 60px;
	}
	.product-item .pi-meta .pi-m-left {
		padding: 0 20px;
	}
	.product-item .pi-meta .pi-m-right {
		padding: 0 20px;
	}
	.cata-top-pic {
		top: -20px;
		max-width: 340px;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header-section {
		padding: 30px 15px 0;
	}
	.header-section.header-normal {
		padding: 30px 0 58px;
	}
	.site-logo {
		max-width: 130px;
	}
	.main-menu {
		margin-right: 0px;
	}
	.main-menu li a {
		font-size: 20px;
		margin-left: 14px;
	}
	.hs-item .hs-left {
		display: none;
	}
	.hs-item .hs-right {
		width: 100%;
		float: none;
		padding: 0 120px;
	}
	.intro-slider .slidee li {
		width: 300px;
	}
	.blog-section .bgs-title {
		padding-top: 80px;
	}
	.cata-top-pic {
		top: 66px;
		max-width: 230px;
	}
	.categorie-filter-warp .cf-right {
		float: none;
	}
	.categorie-filter-warp form {
		float: left;
	}
	.categorie-filter-warp form select:first-child {
		margin-left: 0;
	}
	.cf-layouts {
		margin-left: 0;
	}
	.order-card {
		margin-top: 50px;
	}
	.cart-page {
		padding-bottom: 0;
	}
	.product-content {
		padding-top: 50px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.page-header {
		margin-bottom: 0 !important;
	}
	.contact-page {
		margin-top: 20px;
	}
	.contact-info-warp {
		padding-top: 0;
		z-index: 0;
		margin-bottom: 40px;
	}
	.page-info-section.page-info-big {
		padding: 100px 0;
		display: none;
	}
	.page-info-section h2 {
		font-size: 40px;
	}
	.footer-top-section {
		padding-top: 50px;
		padding-bottom: 0px;
		background: #282828;
		text-align: center;
	}
	.footer-top-section .container .row>div:first-child {
		display: block; /* 或其他您需要的显示属性 */
	}

	/* 隐藏其他所有兄弟div */
	.footer-top-section .container .row>div:not(:first-child) {
		display: none;
	}

	.blog-section.spad {
		display: none;
	}
	.header-section {
		padding: 30px 0 0;
	}
	.header-section.header-normal {
		padding: 30px;
	}
	.site-logo {
		max-width: 130px;
	}
	.nav-switch {
		display: block;
		float: right;
		font-size: 26px;
		margin-left: 23px;
		/*color: #fff;*/
		color: #414141;
		padding-top: 3px;
		cursor: pointer;

		margin-right: 10px;
		margin-top: -10px;
	}
	.main-menu {
		display: none;
		position: absolute;
		width: calc(100% - 30px);
		top: 100%;
		margin-top: 20px;
		left: 15px;
		background: #fff;
		-webkit-box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.1);
		box-shadow: 0px 12px 50px rgba(0, 0, 0, 0.1);
	}
	.main-menu li {
		display: block;
		float: none;
	}
	.main-menu li a {
		color: #414141;
		display: block;
		margin-left: 0;
		padding: 15px 20px;
		border-bottom: 1px solid #f1f1f1;
	}
	.hero-section {
		height: auto;
	}
	.hs-item .hs-left {
		/*display: none;*/
		width: auto;
		padding: 0;
	}
	.hs-item .hs-right {
		width: 100%;
		float: none;
		padding: 0 70px;
		text-align: center;
	}
	.hs-item .hs-content {
		padding: 100px 0;
	}
	.hs-item .hs-content h2 {
		font-size: 55px;
		line-height: 50px;
	}
	.hs-item .hs-content h2 span {
		display: none;
	}
	.owl-item.active .hs-item .hs-content .price {
		display: none;
	}

	.intro-slider .slidee li {
		width: 240px;
	}
	.featured-item {
		margin-bottom: 80px;
	}
	.product-filter li {
		margin-right: 28px;
	}
	.product-filter li:after {
		right: -15px;
		top: -2px;
	}
	.cata-top-pic,
	.page-info-art {
		display: none;
	}
	.map-area {
		margin-top: 0;
	}
	.contact-card {
		width: 100%;
	}
	.categorie-filter-warp .cf-right {
		float: none;
	}
	.categorie-filter-warp form {
		float: none;
	}
	.cf-layouts {
		float: none;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.cf-layouts a:first-child {
		margin-left: 0;
	}
	.categorie-filter-warp select {
		margin-bottom: 15px;
		width: 157px;
	}
	.categorie-filter-warp select:first-child {
		margin-left: 0;
	}
	.categorie-filter-warp {
		margin-bottom: 60px;
	}
	.order-card {
		margin-top: 50px;
	}
	.cart-table .product-col .pc-title {
		padding-left: 10px;
	}
	.cart-table .product-col img {
		max-width: 110px;
	}
	.cart-table .quy-input {
		width: 135px;
	}
	.cart-buttons .btn-continue,
	.cart-buttons .btn-clear {
		margin-bottom: 20px;
	}
	.cart-total-details {
		margin-top: 30px;
	}
	.cart-page {
		padding-bottom: 0;
	}
	.product-details .nav li {
		margin-right: 30px;
	}
	.product-content {
		padding-top: 50px;
	}
}

/* Medium Mobile :480px. */

@media only screen and (max-width: 576px) {
	.categorie-filter-warp select {
		margin-bottom: 15px;
		width: 100%;
		margin-left: 0;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hs-item .hs-right {
		padding: 0 40px;
	}
	.hs-item .hs-content h2 {
		font-size: 40px;
	}
	.hero-slider .owl-nav {
		padding: 0 15px;
	}
	.product-filter {
		text-align: center;
	}
	.product-filter li {
		margin-right: 0;
		display: block;
	}
	.product-filter li:after {
		display: none;
	}
	.blog-item .bi-thumb {
		float: none;
	}
	.blog-item .bi-content {
		padding-left: 0;
		padding-top: 20px;
	}
	.od-warp {
		padding: 0;
	}
	.order-card {
		padding: 20px 25px;
	}
	.payment-method {
		padding: 30px 30px 10px;
	}
}