/*
Theme Name: performancelab    
Theme URI: https://fronxsolutions.com/
Author: Salman
Author URI: https://fronxsolutions.com/
Description: This is a custom WordPress theme built from scratch.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	/* Font Families */
	--font-family-heading: "Poppins", sans-serif;
	--font-family-para: "Poppins", sans-serif;
	/* Colors */
	--primary-color: #e7191f;
	--secondary-color: #F5F5DC;
	--secondary-heading-color: #19191A;
	--accent-text-color: #666666;
	--dark-color: #000000;
	--white-color: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-family-para);
	color: var(--secondary-heading-color);
	text-align: left;
	font-size: 15px;
	font-weight: 400;
}
body.active{
	overflow: hidden;
}

p {
	font-size: 15px;
	columns: var(--accent-text-color);
	margin-bottom: 0;
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-heading);
}

ul,
ol {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

a {
	text-decoration: none;
	color: var(--secondary-heading-color);
}

a:hover {
	color: var(--secondary-heading-color);
}

/* header Start */
header{
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0px 0px 6px 0px #dcdcdc;
	z-index: 1;
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-logo img {
	width: 100px;
	height: auto;
}

.header-menus ul {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-menus ul li a {
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
}

.header-sidebarWrap{
	position: relative;
	display: flex;
	align-items: center;
	gap: 22px;
	line-height: 1;
}

.headerSidebarMenuIcon{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background: var(--primary-color);
	border-radius: 6px;
	line-height: 1;
	cursor: pointer;
	display: none;
}
.headerSidebarMenuIcon i{
	color: #ffffff;
	font-weight: 600;
	font-size: 18px;
	line-height: 1;
}
/* header End */


/* headerSidebarMenu Start */
.headerSidebarMenuOverlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999;
	display: none;
}
.headerSidebarMenu{
	position: absolute;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 375px;
	height: 100%;
	background: #ffffff;
	transition: .4s all;
	z-index: 1;
}
.headerSidebarMenu.active{
	right: 0;
}
.headerSidebarMenuClose{
	position: absolute;
	top: 0;
	left: -50px;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1;
}
.headerSidebarMenuClose i{
	color: #ffffff;
	font-weight: 600;
	font-size: 25px;
}
.headerSidebarMenuBody{
	position: relative;
	padding: 22px;
	overflow-x: hidden;
	overflow-y: scroll;
	scrollbar-width: none;
	height: 100%;
}
.sidebarLogo a img{
	max-width: 150px;
	height: auto;
}
.sidebarMenus ul{
	margin: 0;
	padding: 0;
	list-style:  none;
}
.sidebarMenus ul li{
	position: relative;
	margin-top: 15px;
	background: #fff8f8;
	padding: 8px 22px;
	border-bottom: 2px solid var(--primary-color);
}
.sidebarMenus ul li a{
	color: #000000;
	font-weight: 500;
	font-size: 14px;
	text-decoration: none;
}
/* headerSidebarMenu End */

/* banner-info Start */
.banner-info {
	padding: 15px 0;
	background-color: var(--primary-color);
	text-align: center;
}

.banner-info .scrolling-text{
	width: 100%;
	overflow-x: hidden;
}

.banner-info .scrolling-text marquee{
	display: block;
	line-height: 1;
}

.banner-info p {
	color: var(--white-color);
	font-weight: 500;
	font-size: 16px;
	text-transform: uppercase;
}

.banner-img img {
	width: 100%;
}

/* category-sec Start */
.category-sec {
	padding: 60px 0 36px;
}
.category-sec .secTitle{
	position: relative;
	text-align: center;
	margin-bottom: 22px;
}
.category-sec .secTitle::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--primary-color);
	width: 100%;
	height: 2px;
}
.category-sec .secTitle h3{
	position: relative;
	color: #000000;
	font-size: 34px;
	font-weight: 600;
	max-width: max-content;
	background: #ffffff;
	padding: 0px 15px;
	margin: 0 auto;
	z-index: 1;
}
.category-box {
    position: relative;
    display: flex;
    flex-flow: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 12px;
}

.category-box img {
	width: 100%;
	border-radius: 15px;
}

.category-name {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
	text-align: center;
}

/* product-sec Start */
.product-sec {
	padding: 30px 0;
}
.product-sec .secTitle{
	position: relative;
	text-align: center;
	margin-bottom: 22px;
}
.product-sec .secTitle::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--primary-color);
	width: 100%;
	height: 2px;
}
.product-sec .secTitle h3{
	position: relative;
	color: #000000;
	font-size: 34px;
	font-weight: 600;
	max-width: max-content;
	background: #ffffff;
	padding: 0px 15px;
	margin: 0 auto;
	z-index: 1;
}
.section-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 2px dashed var(--primary-color);
	margin-bottom: 30px;
}

.section-title {
	font-size: 26px;
	margin-bottom: 0;
	font-weight: 700;
	text-transform: capitalize;
}

