/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
 
*,
::after,
::before {
    box-sizing: border-box;
}

body{
    margin: 0 !important;
	padding: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-text);
    font-family: var(--font-monda);
 }
 :root{
	--primary: #2C4C3B;
	--secondary:#C7B299;
	--white: #ffffff;
	--black: #000000;
	--dark-gray: #333333;
	--light-gray:#FCFCFA;
	--gray: #E5E5E5;
	--color-product-bg: #F6F6F6;
	--color-bg: #F8F8F8;
	--color-box-bg: #F3F3F3;
	--color-box-bg2: #FDFDFD;
	--color-box-border: #E3E3E3;
	--color-title-text: #353A40;
	--color-text: #828282;
	--color-border:#D3D3D3;
	--color-bg-gray :#F7F8F7;
	--color-dark-gray :#666666;
	--font-Cormorant-Garamond: "Cormorant Garamond", serif;
/* 	--font-Cormorant-Garamond: "Nunito", sans-serif; */
	--font-monda:"Monda", sans-serif;
	--font-montserrat:"Montserrat", sans-serif;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* Scrollbar background */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.container{
	max-width: 1470px;
	margin: 0 auto;
	width: 100%;
	padding: 0 15px;

}
h1,h2,h3,h4{
    color: var(--black);
}
h1,h2,h3,h4,h5,h6,p,ul{
    margin: 0;
}
ul{
	list-style: none;
    padding: 0;
}
a {
    text-decoration: none;
    color: var(--primary);
}
.d-flex {
    display: flex;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.text-center{
	text-align: center;
}

/* primary-btn */
.primary-btn {
    padding: 12px 32px;
    background-color: var(--gray);
    display: inline-block;
    color: var(--black);
    font-weight: 700;
    border-radius: 5px;
    font-size: 22px;
    font-family: var(--font-Cormorant-Garamond);
	border: 1px solid var(--gray);
	transition: .5s;
    
}
.primary-btn:hover{
	background-color:transparent;
	color: var(--gray);
}

/* Primary Btn boreder */
.primary-bg-btn{
        display: inline-block;
     text-decoration: none;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 6px;
    font-family: var(--font-monda);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: .5s;
}
.primary-bg-btn:hover{
    background-color: var(--white);
    color: var(--black);
}


/* secondary Btn */
.secondary-btn {
    font-family: var(--font-monda);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    display: inline-block;
    color: var(--white);
    background-color: var(--primary);
    padding: 19px 31px;
    border-radius: 6px;
    border: 1px solid var(--primary);
	transition: .5s;
}
.secondary-btn:hover{
	background-color: transparent;
	color:var(--primary);
}
@media (max-width: 1023px){
    .primary-btn,
    .secondary-btn {
        padding: 14px 20px;
        font-size: 12px;
    }
    .primary-bg-btn{
        font-size: 12px;
    }
}


/* Section Head */
.section-head {
    margin-bottom: 60px;
}
.section-head .title h2 {
    font-family: var(--font-Cormorant-Garamond);
    font-weight: 700;
    font-size: 46px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto 10px;
    color: var(--black);
}
.section-head .description{
    max-width: 700px;
    margin: 0 auto;
}
.section-head .description p {
    font-family: var(--font-monda);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
	color: var(--color-text);
}
.section-head.white-head .title h2,
.section-head.white-head .description p{
    color: var(--white);
}
@media (max-width: 1023px){
    .section-head {
        margin-bottom: 50px;
    }
    .section-head .title h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px){
    .section-head {
        margin-bottom: 30px;
    }
    .section-head .title h2 {
        font-size: 26px;
    }
    .section-head .description{
        max-width: 100%;
    }
    .section-head .description p {
        font-size: 14px;
        line-height: 20px;
    }
}


/* ------ Quantity Input START ------*/
.quantity {
    display: flex;
    border: 1px solid #dddddd;
    border-radius: 6px;
}
.quantity button {
    border: none !important;
    background-color: transparent;
    cursor: pointer;
}
.quantity input {
    border: none !important;
}
/* ------ Quantity Input End ------*/


/* ------ Product Card Start ------*/
.woocommerce .products.columns-4{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -13px;
	justify-content: center;
}  
.woocommerce .products.columns-4 .product{
    max-width: 25%;
	width: 100%;
	padding: 0 13px;
	margin: 0;
	text-align: center;
}
.woocommerce .products.columns-4 .product a{
    position: relative;
}
.woocommerce .products.columns-4 .product .onsale {
    min-width: fit-content;
    min-height: fit-content;
    max-width: fit-content;
    max-height: fit-content;
    width: fit-content;
    height: fit-content;
    display: inline-block;
    line-height: normal;
    border-radius: 0;
    margin: 0;
    font-size: 12px;
    padding: 2px 10px;
    left: 5px;
    line-height: normal;
    top: 5px;
    background-color: var(--primary);
}
.woocommerce .products.columns-4 .product img{
	margin: 0 0 21px;
}
.woocommerce .products.columns-4 .product .woocommerce-loop-product__title{
    font-family: var(--font-Cormorant-Garamond);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 10px;
    padding: 0;
}
.woocommerce .products.columns-4 .product .price{
    font-family: var(--font-monda);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--primary);
    margin: 0;
}
.woocommerce .products.columns-4 .product .price ins{
    text-decoration: none;
}
.woocommerce .products.columns-4 .product .button{
    /* width: fit-content; */
    margin: 20px auto 0;
    /* padding: 12px 30px !important;*/
}
@media (max-width:767px){
    .woocommerce .products.columns-4 {
        margin: 0 -4px;
        row-gap: 20px;
        justify-content: start;
    }
    .woocommerce .products.columns-4 .product {
        max-width: 50%;
        padding: 0 4px;
        margin: 0 !important;
    }
    .woocommerce .products.columns-4 .product img{
        margin: 0 0 12px;
    }
    .woocommerce .products.columns-4 .product .woocommerce-loop-product__title{
        font-size: 16px;
    }
    .woocommerce .products.columns-4 .product .price {
        font-size: 16px;
    }
    .woocommerce .products.columns-4 .product .button {
        padding: 10px 10px !important;
        font-size: 12px !important;
        margin: 10px auto 0;
    }
}
/* ------ Product Card End ------*/