﻿body, html {
	width: 100%;
	height: 100%;
}
body, div, ul, li, table, td, tr, th, ol, p, img, h1, h2, h3, h4, h5, h6, span, form {
	margin: 0px;
	padding: 0px;
	font-family: 'Poppins', sans-serif;
}
ul {
	list-style: none;
}
body {
	font-size: 15px;
	font-weight: normal;
	color: #000;
	background: #FBFBFB;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
}
.preloader {
    width: 100%;
    height: 100%;
    top: 0px;
    position: fixed;
    z-index: 99999;
    background: #ffffff85;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader img {
	/*position: absolute;*/
	top: calc(40% - 3.5px);
	left: calc(50% - 3.5px)
}
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding-top: 0px;
	padding-bottom: 8px;
	z-index: 999;
}
.header_bottom_section {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 28px;
	font-weight: 600;
	color: white;
}
.logo span {
	color: #ff2e8a;
}
.mobilelogo {
	display: none;
}
.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
}
.menu-toggle span {
	width: 28px;
	height: 3px;
	background: #fff;
	margin: 3px 0;
	transition: 0.4s;
}
/* ANIMATED X */
.menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 1px);
}
.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(12px, -6px);
}
nav ul {
	display: flex;
	gap: 35px;
	list-style: none;
}
nav ul li a {
	text-decoration: none;
	color: #FFF;
	font-weight: 500;
	transition: .3s;
}
nav ul li a:hover {
	color: #caa34d;
	text-decoration: none;
}
nav ul li {
	position: relative;
	transition: all 0.5s ease 0s;
}
nav ul li::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	background: #caa34d;
	width: 0px;
	height: 2px;
	transition: all 0.5s ease 0s;
}
nav ul li:hover::before {
	width: 100%;
}
nav ul li .submenu li::before {
	display: none;
}
.submenu {
	position: absolute;
	top: 126%;
	left: 0;
	display: block; /* ✅ KEY CHANGE */
	/* spacing between items */
	background: #062546;
	padding: 0;
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: 0.3s ease;
	flex-direction: column;
	width: 200px;
	z-index: 10;
}
nav ul li:hover > .submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
/* Submenu items */
.submenu li {
	padding: 0;
	margin: 0;
	padding: 12px;
	width: 100%;
	border-bottom: 1px solid #0b3868;
}
.submenu li:last-child {
	border-bottom: none;
}
/* Submenu links */
.submenu li a {
	padding: 0;
	margin: 0;
	color: #ddd;
	display: block;
}
.submenu li a:hover {
	color: #caa34d;
	padding-left: 5px;
}
/* Position 3rd level to right */
.submenu .submenu {
	top: 0;
	left: 100%;
	transform: translateX(10px);
}
/* Animation for 3rd level */
.submenu li:hover > .submenu {
	transform: translateX(0);
}
nav ul li .arrow {
	display: inline-block;
	margin-left: 6px;
	width: 6px;
	height: 6px;
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	transform: rotate(45deg);
	transition: 0.3s ease;
}
/* Rotate arrow on hover */
nav ul li:hover > a .arrow {
	transform: rotate(225deg);
	border-color: #caa34d;
}
/* 3rd level arrow (right side) */
.submenu .arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
/* Rotate 3rd level arrow */
.submenu .dropdown:hover > a .arrow {
	transform: translateY(-50%) rotate(135deg);
	border-color: #caa34d;
}
#header.scrolled {
	background: #072647;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
/* HERO SLIDER */

.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	padding: 0 8%;
	color: white;
	opacity: 0;
	transition: 1s;
}
.slide.active {
	opacity: 1;
}
.slide-content {
	width: 100%;
	position: relative;
	z-index: 1;
	text-align: center;
	padding-top: 100px;
}
.slide-content h1 {
	font-size: 60px;
	margin-bottom: 15px;
}
.slide-content p {
	font-size: 18px;
	margin-bottom: 25px;
	line-height: 1.6;
}
.slide-content button {
	padding: 14px 30px;
	border: none;
	background: #caa34d;
	color: white;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: .3s;
}
.slide-content button:hover {
	background: #b89035;
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}
.slide-content h1, .slide-content p, .slide-content button {
	opacity: 0;
	transform: translateY(40px);
	transition: all .8s ease;
}
/* When slide becomes active */