.info-btn {
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 7px;
	max-width: max-content;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	border-radius: 25px;
	padding: 4px 4px 4px 15px;
}

.info-btn i {
	width: 28px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--white-color);
	color: var(--primary-color);
	transform: rotate(-45deg);
}

.info-btn:hover {
	color: var(--white-color);
}

.product-box {
	position: relative;
	background: #f8f8f8;
	border-radius: 12px;
	padding: 10px;
	margin-bottom: 15px;
}

.product-img {
	position: relative;
	border-radius: 12px;
	background-color: var(--white-color);
	overflow: hidden;
	margin-bottom: 7px;
}

.product-img .saleTag{
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
	background: #e7191f;
	border-radius: 25px;
	padding: 2px 12px;
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
	/*     display: none; */
}

.product-img img {
	width: 100%;
	height: 250px;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.product-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 7px;
}

.product-price {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 7px;
}

.product-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: var(--primary-color);
	padding: 10px;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.product-btn a i {
	font-size: 18px;
}

.product-btn .out-of-stock{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: #d3a0a1;
	padding: 10px;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: not-allowed;
}

.clothingContentbox {
	position: relative;
	background: #f8f8f8;
	border-radius: 12px;
	padding: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 22px;
}

.clothing-product-img {
/* 	position: relative; */
	border-radius: 12px;
	background-color: var(--white-color);
	overflow: hidden;
	margin-bottom: 7px;
	flex: 0 0 140px;
	max-width: 140px;
}

.clothing-product-img .saleTag{
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
	background: #e7191f;
	border-radius: 25px;
	padding: 2px 12px;
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
	/*     display: none; */
}

.clothing-product-img img {
	width: 100%;
	height: 150px;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.clothingContentbox .subContent{
	flex: 1;
	max-width: 100%;
}

.clothing-product-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 7px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clothing-product-price {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 7px;
}

.clothing-product-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: max-content;
	gap: 7px;
	background: var(--primary-color);
	padding: 10px 12px;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.clothing-product-btn a i {
	font-size: 18px;
}


/* FaqsSecStyling Start */
.faqsSec {
	position: relative;
	width: 100%;
	background: #F7F7F7;
	padding: 60px 0px;
}

.faqsSec .container {
	max-width: 1200px;
}

.faqsSec .headContent {
	position: relative;
	max-width: 767px;
	margin: 0 auto 32px;
	text-align: center;
}

.faqsSec .headContent h3 {
	margin-bottom: 12px;
	color: #000000;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
}

.faqsSec .headContent p {
	margin-bottom: 0;
	color: #444444;
	font-weight: 400;
	font-size: 16px;
}

.faqContentBox {
	position: relative;
	width: 100%;
	background: transparent;
	border-radius: 20px;
	padding: 32px;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	line-height: 1;
	cursor: pointer;
}

.faqContentBox.shrinked {
	background-color: #ffe8e9;
}

.faqContentBox .imgWraps .plusImg img {
	max-width: 22px;
	height: auto;
}

.faqContentBox .imgWraps .minusImg {
	display: none;
}

.faqContentBox .imgWraps .minusImg img {
	max-width: 22px;
	height: auto;
}

.faqContentBox .contentWrap {
	flex: 1;
}

.faqContentBox .contentWrap h3 {
	margin-bottom: 0px;
	color: #000000;
	font-size: 18px;
	font-weight: 400;
}

.faqContentBox .contentWrap p {
	margin-bottom: 0px;
	margin-top: 15px;
	color: #535353;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	display: none;
}

/* FaqsSecStyling End */


/* myAccountPageSec Start */
.myAccountPageSec{
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	padding: 60px 0px;
}
.myAccountPageSec .woocommerce{
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.myAccountPageSec .woocommerce-MyAccount-navigation{
	flex: 0 0 250px;
	max-width: 250px;
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
	overflow: hidden;
}
.myAccountPageSec .woocommerce-MyAccount-navigation ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: hidden;
}
.myAccountPageSec .woocommerce-MyAccount-navigation ul li{
	position: relative;
	width: 100%;
	padding: 12px 15px;
	background: #ffffff;
	border-radius: 0px;
	border-bottom: 1px solid #dcdcdc;
}
.myAccountPageSec .woocommerce-MyAccount-navigation ul li a{
	color: var(--primary-color);
	font-weight: 500;
	font-size: 16px;
	text-decoration: none !important;
}
.woocommerce-MyAccount-content{
	flex: 1;
	max-width: 100%;
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	padding: 22px 15px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
}

.woocommerce-Address-title{
	box-shadow: none !important;
}

.woocommerce-Address-title h2{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}

.woocommerce-Address-title a{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: var(--primary-color);
	padding: 10px;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 15px;
}

.woocommerce-Address address{
	margin-bottom: 0;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	padding: 15px;
}

.woocommerce-Address{
	position: relative;
	width: 100% !important;
	margin-top: 22px;
}

.woocommerce-MyAccount-content form h2{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}

.woocommerce-address-fields__field-wrapper .form-row{
	position: relative;
	margin-bottom: 15px;
}

.woocommerce-address-fields__field-wrapper label{
	position: relative;
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}
.woocommerce-address-fields__field-wrapper label span{
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
}

.woocommerce-input-wrapper{
	position: relative;
	display: block;
	width: 100%;
}

.woocommerce-input-wrapper input,
.woocommerce-input-wrapper select{
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	outline: none;
	border-radius: 50px;
	padding: 8px 15px;
}

.woocommerce-address-fields .button{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	outline: none;
	border: none;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 0px;
}
.woocommerce-MyAccount-content .woocommerce-form-row{
	position: relative;
	margin-bottom: 15px;
}
.woocommerce-MyAccount-content .woocommerce-form-row label{
	position: relative;
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;	
}
.woocommerce-MyAccount-content .woocommerce-form-row label span{
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
}
.woocommerce-MyAccount-content .woocommerce-form-row input,
.woocommerce-MyAccount-content .woocommerce-form-row select{
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	outline: none;
	border-radius: 50px;
	padding: 8px 15px;
}
.woocommerce-MyAccount-content .woocommerce-form-row #account_display_name_description{
	position: relative;
	margin-top: 4px;
	display: block;
	background: #e7191f;
	border-radius: 50px;
	padding: 2px 15px;
	color: #ffffff;
	font-weight: 500;
	font-size: 12px;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Button{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color);
	padding: 16px 10px !important;
	outline: none;
	border: none;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 0px;
	margin-top: 12px !important;
}
.select2-container .select2-selection--single{
	border: 1px solid #dcdcdc !important;
}
.select2-container .select2-selection--single .select2-selection__arrow b{
	transform: translateY(50%) !important;
}
.woocommerce-address-fields button{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color) !important;
	padding: 16px 10px !important;
	outline: none;
	border: none;
	border-radius: 30px !important;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 0px;
	margin-top: 12px !important;
}
/* myAccountPageSec End */


/* login/register form styling Start */
.woocommerce #customer_login{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 22px;
}
.woocommerce #customer_login .u-column1,
.woocommerce #customer_login .u-column2{
	flex: 1;
	width: 50%;
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	padding: 22px 15px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
}
.woocommerce #customer_login .u-column1 h2,
.woocommerce #customer_login .u-column2 h2{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}
.woocommerce #customer_login .u-column1 .woocommerce-form-row,
.woocommerce #customer_login .u-column2 .woocommerce-form-row{
	position: relative;
	margin-bottom: 15px;
}
.woocommerce #customer_login .u-column1 label,
.woocommerce #customer_login .u-column2 label{
	position: relative;
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}
.woocommerce #customer_login .u-column1 label span,
.woocommerce #customer_login .u-column2 label span{
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
}
.woocommerce #customer_login .u-column1 input,
.woocommerce #customer_login .u-column2 input{
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	outline: none;
	border-radius: 50px;
	padding: 8px 15px;
}
.woocommerce-form-login__rememberme{
	position: relative !important;
	width: 100%;
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	gap: 8px !important;
	margin-bottom: 12px !important;
}
.woocommerce-form-login__rememberme input{
	max-width: max-content !important;
}
.woocommerce-form-login__submit{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	outline: none;
	border: none;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 12px;
}
.woocommerce-LostPassword a{
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 0px;
	text-decoration: none !important;
	text-align: center;
}
.woocommerce-form-register p,
.woocommerce-privacy-policy-text p{
	color: #000000;
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 12px;
}
.woocommerce-form-register__submit{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	outline: none;
	border: none;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 0px;
}
/* login/register form styling End */