.slide.active .slide-content h1 {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .3s;
}
.slide.active .slide-content p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .6s;
}
.slide.active .slide-content button {
	opacity: 1;
	transform: translateY(0);
	transition-delay: .9s;
}
.slide-content button {
	padding: 14px 30px;
	border: none;
	background: #caa34d;
	color: white;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: all .4s ease;
	position: relative;
	overflow: hidden;
}
 @keyframes shine {
0% {
background-position:0%
}
100% {
background-position:200%
}
}
/*login*/

.login-panel {
	padding-top: 200px;
	padding-bottom: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(../images/loginbg.jpg) no-repeat;
	background-size: cover;
}
.login-box {
	width: 380px;
	padding: 40px;
	background: rgba(255,255,255,0.08);
	border-radius: 15px;
	backdrop-filter: blur(15px);
	box-shadow: 0 10px 40px rgba(0,0,0,0.4);
	text-align: center;
	color: white;
}
.register-box {
	width: 420px;
	padding: 40px;
	border-radius: 16px;
	background: rgba(255,255,255,0.08);
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
	border: 1px solid rgba(255,255,255,0.1);
	width: 800px;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
}
.login-box h2, .register-box h2 {
	margin-bottom: 25px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #A37E2A;
	text-align: center;
	background: linear-gradient(90deg, #AE8B2B, #F9DB7C);
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* Input Fields */

.input-box {
	position: relative;
	margin-bottom: 25px;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.input-box input, .input-box select {
	width: 100%;
	padding: 12px 10px;
	border: none;
	border-bottom: 2px solid rgba(255,255,255,0.4);
	background: transparent;
	color: #FFF;
	font-size: 14px;
	outline: none;
	transition: 0.3s;
}
.input-box-withlabel input, .input-box-withlabel select {
	width: 100%;
	padding: 12px 10px;
	border: none;
	border-bottom: 2px solid rgba(255,255,255,0.4);
	background: transparent;
	color: #FFF;
	font-size: 14px;
	outline: none;
	transition: 0.3s;
}
.input-box-withlabel input:focus {
	border-color: #A37E2A;
}
.input-box-withlabel label {
	color: #A37E2A;
	font-size: 14px;
	pointer-events: none;
	transition: 0.3s;
}
.input-box label {
	position: absolute;
	top: 12px;
	left: 10px;
	color: #FFF;
	font-size: 14px;
	pointer-events: none;
	transition: 0.3s;
}
 .input-box input:focus + label, .input-box input:valid + label {
top:-10px;
font-size:12px;
color:#A37E2A;
}
.input-box input:focus {
	border-color: #A37E2A;
}
select option {
	color: black;
}
/* Button */

.login-btn, .register-btn {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 30px;
	background: #A37E2A;
	color: #052345;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	font-weight: 400;
}
.register-btn {
	margin-top: 40px;
}
.login-btn:hover, .register-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(163,126,42,0.6);
}
/* Footer Links */

.extra {
	margin-top: 15px;
	font-size: 13px;
	color: #FFF;
	text-align: center;
}
.extra a {
	color: #FFF;
	text-decoration: none;
	transition: 0.3s;
}
.extra a:hover {
	color: #A37E2A;
}
/*-----------------------------*/

/*.topbg{width:100%; float:left; background:url(../images/bg01.jpg) no-repeat; background-size:cover;}*/
.header_top_section {
	width: 100%;
	padding-top: 8px;
	padding-bottom: 8px;
}
.header_top_section ul {
	list-style: none;
	float: right;
}
.header_top_section ul li {
	float: left;
	font-size: 13px;
	color: #FFF;
	padding-left: 15px;
	position: relative;
}
.header_top_section ul li ul {
	position: absolute;
	top: 100%;
	left: 100%;
	transform: translateX(-130px);
	background: #FFF;
	z-index: 1002;
	width: 180px;
	padding: 10px;
	box-shadow: 0 15px 40px rgba(0,0,0,.15);
	transition: all 0.5s ease 0s;
	display: none;
	border-radius: 4px;
}
.header_top_section ul li ul li {
	display: block;
	color: #042344;
	padding-left: 0px;
	line-height: 28px;
	width: 100%
}
.header_top_section ul li ul li button{
    border:0;
    outline:0;
    margin:0px;
    padding:0px;
    background: none;
}
.header_top_section ul li ul li button:hover {
	color: #A57E31
}
.header_top_section ul li:hover ul {
    display: block;
}
.header_top_section ul li ul li a {
	color: #042344
}
.header_top_section ul li ul li a:hover {
	color: #A57E31
}
.header_top_section ul li a {
	color: #FFF;
	transition: 0.3s;
}
.header_top_section ul li a:hover {
	color: #b89035;
	text-decoration: none;
}
.header_middle_section {
	width: 100%;
	float: left;
	margin-top: 10px;
}
.header_middle_section .logo {
	width: 100%;
	float: left;
}
.header_middle_section .shopping_cart_section {
}
.header_middle_section .shopping_cart_section ul {
	list-style: none;
	float: right;
}
.header_middle_section .shopping_cart_section ul li {
	float: left;
	font-size: 13px;
	padding: 10px 20px;
	line-height: 24px;
	position: relative;
	z-index: 100;
	border: 1px solid #FBFBFB;
}
.header_middle_section .shopping_cart_section ul li span {
	color: #C05786;
}
.header_middle_section .shopping_cart_section ul li a {
	color: #323232;
}
.header_middle_section .shopping_cart_section ul li a:hover {
	color: #323232;
	text-decoration: none;
}
.header_middle_section .shopping_cart_section ul li a span.itemqty {
	background: #C05786;
	color: #FFF;
	position: absolute;
	top: 9px;
	left: 7px;
	text-align: center;
	font-size: 9px;
	padding: 6px;
	line-height: 5px;
	border-radius: 100%;
	font-family: 'roboto-black';
}
.header_middle_section .shopping_cart_section ul li .overlapline {
	position: absolute;
	width: 100%;
	height: 3px;
	top: 43px;
	left: 0;
	background: #FBFBFB;
	z-index: 11!important
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel {
	position: absolute;
	width: 430px;
	top: 44px;
	right: -1px;
	border: 1px solid #DFDFDF;
	display: none;
	z-index: 10!important;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_item {
	width: 100%;
	float: left;
	padding: 10px;
	background: #FBFBFB;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_item h4 {
	color: #595959;
	font-size: 12px;
	font-family: 'roboto-black';
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_item p {
	color: #595959;
	font-size: 14px;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_item img {
	border: 1px solid #DDDDDD;
	float: left;
	margin-right: 10px;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_item .deletebutton {
	position: absolute;
	right: 20px;
	top: 46%;
	cursor: pointer;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_item .deletebutton img {
	border: none;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_button {
	width: 100%;
	float: left;
	background: #C05786;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_button a {
	padding: 8px 20px;
	color: #FFF;
	display: inline-block;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_button a:hover {
	text-decoration: none;
}
.header_middle_section .shopping_cart_section ul li .header_cart_panel .header_cart_button img {
	margin-right: 3px;
}
.header_middle_section .shopping_cart_section ul li:hover .header_cart_panel {
	display: block;
}
.header_middle_section .shopping_cart_section ul li:hover {
	border: 1px solid #DFDFDF;
	border-bottom: none;
}
.togglemenu {
	float: none;
	padding: 10px 10px;
	padding-top: 6px;
	margin: 0;
	cursor: pointer;
	margin: auto;
	float: right;
	background: #A62964;
	margin-top: 6px;
	margin-bottom: 6px;
	display: none;
}
.menupanel {
	width: 100%;
	float: left;
	padding-top: 20px;
}
.menupanel ul {
	list-style: none;
	float: right;
}
.menupanel ul li {
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	line-height: 50px;
	font-family: 'roboto-black';
	font-size: 13px;
	letter-spacing: 1px;
	position: relative
}
.menupanel ul li .overlapmenuline {
	position: absolute;
	left: 0;
	border: -15px;
	height: 7px;
	background: #028CD1;
}
.menupanel ul li:hover, .menupanel ul li.activemenu {
}
.menupanel ul li:hover a, .menupanel ul li.activemenu a {
	color: #FFF;
}
.menupanel ul li a {
	color: #FF8AB2;
}
.menupanel ul li a:hover {
	text-decoration: none;
}
.menupanel .search {
	width: 100%;
	float: left;
	border: 1px solid #DDDDDD;
	position: relative;
	padding: 6px 10px;
}
.menupanel .search input[type="text"] {
	width: 100%;
	border: none;
	background: none;
}
.menupanel .search button {
	position: absolute;
	top: 5px;
	right: 12px;
	background: none;
	border: none;
}
.menupanel .search button:hover i {
	color: #028CD1;
}
.bannerpanel {
	width: 100%;
	float: left;
	padding-top: 100px;
	position: relative;
}
.bannerpanel img {
	max-width: 100%;
	height: auto;
}
.bannerpanel h2 {
	font-size: 40px;
	color: #BFDBE7;
	font-family: 'roboto-black';
	margin-bottom: 10px;
}
.bannerpanel h3 {
	font-size: 30px;
	color: #FFF;
	margin-bottom: 30px;
}
.bannerpanel img {
	float: right;
	margin-bottom: -40px;
	position: relative;
	z-index: 100
}
.bannerpanel a.bannerbut {
	padding: 6px 25px;
	background: #A62964;
	color: #FFF;
	font-size: 25px;
	display: inline-block;
	margin-top: 15px;
	box-shadow: 5px 0px 10px -5px #4A071A, 0 5px 10px -5px #4A071A;
	transition: all 0.5s ease 0s;
}
.bannerpanel a.bannerbut:hover {
	background: #242424;
	text-decoration: none;
}
.innerbanner {
	width: 100%;
	float: left;
	background: url(../images/loginbg.jpg) no-repeat;
	background-size: cover;
	padding-top: 140px;
	padding-bottom: 40px;
}
.innerbanner h1 {
	font-size: 40px;
	color: #A57E31;
	background: linear-gradient(90deg, #AE8B2B, #F9DB7C);
	background-clip: border-box;
	background-clip: border-box;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
  margin-bottom:25px;
}
.founder-image img {
	max-width:100%; height:auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.founder-content .highlight {
  font-weight: 600;
  color: #f59e0b;
  margin-bottom: 15px;
}
.founder-content .bold {
  font-weight: 600;
  color: #111;
}

.midpanel {
	width: 100%;
	float: left;
	background: #FBFBFB;
	padding-top: 40px;
	padding-bottom: 40px;
}
.midpanel h2 {
	font-size: 32px;
	color: #07274A;
	margin-bottom: 20px;
}
.midpanel h3 {
	font-size: 22px;
	color: #242424;
	margin-bottom: 20px;
}
.midpanel h4 {
	font-size: 18px;
	color: #242424;
	margin-bottom: 20px;
}
.midpanel p {
	font-size: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
	color: #4F4F4F;
}
.contact-video-section {
	width: 100%;
	display:flex;
    justify-content: center;
	margin-bottom:15px;
}
.contact-video{ }
.contact-video video {width:100%; max-width:550px; height:auto;}
.contact-section {
	width: 100%;
	float: left;
	background: #F4F7FA;
	padding-top: 50px;
	padding-bottom: 50px;
}
.contact-section p {
	font-size: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
	color: #4F4F4F;
}
.contact-section h2 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #072647;
}
.contact-section h3 {
	font-size: 19px;
	font-weight: 400;
	margin-bottom: 5px;
	color: #333;
}
.contact-row {
	display: flex;
	gap: 50px;
}
.contact-col-contact {
	flex: 0 0 calc(40% - 50px);
	background: #FFF;
	border-radius: 8px;
	padding: 25px;
}
.contact-col-contact .contact-info-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin-bottom: 15px;
}
.contact-col-contact .contact-info-item .info-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #E7EEFC;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	color: #072647;
}
.contact-col-frm {
	flex: 0 0 calc(60% - 50px);
	gap: 50px;
	background: #FFF;
	border-radius: 8px;
	padding: 25px;
}
.frm-row {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.frm-col {
	flex: 0 0 calc(50% - 15px)
}
.frm-col2 {
	flex: 0 0 100%
}
.frm-control input[type="text"], .frm-control input[type="email"], .frm-control textarea {
	border-radius: 8px;
	border: 1px solid #D8D9DB;
	padding: 15px 20px;
	background: #FFF;
	width: 100%;
	transition: all 0.5s ease 0s;
	outline: 0;
}
.frm-control textarea {
	height: 250px;
}
.frm-control input[type="text"]:hover, .frm-control input[type="email"]:hover, .frm-control textarea:hover, .frm-control input[type="text"]:focus, .frm-control input[type="email"]:focus, .frm-control textarea:focus {
	border: 1px solid #072647;
}
.frm-control input[type="submit"], .frm-control input[type="button"], .frm-control button {
	background: #072647;
	padding: 10px 25px;
	color: #FFF;
	font-size: 18px;
}
.send-btn {
	background: #132f4c;
	color: #fff;
	padding: 14px 28px;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
/* Hover Effect */
.send-btn:hover {
	background: #0f2540;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* Click Effect */
.send-btn:active {
	transform: scale(0.96);
}
/* Shine Animation */
.send-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(  120deg,  transparent,  rgba(255,255,255,0.4),  transparent  );
	transition: 0.5s;
}
.send-btn:hover::before {
	left: 100%;
}
.addpanel {
	width: 100%;
	float: left;
	text-align: center;
}
.addpanel img {
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}
.producttype {
	width: 100%;
	float: left;
	font-family: 'roboto-black';
	text-align: center;
	color: #D8D8D8;
	font-size: 40px;
	margin-top: 40px;
}
.producttype p {
	font-size: 14px;
	color: #595959;
	margin-top: 15px;
}
.producttype a {
	color: #07274A;
	font-size: 40px;
	text-transform: uppercase;
	padding-left: 15px;
	padding-right: 15px;
	display: inline-block;
	transition: all 0.5s ease 0s;
}
.producttype a:hover {
	text-decoration: none;
}
.producttype a.active {
	color: #A37E2A;
}
.featuredproduct {
	display: block;
	transition: all 0.5s ease 0s;
}
.Arrivalsproduct {
	display: none;
	transition: all 0.5s ease 0s;
}
.latestofferpanel {
	width: 100%;
	float: left;
	position: relative;
}
.latestofferpanel img {
	width: 100%;
	height: auto;
}
.latestofferpanel:hover img {
}
.latestofferpanel .latestoffer {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.4);
	display: none;
	left: 0;
	top: 0;
	z-index: 100;
	position: absolute;
	text-align: center;
	padding-top: 15%;
}
.latestofferpanel .latestoffer h2 {
	font-family: 'roboto-black';
	font-size: 40px;
	margin-bottom: 4px;
}
.latestofferpanel .latestoffer h3 {
	letter-spacing: 8px;
	font-size: 18px;
	margin-bottom: 12px;
}
.latestofferpanel:hover .latestoffer {
	display: block;
}
.homeproductpanel {
	width: 100%;
	float: left;
	margin-top: 50px;
	margin-bottom: 50px;
}
.homeproductrow {
	width: 100%;
	float: left;
	margin-bottom: 30px;
}
.homeproduct-row {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.homeproduct-col {
	border: 1px solid #DDDDDD;
	background: #FFF;
	flex: 0 0 calc((100% - 90px) / 4);
	transition: all 0.5s ease 0s;
	border-radius: 8px;
}
.homeproduct-col:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.productshortview {
	width: 100%;
	float: left;
	text-align: center;
	padding: 15px;
	position: relative;
	margin-bottom: 20px;
	transition: all 0.5s ease 0s;
}
.productshortview .product-button {
	display: flex;
	gap: 5px;
	justify-content: center;
	width: 100%;
	height: 0px;
	float: left;
	position: absolute;
	background: rgba(255,255,255,0.4);
	left: 0;
	top: 0;
	z-index: 100;
	overflow: hidden;
	transition: all 0.5s ease 0s;
}
.productshortview:hover .product-button {
	height: 100%;
	opacity: 1;
	transition: all 0.5s ease 0s;
	padding-top: 50%;
}
.productshortview .product-button a {
	display: inline-block;
	background: #07274A;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #FFF;
	border-radius: 100%;
	opacity: 0;
	transition: all 0.5s ease 0s;
}
.productshortview:hover .product-button a {
	opacity: 1;
}
.productshortview .product-button a:hover {
	background: #A07C27;
}
.productshortview .product-button button {
	display: inline-block;
	background: #07274A;
	width: 35px;
	height: 35px;
	line-height: 35px;
	color: #FFF;
	border-radius: 100%;
	opacity: 0;
	transition: all 0.5s ease 0s;
	border: 0;
}
.productshortview:hover .product-button button {
	opacity: 1;
}
.productshortview .product-button button:hover {
	background: #A07C27;
}
.productshortview .product-thumb {
	width: 100%;
	float: left;
	position: relative;
}
.productshortview .product-thumb img {
	max-width: 100%;
	height: auto;
}
.productshortview .product-thumb:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 44px;
	height: 2px;
	margin-left: -22px;
	background: #CDCDCD;
}
.productshortview .productshortdetail {
	width: 100%;
	float: left;
	margin-top: 20px;
	margin-bottom: 20px;
}
.productshortview .productshortdetail h3 {
	font-size: 16px;
	color: #595959;
	font-family: 'roboto-black';
	letter-spacing: 1px;
	margin-bottom: 7px;
}
.productshortview .productshortdetail h5 {
	font-size: 15px;
	color: #07274A;
	letter-spacing: 2px;
	margin-bottom: 5px;
	font-family: 'roboto-black';
}
.productshortview .productshortdetail h5 span.oldprice {
	font-size: 14px;
	color: #111111;
	letter-spacing: 1px;
	text-decoration: line-through;
}
.productshortview .productshortdetail h5 span.newprice {
	font-size: 14px;
	color: #595959;
	letter-spacing: 1px;
	font-family: 'roboto-black';
}
.productshortview .productshortdetail .fa {
	color: #111111;
	font-size: 12px;
}
.homeproductslider {
	width: 100%;
	float: left;
	background: #F5F5F5;
	padding: 10px;
	margin-bottom: 30px;
}
.homeproductslider .productcont {
	width: 100%;
	float: left;
	border: 1px solid #E2E2E2;
	background: #FFF;
}
.homeproductslider .productcont .productslider {
	width: 100%;
	float: left;
	position: relative;
}
.homeproductslider .arrowleft {
	top: 42%;
	right: 0;
	position: absolute;
}
.homeproductslider .arrowright {
	top: 42%;
	left: 0;
	position: absolute;
}
.homeproductslider .productsliderbutton {
	width: 100%;
	float: left;
	text-align: center;
	padding-bottom: 20px;
	border-top: 1px solid #ECECEC;
}
.homeproductslider .productsliderbutton .productbuttonrow1 {
	width: 100%;
	float: left;
	margin-bottom: 10px;
	position: relative;
	margin-top: -20px;
}
.homeproductslider .productsliderbutton .productbuttonrow2 {
	width: 100%;
	float: left;
}
.homeproductslider .productsliderbutton a {
	font-size: 14px;
	color: #CCCCCC;
	transition: all 0.5s ease 0s;
}
.homeproductslider .productsliderbutton a:hover {
	color: #C05786;
	text-decoration: none;
}
.homeproductslider .productsliderbutton a.addtocart {
	background: #C05786;
	color: #FFF;
	padding: 8px 25px;
	display: inline-block;
	transition: all 0.5s ease 0s;
	font-family: 'roboto-black';
	font-size: 14px;
	letter-spacing: 1px;
}
.homeproductslider .productsliderbutton a.addtocart:hover {
	background: #242424;
	text-decoration: none;
}
.bordernone {
	border: none;
}
.loadproduct {
	width: 100%;
	float: left;
	text-align: center;
}
.ourbrand {
	width: 100%;
	float: left;
	margin-top: 50px;
}
.ourbrand h2 {
	position: relative;
	text-align: center;
	font-family: 'roboto-black';
	font-size: 35px;
}
.ourbrand h2 span {
	display: inline-block;
	background: #FBFBFB;
	padding: 0 15px;
	position: relative;
	z-index: 1
}
.ourbrand h2 span img:first-child {
	margin-right: 30px;
}
.ourbrand h2 span img:last-child {
	margin-left: 30px;
}
.ourbrand h2:before {
	position: absolute;
	left: 0;
	top: 60%;
	z-index: 0;
	border-bottom: 1px solid #ccc;
	width: 100%;
	content: ""
}
.ourbrand .brandname {
	width: 100%;
	float: left;
	text-align: center;
	margin-bottom: 15px;
}
.ourbrand .brandname img {
	max-width: 100%;
	height: auto;
}
.latestviewed {
	width: 100%;
	float: left;
	margin-top: 50px;
	margin-bottom: 50px;
}
.latestviewed h2 {
	text-align: center;
	font-size: 30px;
	color: #C05786;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.footer {
	width: 100%;
	float: left;
	border-top: 5px solid #A07C27;
	padding-top: 20px;
	padding-bottom: 20px;
	background: #072647;
}
.footer h2 {
	font-size: 18px;
	font-family: 'roboto-black';
	color: #A07C27;
	margin-bottom: 20px;
	padding-bottom: 10px;
	letter-spacing: 2px;
}
.footer h3 {
	color: #595959;
	font-size: 15px;
	font-family: 'roboto-black';
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.footer h4 {
	color: #595959;
	font-size: 14px;
	font-family: 'roboto-black';
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.footer p {
	color: #FFF;
	margin-bottom: 10px;
}
.footer p span.oldprice {
	text-decoration: line-through;
	font-size: 12px;
}
.footer img {
	max-width: 100%;
	height: auto;
	border: 1px solid #DDDDDD;
}
.footer .footerrow {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.footer ul {
	list-style: none;
}
.footer ul li {
	color: #A07C27;
	font-size: 14px;
	margin-bottom: 10px;
}
.footer ul li a {
	color: #FFF;
	transition: all 0.5s ease 0s;
}
.footer ul li a:hover {
	color: #A07C27;
	text-decoration: none;
	padding-left: 8px;
}
.footersocialmedia {
	width: 100%;
	float: left;
	margin-top: 20px;
	display: flex;
	gap: 25px;
}
.footersocialmedia a {
	display: inline-block;
	color: #FFF;
	transition: all 0.5s ease 0s;
	font-size: 24px;
}
.footersocialmedia a:first-child {
	margin-left: 0px;
}
.footersocialmedia a:last-child {
	margin-right: 0px;
}
.footersocialmedia a:hover {
	color: #A07C27;
}
.paymentgatepay {
	width: 100%;
	float: left;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 10px;
	background: #072647;
}
.paymentgatepay img {
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 15px;
}
.FRS {
	width: 100%;
	float: left;
	margin-top: 40px;
}
.FRS ul {
	list-style: none;
	width: 100%;
	background: #990;
}
.FRS ul li {
	float: left;
}
.FRS ul li.first {
	width: 30%;
}
.FRS ul li.second {
	width: 42%;
}
.FRS ul li.third {
	width: 28%;
}
.freeshiping {
	width: 90%;
	display: inline-block;
	position: relative;
	background: #A07C27;
	padding: 25px;
	z-index: 3
}
.freeshiping h2 {
	color: #FFF;
	font-size: 19px;
	margin: 0;
	font-family: 'roboto-black';
	letter-spacing: 1px
}
.freeshiping p {
	color: #FFF;
	margin-bottom: 5px;
}
.freeshiping div {
	position: relative;
	padding-left: 60px;
}
.freeshiping div:before {
	content: "\f072";
	position: absolute;
	top: 5px;
	left: 0;
	font-family: 'FontAwesome';
	color: #FFF;
	font-size: 40px;
}
.freeshiping i {
	color: #FFF;
	font-size: 50px;
}
.freeshiping:after {
	content: '';
	display: block;
	position: absolute;
	left: 100%;
	top: 10px;
	margin-top: -11px;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 50px solid #A07C27;
	height: 100%
}
.support {
	width: 100%;
	display: inline-block;
	position: relative;
	background: #A07C27;
	padding: 25px;
	z-index: 2
}
.support h2 {
	color: #FFF;
	font-size: 19px;
	margin: 0;
	font-family: 'roboto-black';
	letter-spacing: 1px
}
.support p {
	color: #FFF;
	margin-bottom: 5px;
}
.support div {
	position: relative;
	padding-left: 60px;
}
.support div:before {
	content: "\F1CD";
	position: absolute;
	top: 5px;
	left: 0;
	font-family: 'FontAwesome';
	color: #FFF;
	font-size: 40px;
}
.support:after {
	content: '';
	display: block;
	position: absolute;
	right: 100%;
	top: 10px;
	margin-top: -11px;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-right: 50px solid #A07C27;
	border-bottom: 50px solid transparent;
	border-left: 50px solid transparent;
	height: 100%
}
.daysreturn {
	width: 92%;
	display: inline-block;
	position: relative;
	background: #07274A;
	padding: 25px;
}
.daysreturn h2 {
	color: #FFF;
	font-size: 24px;
	margin: 0;
	font-family: 'roboto-black';
	letter-spacing: 1px
}
.daysreturn p {
	color: #FFF;
	margin-bottom: 5px;
}
.daysreturn div {
	position: relative;
	padding-left: 100px;
}
.daysreturn div:before {
	content: "\F017";
	position: absolute;
	top: 11px;
	left: 40px;
	font-family: 'FontAwesome';
	color: #FFF;
	font-size: 50px;
}
.daysreturn:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 10px;
	margin-top: -10px;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-right: 50px solid transparent;
	border-bottom: 50px solid transparent;
	border-left: 50px solid #FFF;
	height: 100%
}
.daysreturn:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 10px;
	margin-top: -10px;
	width: 0;
	height: 0;
	border-top: 50px solid transparent;
	border-right: 50px solid #FFF;
	border-bottom: 50px solid transparent;
	border-left: 50px solid transparent;
	height: 100%
}
.newcollection {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 10px;
	float: left;
	background: #FFF;
	border-top: 1px solid #DCD9D9;
	border-bottom: 1px solid #DCD9D9;
}
.newcollection .newitem {
	width: 100%;
	float: left;
	margin-bottom: 20px;
}
.newcollection .newitem img {
	max-width: 100%;
	height: auto;
}
.multi-gd-text a {
	display: block;
	position: relative;
}
.multi-gd-text a:hover::before {
	width: 100%;
	height: 100%;
}
.multi-gd-text a::before {
	background: rgba(0,0,0,0.1);
	position: absolute;
	right: 0;
	top: 0;
	width: 0;
	height: 0;
	transition: all 0.5s ease-out 0s;
	z-index: 99;
	content: "";
}
.multi-gd-text img {
	height: auto;
	width: 100%;
}
.multi-gd-text a:hover::after {
	width: 100%;
	height: 100%;
}
.multi-gd-text a::after {
	background: rgba(0,0,0,0.1);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 0;
	transition: all 0.5s ease-out 0s;
	z-index: 99;
	content: "";
}
ul.nav-wizard {
	background-color: #f1f1f1;
	border: 1px solid #d4d4d4;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}
ul.nav-wizard:before {
	position: absolute;
}
ul.nav-wizard:after {
	display: block;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 138px;
	height: 47px;
	border-top: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	z-index: 11;
	content: " ";
}
ul.nav-wizard li {
	position: relative;
	float: left;
	height: 46px;
	display: inline-block;
	text-align: center;
	padding: 0 20px 0 30px;
	margin: 0;
	font-size: 16px;
	line-height: 46px;
}
ul.nav-wizard li a {
	color: #58585A;
	padding: 0;
}
ul.nav-wizard li span {
	background: #BDBDBD;
	color: #FFF;
	font-weight: bold;
	padding: 8px;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	text-align: center;
}
ul.nav-wizard li a:hover {
	background-color: transparent;
}
ul.nav-wizard li:before {
	position: absolute;
	display: block;
	border: 24px solid transparent;
	border-left: 16px solid #d4d4d4;
	border-right: 0;
	top: -1px;
	z-index: 10;
	content: '';
	right: -16px;
}
ul.nav-wizard li:after {
	position: absolute;
	display: block;
	border: 24px solid transparent;
	border-left: 16px solid #f1f1f1;
	border-right: 0;
	top: -1px;
	z-index: 10;
	content: '';
	right: -15px;
}
ul.nav-wizard li.active {
	color: #FFF;
	background: #dedede;
	background: #212121;
}
ul.nav-wizard li span.stepno {
	background: #BDBDBD;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	padding: 5px 10px;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	text-align: center;
}
ul.nav-wizard li.active span.stepno {
	background: #99CE21;
	color: #FFF;
}
ul.nav-wizard li.active:after {
	border-left: 16px solid #212121;
}
ul.nav-wizard li.active a, ul.nav-wizard li.active a:active, ul.nav-wizard li.active a:visited, ul.nav-wizard li.active a:focus {
	color: #FFF;
	background: #212121;
}
ul.nav-wizard .active ~ li {
	color: #999999;
	background: #f9f9f9;
}
ul.nav-wizard .active ~ li:after {
	border-left: 16px solid #f9f9f9;
}
ul.nav-wizard .active ~ li a, ul.nav-wizard .active ~ li a:active, ul.nav-wizard .active ~ li a:visited, ul.nav-wizard .active ~ li a:focus {
	color: #999999;
	background: #f9f9f9;
}
ul.nav-wizard.nav-wizard-backnav li:hover {
	color: #468847;
	background: #f6fbfd;
}
ul.nav-wizard.nav-wizard-backnav li:hover:after {
	border-left: 16px solid #f6fbfd;
}
ul.nav-wizard.nav-wizard-backnav li:hover a, ul.nav-wizard.nav-wizard-backnav li:hover a:active, ul.nav-wizard.nav-wizard-backnav li:hover a:visited, ul.nav-wizard.nav-wizard-backnav li:hover a:focus {
	color: #468847;
	background: #f6fbfd;
}
ul.nav-wizard.nav-wizard-backnav .active ~ li {
	color: #999999;
	background: #ededed;
}
ul.nav-wizard.nav-wizard-backnav .active ~ li:after {
	border-left: 16px solid #ededed;
}
ul.nav-wizard.nav-wizard-backnav .active ~ li a, ul.nav-wizard.nav-wizard-backnav .active ~ li a:active, ul.nav-wizard.nav-wizard-backnav .active ~ li a:visited, ul.nav-wizard.nav-wizard-backnav .active ~ li a:focus {
	color: #999999;
	background: #ededed;
}