/* applicationFormSec Start */
.applicationFormSec{
	position: relative;
	width: 100%;
	padding: 40px 0px;
}
.applicationFormSec .secTitle{
	position: relative;
	text-align: center;
	margin-bottom: 22px;
}
.applicationFormSec .secTitle::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--primary-color);
	width: 100%;
	height: 2px;
}
.applicationFormSec .secTitle h3{
	position: relative;
	color: #000000;
	font-size: 34px;
	font-weight: 600;
	max-width: max-content;
	background: #ffffff;
	padding: 0px 15px;
	margin: 0 auto;
	z-index: 1;
}
.applicationFormInner{
	position: relative;
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	padding: 22px 15px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
}
.applicationFormInner h2{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}
.applicationFormInner .inputWrapper{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.applicationFormInner .inputWrapper label{
	position: relative;
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.applicationFormInner .inputWrapper label span{
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
}
.applicationFormInner .inputWrapper input{
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	outline: none;
	border-radius: 50px;
	padding: 8px 15px;
}
.applicationFormInner .applicationFormButn input[type="submit"]{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	outline: none;
	border: none;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 0px;
}
.contactInfoBoxMain{
	position: relative;
	margin-bottom: 22px;
}
.contactInfoBox{
	position: relative;
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	padding: 22px 15px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.contactInfoBox .iconWrap{
	position: relative;
	margin-bottom: 15px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e7191f;
	border-radius: 50px;
}
.contactInfoBox .iconWrap i{
	color: #ffffff;
	font-weight: 600;
	font-size: 22px;
}
.contactInfoBox .content{
	position: relative;
	text-align: center;
}
.contactInfoBox .content span{
	color: #000000;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
}
.contactInfoBox .content p{
	color: #000000;
	font-weight: 400;
	font-size: 16px;
	opacity: 0.5;
}
/* applicationFormSec End */


/* contactFormSec Start */
.contactFormSec{
	position: relative;
	width: 100%;
	padding: 40px 0px;
}
.contactFormInner{
	position: relative;
	width: 100%;
	background: #ffffff;
	border-radius: 12px;
	padding: 22px 15px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
}
.contactFormInner h2{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}
.contactFormInner .inputWrapper{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
}
.contactFormInner .inputWrapper label{
	position: relative;
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.contactFormInner .inputWrapper label span{
	color: var(--primary-color);
	font-weight: 600;
	font-size: 14px;
}
.contactFormInner .inputWrapper input{
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	outline: none;
	border-radius: 50px;
	padding: 8px 15px;
}
.inputWrapper textarea{
	position: relative;
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dcdcdc;
	outline: none;
	border-radius: 15px;
	padding: 8px 15px;
	height: 150px;
}
.contactFormInner .applicationFormButn input[type="submit"]{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	outline: none;
	border: none;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	margin-bottom: 0px;
}
/* contactFormSec End */


/* breadcrumbList Start */
.breadcrumbList{
	padding: 15px 0;
	background: var(--primary-color);
}

.breadcrumbList ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	gap: 10px;
}

.breadcrumbList ul li{
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.breadcrumbList ul li a{
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
.breadcrumbList ul li a::after{
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 14px;
}
/* breadcrumbList End */


/* cartPage Start */
.cartPageSec{
	position: relative;
	padding: 40px 0px;
}
.woocommerce table.shop_table{
	border: 1px solid rgba(0,0,0,.1);
	margin: 0 -1px 24px 0;
	text-align: left;
	width: 100%;
	border-collapse: separate;
	border-radius: 5px;
}
#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail{
	min-width: 32px;
}
.woocommerce table.shop_table th{
	font-weight: 700;
	padding: 9px 12px;
	line-height: 1.5em;
	text-transform: uppercase;
}
.screen-reader-text{
	clip: rect(1px,1px,1px,1px);
	word-wrap: normal!important;
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	overflow-wrap: normal!important;
	padding: 0;
	position: absolute!important;
	width: 1px;
}
.woocommerce table.shop_table td{
	border-top: 1px solid rgba(0,0,0,.1);
	padding: 9px 12px;
	vertical-align: middle;
	line-height: 1.5em;
}
.woocommerce a.remove{
	display: block;
	font-size: 1.5em;
	height: 1em;
	width: 1em;
	text-align: center;
	line-height: 1;
	border-radius: 100%;
	color: #e7191f;
	text-decoration: none;
	font-weight: 700;
	border: 0;
}
.woocommerce table.shop_table td.product-thumbnail img{
	width: 100px !important;
	height: auto;
}
.woocommerce .quantity .qty{
	width: 3.631em;
	text-align: center;
}
.woocommerce table.shop_table .product-price{
	color: #000;
}
.coupon button{
	background-color: #000 !important;
	color: #fff !important;
}
.woocommerce-page table.cart td.actions .input-text {
	width: 175px !important;
}
.woocommerce .cart .button{
	background-color: #2c4b79;
	color: #fff !important;
}
.wc-proceed-to-checkout a{
	background-color: #2c4b79 !important;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals{
	width: 100%;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals{
	float: right;
	width: 48%;
}
.cart_totals h2{
	margin-bottom: 15px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text{
	float: left;
	box-sizing: border-box;
	border: 1px solid #cfc8d8;
	padding: 6px 6px 5px;
	margin: 0 4px 0 0;
	outline: 0;
}
a.checkout-button.button.alt.wc-forward{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: var(--primary-color) !important;
	padding: 18px 10px;
	border-radius: 30px;
	color: var(--white-color) !important;
	text-align: center;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	cursor: pointer;
}
.woocommerce table.cart td.actions .input-text{
	width: 175px !important;
	float: left;
	box-sizing: border-box;
	border: 1px solid #cfc8d8;
	padding: 6px 6px 5px;
	margin: 0 4px 0 0;
	outline: 0;
	border-radius: 4px;
}
.woocommerce .cart .button{
	background-color: #e7191f !important;
	color: #fff !important;
}
.coupon button{
	background-color: #e7191f !important;
}
/* cartPage End */


/* checkoutPageSec Start */
.checkoutPageSec{
	position: relative;
	padding: 40px 0px;
}
.woocommerce-info{
	border-top-color: #e7191f !important;
}
.woocommerce-info::before{
	color: #e7191f !important;
}
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2{
	position: relative;
	background: #ffffff;
	border-radius: 12px;
	padding: 22px 15px;
	box-shadow: 0 0 25px rgba(151, 160, 191, 0.3);
	border: 1px solid #dcdcdc;
}
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading{
	margin-bottom: 15px;
	color: #000000;
	font-weight: 600;
	font-size: 24px;
}
#order_review_heading{
	margin-top: 22px !important;
}
.woocommerce form .form-row label{
	position: relative;
	display: block;
	color: #000000;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 4px;
}
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select{
	position: relative !important;
	display: block !important;
	width: 100% !important;
	background: #ffffff !important;
	border: 1px solid #dcdcdc !important;
	outline: none !important;
	border-radius: 50px !important;
	padding: 8px 15px !important;
	height: auto !important;
}
.select2-container .select2-selection--single{
	height: auto !important;
	border-radius: 50px !important;
	margin-top: 15px !important;
}
.woocommerce #payment #place_order{
	background: #e7191f !important;
	border-radius: 50px !important;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button{
	background: var(--primary-color) !important;
	padding: 16px 50px !important;
	border-radius: 30px !important;
	color: var(--white-color) !important;
	text-align: center !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	cursor: pointer !important;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button{
	background: var(--primary-color) !important;
	padding: 16px 50px !important;
	border-radius: 30px !important;
	color: var(--white-color) !important;
	text-align: center !important;
	text-transform: uppercase !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	cursor: pointer !important;
}
/* checkoutPageSec End */


/* trackOrderPageSec Start */
.trackOrderPageSec{
	position: relative;
	padding: 40px 0px;
}
/* trackOrderPageSec End */


/* singlePageSec Start */
.singlePageSec{
	position: relative;
	padding: 40px 0px;
}
.singlePageSec .secTitle{
	position: relative;
	text-align: center;
	margin-bottom: 22px;
}
.singlePageSec .secTitle::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--primary-color);
	width: 100%;
	height: 2px;
}
.singlePageSec .secTitle h3{
	position: relative;
	color: #000000;
	font-size: 34px;
	font-weight: 600;
	max-width: max-content;
	background: #ffffff;
	padding: 0px 15px;
	margin: 0 auto;
	z-index: 1;
}
.singlePageContentBox h3{
	margin-bottom: 12px;
	color: #000000;
	font-weight: 600;
	font-size: 22px;
}
.singlePageContentBox p{
	margin-bottom: 12px;
	color: #000000;
	font-weight: 400;
	font-size: 14px;
}
/* singlePageSec End */


/* custom-pagination Start */
.custom-pagination{
	position: relative;
	margin-top: 22px;
}
.custom-pagination ul{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.custom-pagination ul li a,
.custom-pagination ul li span{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: #f1f1f1;
	color: #000000;
	font-weight: 600;
	font-size: 16px;
}
.custom-pagination ul li span.page-numbers.current{
	background: #e7191f;
	color: #ffffff;
}
/* custom-pagination End */


/* product-slider Start */
.product-slider-wrapper{
	position: relative;
}
.product-slider{
	position: relative;
	width: 100%;
	overflow: hidden;
}
.prod-button-next {
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white-color);
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	z-index: 1;
	right: -17.5px;
}
.prod-button-prev {
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--white-color);
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	z-index: 1;
	left: -17.5px;
}
.swiper-button-disabled {
	opacity: 0.5;
}
/* product-slider End */


/* single-page-breadcrumbs Start */
.single-page-breadcrumbs {
	padding: 15px 0;
	background: var(--primary-color);
}
.single-page-breadcrumbs ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-flow: wrap;
	align-items: center;
	gap: 10px;
}
.single-page-breadcrumbs ul li {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}
.single-page-breadcrumbs ul li a {
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
.single-page-breadcrumbs ul a:after {
	content: '\f105';
	font-family: 'FontAwesome';
	font-size: 14px;
}
/* single-page-breadcrumbs End */


/* single-product-sec Start */
.single-product-sec{
	position: relative;
	padding: 40px 0px;
}

.productSyncSliderBox{
	position: relative;
}

.productSyncSliderBox .onsale{
	position: absolute;
	top: 15px;
	right: 25px;
	z-index: 1;
	background: #e7191f;
	border-radius: 50px;
	padding: 2px 8px;
	color: #ffffff;
	font-weight: 500;
	font-size: 14px;
}

.single-product-info .single-product-title{
	color: #000000;
	font-weight: 600;
	font-size: 26px;
	margin-top: 12px;
}

.single-product-info .single-product-short-descp{
	margin: 15px 0px;
}

.single-product-info .price{
	color: #e7191f;
	font-weight: 600;
	font-size: 22px;
	margin-bottom: 15px;
}

.single-product-info .price .regular-price{
	text-decoration: line-through;
	color: #999;
	margin-left: 5px;
	font-size: 16px;
}

.qty-cart-section .cart{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.qty-cart-section .quantity{
	width: 25%;
}

.woocommerce-variation-add-to-cart{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.woocommerce-variation-add-to-cart .quantity{
width: 18%;
}

table.variations tbody tr .value{
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

table.variations tbody tr .value select{
    display: block;
    width: 100%;
    background: #ffffff;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    border-radius: 50px;
    padding: 10px;
	border: 1px solid #dcdcdc;
	outline: none;
}

table.variations tbody tr .value .reset_variations{
	color: #e7191f;
    font-weight: 500;
    font-size: 16px;
}

.qty-cart-section{
    flex-direction: column !important;
}

.qty-cart-section .stock.in-stock{
    position: relative;
    display: block !important;
    width: 100%;
    margin-bottom: 15px;
    color: #3e9100;
    font-weight: 600;
    font-size: 16px;
}

.qty-cart-section .quantity input{
	width: 100% !important;
	height: 40px;
	padding: 15px;
	border-radius: 25px;
	background-color: #F8F8F8 !important;
	border: 1px solid #EAEAEA !important;
	animation: none;
	outline: none;
}

.single_add_to_cart_button{
	display: block;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	border-radius: 30px;
	color: var(--white-color) !important;
	border: none;
	outline: none;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}

.product-buynow{
	display: block;
	width: 100%;
	background: var(--primary-color);
	padding: 10px;
	border-radius: 30px;
	color: var(--white-color) !important;
	border: none;
	outline: none;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
}
/* single-product-sec End */


/* singleProductPage Start */
.wpgs-lightbox-icon{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	background: #ffffff;
}
.zoomtoo-container{
	position: relative;
	overflow: hidden !important;
	width: 100%;
	height: 100%;
}
.slick-slide img{
	display: block;
	width: 100% !important;
	height: auto !important;
	overflow: hidden !important;
	border-radius: 12px;
}
.wpgs-nav .slick-slide{
	width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1 !important; 
}
.wpgs-nav .slick-current{
	border-radius: 12px;
	overflow: hidden;
}
.wpgs-nav .slick-current img{
    border-color: #e7191f !important;
}
img.attachment-shop_single{
    height: 550px !important;
    object-fit: cover;
}
img.attachment-woocommerce_gallery_thumbnail.size-woocommerce_gallery_thumbnail{
	width: 100%;
	height: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wpgs-for .slick-arrow{
	position: absolute;
	z-index: 1;
	cursor: pointer;
	top: 50%;
	margin-top: -15px;
	background: #e7191f;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
i.flaticon-back.slick-arrow::before {
	content: '' !important;
	background-image: url('/wp-content/uploads/2025/07/left-arrow.png');
	filter: invert(1);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 14px;
	height: 14px;
	margin-left: 3px;
}
i.flaticon-right-arrow.slick-arrow::before {
	content: '' !important;
	background-image: url('/wp-content/uploads/2025/07/right-arrow-1.png');
	filter: invert(1);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 14px;
	height: 14px;
	margin-left: 3px;
}
/* singleProductPage End */


/* tabbing css Start */
.tabs {
	display: flex;
	list-style-type: none;
	flex-wrap: wrap;
	padding: 0;
	margin-bottom: 20px;
}
.tab {
	text-align: center;
	padding: 10px 17px;
	cursor: pointer;
	transition: background-color 0.3s;
	font-weight: 500;
	font-size: 14px;
	color: var(--accent-text-color);
	border-bottom: 2px solid #E5E5E5;
}
.tab:hover {
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color);
}
.tab.active {
	border-bottom: 2px solid var(--primary-color);
	color: var(--primary-color);
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.tab-content-main h2 {
	font-weight: 700;
	font-size: 20px;
	text-transform: capitalize;
}
.tab-content-main ul li {
	display: flex;
	align-items: center;
	gap: 10px;
}
.tab-content-main ul li i {
	font-size: 14px;
	color: var(--primary-color);
}
.tab-content-main ul li span {
	font-weight: 400;
	font-size: 12px;
	line-height: 20px;
	vertical-align: middle;
	color: var(--accent-text-color);
}
.more_detail_container {
	padding-bottom: 60px;
}
.single_product_section hr{
	background-color: #CBCBCB;
}
.dimention_container{
	padding: 0px;
	background-color: #adadad1f;
	border-radius: 12px;
}
.dimention_table_container table{
	font-size: 14px;
	width: 100%;
}
.dimention_table_container table tr{
	background-color: var(--primary-color);
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
}
.dimention_table_container table tr td{
	padding: 15px 10px;
	width: 50%;
}
.dimention_table_container table tr td h6{
	margin-bottom: 0;
}
/* delivery */
.Delivery_container{
	padding: 40px;
	background-color: var(--secondary-color);
	border-radius: 2rem;
}
.Delivery_container table{
	font-size: 14px;
	width: 100%;
}
.Delivery_container table tr:nth-of-type(even){
	background-color: var(--secondary-color);
}
.Delivery_container table tr:nth-of-type(odd){
	background-color: var(--white-color);
}
.Delivery_container table tr td{
	padding: 10px;
}
.Delivery_container table tr th{
	padding: 10px;
	background-color: var(--secondary-color);
}
.Delivery_container table tr td h6{
	margin-bottom: 0;
}
.price span.regular-price{
	text-decoration: line-through;
	color: #999;
	margin-left: 5px;
}
/* tabbing css End */


/* verificationPopup Start */
.verificationPopupOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
	display: none;
}
.verificationPopup{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 575px;
    background: #ffffff;
    box-shadow: 0 0 10px rgb(255 255 255 / 42%);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    line-height: normal;
    align-items: center;
    justify-content: center;
	transition: .4s all;
}
.verificationPopup.active{
	display: block;
}
.verificationPopupBody .imgWrap{
    position: relative;
    margin-bottom: 22px;
    text-align: center;
}
.verificationPopupBody .imgWrap img{
    max-width: 160px;
    height: auto;
}
.verificationPopupBody h3{
    text-align: center;
    margin-bottom: 12px;
    color: #000000;
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
}
.verificationPopupBody p{
    text-align: center;
    margin-bottom: 12px;
    color: #828282;
    font-weight: 400;
    font-size: 16px;
}
.verificationPopupBody p span{
    color: var(--primary-color);
    font-weight: 600;
}
.verificationPopupBody .butnWrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.verificationPopupBody .butnWrap .primaryButn a,
.verificationPopupBody .butnWrap .secondaryButn a{
    display: block;
    max-width: max-content;
    background: transparent;
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--white-color);
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
	transition: .4s all;
}
.verificationPopupBody .butnWrap .primaryButn a:hover,
.verificationPopupBody .butnWrap .secondaryButn a:hover{
	opacity: 0.5;
}
.verificationPopupBody .butnWrap .primaryButn a{
	background: #45aa49;
}
.verificationPopupBody .butnWrap .secondaryButn a{
	background: var(--primary-color);
}
/* verificationPopup End */


/* videoSec Start */
.videoSec{
    position: relative;
    width: 100%;
    background: #F7F7F7;
    padding: 60px 0px;
}
.videoWrapper{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.videoWrapper video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* videoSec End */


/* gallerySec Start */
.gallerySec{
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 48px 0px 60px;
	display: none;
}
.gallerySec .secTitle{
    position: relative;
    text-align: center;
    margin-bottom: 22px;
}
.gallerySec .secTitle::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--primary-color);
    width: 100%;
    height: 2px;
}
.gallerySec .secTitle h3{
    position: relative;
    color: #000000;
    font-size: 34px;
    font-weight: 600;
    max-width: max-content;
    background: #ffffff;
    padding: 0px 15px;
    margin: 0 auto;
    z-index: 1;
}
.galleryImgWrapper{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 12px;
	padding-top: 22px;
}
.galleryImgWrapper img{
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
}
/* gallerySec End */


/* footerStyling Start */
footer {
	position: relative;
	width: 100%;
	background: #000000;
	padding: 50px 0px;
}

footer .container {
	max-width: 1200px;
}

.footerContent .logoWrap a img {
	max-width: 160px;
	height: auto;
	filter: drop-shadow(2px 4px 6px black);
}

.footerContent p {
	margin: 28px 0px 38px;
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
}

.footerContent .ratingBadgeImg img {
	max-width: 100%;
	height: auto;
}

.footerQuickLinks{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding-left: 60px;
}

.footerQuickLinks h3 {
	margin-bottom: 28px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
}

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

.footerQuickLinks ul li {
	padding-bottom: 18px;
}

.footerQuickLinks ul li:nth-last-child(1) {
	padding-bottom: 0px;
}

.footerQuickLinks ul li a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	transition: .4s all;
}

.footerQuickLinks ul li a:hover {
	color: var(--primary-color);
}

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

.contactDetailsWrap ul li {
	margin-bottom: 8px;
	position: relative;
	width: 100%;
	background: transparent;
	border: 1px solid #FFFFFF33;
	border-radius: 10px;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.contactDetailsWrap ul li:nth-last-child(1) {
	margin-bottom: 0px;
}

.contactDetailsWrap ul li .iconWrap {
	position: relative;
	width: 50px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-right: 1px solid #FFFFFF33;
}

.contactDetailsWrap ul li .iconWrap i {
	color: var(--primary-color);
	font-size: 18.36px;
	font-weight: 600;
	line-height: 1;
	padding-right: 2px;
}

.contactDetailsWrap ul li .content {
	flex: 1;
}

.contactDetailsWrap ul li .content span {
	display: block;
	color: #ffffff;
	font-weight: 400;
	font-size: 12px;
}

.contactDetailsWrap ul li .content p {
	margin-bottom: 0;
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
}

.footerCopyright {
	position: relative;
	width: 100%;
	background: transparent;
	border: 1px solid #FFFFFF33;
	border-radius: 10px;
	padding: 17px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}

.footerCopyright p {
	margin-bottom: 0;
	color: #ffffff;
	font-weight: 400;
	font-size: 16px;
}

.footerCopyright p a{
	margin-bottom: 0;
	color: var(--primary-color) ;
	font-weight: 400;
	font-size: 16px;
	transition: 0.3s ease-in-out ;
}

.footerCopyright p a:hover{
	text-decoration: underline ;
}
.footerCopyright ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footerCopyright ul li a {
	position: relative;
	width: 36.74px;
	height: 36.74px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 50px;
	text-decoration: none;
	transition: .4s all;
}

.footerCopyright ul li a:hover {
	background-color: var(--primary-color);
}

.footerCopyright ul li a i {
	color: #000000;
	font-size: 14.13px;
	font-weight: 500;
	transition: .4s all;
}

.footerCopyright ul li a:hover i {
	color: #ffffff;
}
/* footerStyling End */


/* responsive Start */
@media(max-width: 991px){
	.videoSec{
		padding: 60px 0px 48px;
	}
	.videoSec .row .col-lg-4.col-md-6.col-sm-12.col-12{
		    margin-bottom: 22px;
	}
	.prod-button-prev{
		left: 0px;	
	}
	
	.prod-button-next{
		right: 0px;
	}
	
	.productSyncSliderBox{
		margin-bottom: 22px;	
	}
	
	.tab{
		padding: 10px 12px;
	}
	
	.product-sec .secTitle h3{
		font-size: 24px;
	}
	
	.footerContent {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 32px;
	}

	.footerContent p {
		text-align: left;
		margin-bottom: 0px;
	}

	.footerQuickLinks {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin-bottom: 32px;
		padding-left: 0px;
	}

	.footerQuickLinks ul li {
		text-align: left;
	}

	.header-menus{
		display: none;
	}
	.headerSidebarMenuIcon{
		display: flex;
	}
	.contactInfoBoxMain{
		margin-bottom: 0px;
	}
	.contactInfoBox{
		margin-bottom: 22px;
	}
}

@media(max-width: 768px){
	#customer_details .col-1{
		margin-bottom: 22px;
	}
	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last{
		width: 100%;
	}
	.myAccountPageSec .woocommerce{
		display: block;
	}
	.myAccountPageSec .woocommerce-MyAccount-navigation{
		max-width: 100%;
		margin-bottom: 22px;
	}
}

@media(max-width: 767px){}

@media(max-width: 575px){
	.verificationPopup{
		max-width: calc(100% - 35px);
	}
	.verificationPopupBody .butnWrap{
		gap: 8px;
	}
	.woocommerce-variation-add-to-cart .quantity{
		width: 35% !important;
	}
	.headerSidebarMenu{
		max-width: 325px;
	}
	.sidebarLogo a img{
		max-width: 120px;
	}
}

@media(max-width: 375px){
	.verificationPopupBody .imgWrap img{
		max-width: 140px;
	}
	.verificationPopupBody h3{
		font-size: 22px;
	}
	.verificationPopupBody p{
		font-size: 14px;
	}
	.galleryImgWrapper img{
		height: 250px;
	}
	:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button{
		margin-top: 15px;
		padding: 16px 40px !important;	
	}
	.header-logo img{
		width: 75px;
	}
	.category-sec{
		padding: 30px 0 0px;
	}
	.category-name{
		bottom: 4px;
		width: calc(100% - 10px);
		font-size: 12px;
	}
	.product-img img{
		height: 150px;
	}
	.product-title{
		font-size: 14px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.section-title{
		font-size: 18px;
	}
	.info-btn{
		padding: 4px 4px 4px 8px;
		font-size: 10px;
		gap: 4px;
	}
	.product-btn a{
		padding: 6px 10px;
		font-size: 12px;
	}
	.product-btn a i{
		font-size: 14px;
	}
	.clothing-product-btn a{
		padding: 6px 10px;
		font-size: 12px;
	}
	.clothing-product-btn a i{
		font-size: 14px;
	}
	.faqContentBox{
		padding: 15px;
		gap: 12px;
	}
	.faqContentBox .contentWrap p{
		font-size: 14px;
	}
	.singlePageSec .secTitle h3{
		font-size: 26px;
	}
}
/* responsive End */