:root {
    --primary-font: "Bellefair", serif;
    --secondary-font: "Manrope", sans-serif;
    --color-1: rgba(63, 111, 90, 1);
    --color-2: rgba(54, 60, 64, 1);
    --color-3: rgba(34, 68, 57, 1);
    --color-black: rgba(0, 0, 0, 1);
    --color-white: rgba(255, 255, 255, 1);
    --color-4: rgba(162, 208, 188, 1);
}

body,
html {
    overflow-x: hidden;
}

body {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    line-height: 1.6;
    color: var(--color-black);
}

* {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 10px;
}

ul,
li,
ol {
    margin-bottom: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

img {
    max-width: 100%;
}

h1 {
    font-weight: 400;
    font-size: 56px;
    color: var(--color-black);
    letter-spacing: -3%;
    margin-bottom: 20px;
    line-height: 1.05;
}

h2 {
    font-weight: 400;
    letter-spacing: -3%;
    color: var(--color-3);
    font-size: 36px;
}

h3 {
    font-weight: 400;
    font-family: var(--secondary-font);
    color: var(--color-black);
    font-size: 24px;
}

h3.font {
    font-family: var(--primary-font);
}

h4 {
    font-size: 20px;
}

ul {
    padding: 0;
}

input.form-control:focus {
    box-shadow: none;
    border-color: var(--color-1);
}

.btn,.mailpoet_submit {
    border-radius: 40px;
    padding: 16px 31px!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--secondary-font);
    border: 0;
    line-height: 0.8;
}
.mailpoet_submit {
    min-height: 50px;
}

.btn-primary ,.mailpoet_submit{
    background: var(--color-1);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-4);
    color: var(--color-1);
}

.btn-primary:hover,.mailpoet_submit:hover,.btn-primary:focus,.mailpoet_submit:focus {
    background: var(--color-3);
    box-shadow: none;
}

.common-gap {
    padding: 100px 0;
}

.common-gap.pt-50 {
    padding-top: 50px;
}

.cmmn-hdr {
    margin-bottom: 50px;
}

.cmmn-hdr h2 {
    max-width: 497px;
    margin-left: auto;
    margin-right: auto;
}

.cmmn-hdr p {
    max-width: 520px;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-2);
    margin: 20px auto 0;
}


/* header */
.header {
    position: relative;
    z-index: 2;
}

.top-header {
    padding: 6px 0;
    background: var(--color-1);
}

.top-header p {
    margin-bottom: 0;
    color: var(--color-white);
    font-size: 16px;
}

.bottom-header {
    padding: 30px 0;
}

.logo {
    max-width: 300px;
    min-width: 300px;
    display: inline-block;
}

.header-otr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.navbar-nav li {
    margin-right: 30px;
}

.navbar-nav li:last-child {
    margin-right: 0;
}

.navbar-nav li a {
    padding: 0 !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-2);
    letter-spacing: 20%;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.navbar-nav li a:focus {
    color: var(--color-1);
}

.navbar-nav li a:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    background: var(--color-1);
    width: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    height: 2px;
    bottom: -1px;
}

.navbar-nav li a:hover:before,
.navbar-nav li a.active:before {
    width: 100%;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
    color: var(--color-1);
}

.hdr-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

.dropdown-toggle::after {
    vertical-align: .200em;
    border-top: .4em solid;
    border-right: .4em solid transparent;
    border-left: .4em solid transparent;
}

.dropdown-menu {
    padding: .5rem;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
    margin-bottom: 15px;
    margin-right: 0;
}

.dropdown-menu li a:hover {
    background: transparent;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu li a:before {
    display: none;
}

.navbar {
    padding: 0;
}

.dropdown-toggle.show:after {
    border-top: 0;
    border-bottom: .4em solid;
}


/* banner */
.ban-slide {
    position: relative;
}

.ban-slide:after {
    position: absolute;
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bannerimg {
    height: 703px;
}

.bannerimg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-otr p {
    color: var(--color-2);
    margin-bottom: 30px;
    max-width: 544px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-product-gallery__image {
    pointer-events: none !important;
}

.desc-cnt p{
    margin-top: 10px;
}

.desc-cnt li {
    margin-bottom: 0;
    list-style-type: disc !important;
    margin-left: 30px;
}

.banner-otr {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    padding-bottom: 114px;
    z-index: 2;
}

.ban-progress {
    background: transparent;
    height: 2px;
    width: 100%;
    position: relative;
    border-radius: 50px;
    background: rgba(247, 247, 232, 1);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.ban-progress-bar {
    background: rgba(225, 225, 178, 1);
    height: 3px;
    width: 0%;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner {
    position: relative;
}

figure.news-img.comm-temp {
    height: 100px;
}

.ban-progress-wrapper {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

/* shop sec */
.shop-section {
    background: -webkit-gradient(linear, left bottom, left top, from(#E6FCF2), to(#FFFFFF));
    background: -o-linear-gradient(bottom, #E6FCF2 0%, #FFFFFF 100%);
    background: linear-gradient(360deg, #E6FCF2 0%, #FFFFFF 100%);
}

.shop-img {
    height: 456px;
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.shop-img:after {
    position: absolute;
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 50%, #FFFFFF 100%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.shop-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.shop-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.shop-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.shop-txt p {
    color: var(--color-2);
    margin-bottom: 0;
}

.shop-content .btn {
    min-width: 150px;
}

/* explose sec */
.explore-left {
    height: 640px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.explore-otr h3 {
    margin-bottom: 20px;
}

.explore-otr p {
    margin-bottom: 30px;
    color: var(--color-2);
}

.explore-sec {
    position: relative;
}

.full-width {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.explore-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: right;
    padding: 0;
}

.explore-otr-pic {
    position: relative;
}

.explore-innr-pic {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(221, 238, 232, 1);
    padding: 30px;
    width: 44%;
    height: 70%;
}

.explore-innr-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.explore-left {
    max-width: 456px;
}

.otr-pic {
    width: 67%;
    margin-left: auto;
    height: 640px;
}

.otr-pic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* gift sec */
.gift-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0;
}
#stripe-card-element, 
#stripe-exp-element, 
#stripe-cvc-element {
  padding: 12px;
 
}

.StripeElement {
     line-height: 1.5;
}
.gift-left img {
    width: 100%;
}

.gift-content {
    height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    padding-left: 120px;
}

.gift-content h5 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 20%;
    color: var(--color-1);
    text-transform: uppercase;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
}

.gift-content h2 {
    margin-bottom: 20px;
}

.gift-content p {
    margin-bottom: 30px;
}

.gift-img {
    height: 400px;
    overflow: hidden;
}

.gift-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.gift-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.gift-innr {
    position: relative;
}

.gift-innr:nth-child(2n) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.gift-innr:nth-child(2n) .gift-left {
    right: 0;
    left: auto;
}

.gift-innr:nth-child(2n) .gift-content {
    margin-right: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 120px;
}

/* why choose sec */
.why-choose-icon {
    display: block;
    margin-bottom: 30px;
}

.why-choose-innr h3 {
    margin-bottom: 20px;
}

.why-choose-innr p {
    font-size: 14px;
    color: var(--color-2);
    max-width: 350px;
    margin: 0 auto;
}

/* newsletter sec */
.newsletter-sec {
    background: -webkit-gradient(linear, left bottom, left top, from(#E6FCF2), to(#FFFFFF));
    background: -o-linear-gradient(bottom, #E6FCF2 0%, #FFFFFF 100%);
    background: linear-gradient(360deg, #E6FCF2 0%, #FFFFFF 100%);
}
.mailpoet_form .mailpoet_paragraph {
    margin-bottom: 0px !important;
}

.newsletter-wrapper form.mailpoet_form  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.newsletter-wrapper .mailpoet_message {
  display: block;
  width: 100%;
  text-align: center;
}
.newsletter-wrapper .mailpoet_message p {
    margin-bottom: 0;
    font-size: 14px;
    background: rgba(225, 225, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;  
    padding: 8px 15px;
    display: inline-block;
}
.newsletter-wrapper .mailpoet_message p.mailpoet_validate_success {
     border-color: green;
}
.newsletter-wrapper .mailpoet_message p.mailpoet_validate_error {
    border-color: red;
}
.email-input input {
    border: 1px solid rgba(162, 208, 188, 1);
    border-radius: 40px;
    height: 50px;
    padding: 5px 30px !important;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    width: 382px !important;
    background: transparent;
}

.email-input input::-webkit-input-placeholder {
    color: var(--color-1);
}

.email-input input::-moz-placeholder {
    color: var(--color-1);
}

.email-input input:-ms-input-placeholder {
    color: var(--color-1);
}

.email-input input::-ms-input-placeholder {
    color: var(--color-1);
}

.email-input input::placeholder {
    color: var(--color-1);
}

.newsletter-wrapper .btn {
    height: 50px;
    min-width: 200px;
}

input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

/* customer-sec */
.customer-sec {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.customer-sec:after {
    position: absolute;
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.customer-left p {
    margin-bottom: 0;
}

.customer-left p,
.customer-left h2 {
    color: var(--color-white);
}

.customer-right p {
    font-size: 14px;
    color: var(--color-white);
}

.customer-bottom {
    text-align: center;
    margin-top: 50px;
}

.customer-bottom p {
    font-size: 24px;
    color: rgba(235, 253, 245, 1);
    margin-bottom: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.customer-bottom h6 {
    font-size: 24px;
    color: rgba(235, 253, 245, 1);
    font-family: var(--secondary-font);
    margin-bottom: 0;
    font-weight: 400;
}

.shape {
    display: block;
    margin-bottom: 30px;
}

/* explore-collection-sec */
.explore-collection-sec {
    background: -webkit-gradient(linear, left bottom, left top, from(#E6FCF2), to(#FFFFFF));
    background: -o-linear-gradient(bottom, #E6FCF2 0%, #FFFFFF 100%);
    background: linear-gradient(360deg, #E6FCF2 0%, #FFFFFF 100%);
}

.button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.explore-collection-img {
    margin-bottom: 50px;
    position: relative;
    height: 560px;
    width: 456px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.explore-collection-img:after {
    position: absolute;
    content: '';
    border: 1px solid rgba(162, 208, 188, 1);
    border-top-left-radius: 230px;
    border-top-right-radius: 230px;
    z-index: -1;
    height: 90%;
    width: 90%;
    right: -10px;
    top: -1px;
}

.explore-collection-img-wrapper {
    height: 100%;
    width: 100%;
    border-top-left-radius: 230px;
    border-top-right-radius: 230px;
    overflow: hidden;
}

.explore-collection-img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.star-2 {
    position: absolute;
    right: -18%;
    bottom: 40px;
}

.star-1 {
    position: absolute;
    left: -9%;
    top: 30%;
}

.explore-collection-content p {
    max-width: 655px;
    margin: 0 auto;
}

/* shop sec */
.top-hdr-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.product-img {
    height: 336px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.product-img:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(52.4%, rgba(255, 255, 255, 0)), to(#DDEEE8));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 52.4%, #DDEEE8 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52.4%, #DDEEE8 100%);
}

.product-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.product-img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.product-content {
    margin-top: 30px;
}
.product-content h3 a {
    color: var(--color-black);
}
.product-content h3 a:hover {
    opacity: 0.7;
}
.product-content h3 {
    font-family: var(--primary-font);
}

.product-content p {
    color: var(--color-2);
    margin-bottom: 20px;
    min-height: 72px;
    line-height: 1.5;
}

.product-content h6 {
    font-size: 24px;
    color: var(--color-black);
}

.shop-slider {
    padding-bottom: 100px;
}

.shop-slider .slick-list {
    margin: 0 -12px;
}

.shop-slide {
    padding: 0 12px;
}

.shop-slider .slick-prev,
.shop-slider .slick-next {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 104px;
    height: 60px;
    border-radius: 100px;
    border: 1px solid rgba(63, 111, 90, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    transition: all 0.5s;
}

.shop-slider .slick-prev:hover,
.shop-slider .slick-next:hover {
    background: var(--color-1);
}

.shop-slider .slick-prev:hover img,
.shop-slider .slick-next:hover img {
    filter: brightness(100);
}

.shop-slider .slick-prev {
    left: -115px;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.shop-slider .slick-next {
    right: -115px;
}

.shop-slider .slick-arrow.slick-disabled {
    border-color: rgba(162, 208, 188, 1);
}

.shop-slider .slick-arrow.slick-disabled img {
    -webkit-filter: invert(90%) sepia(40%) saturate(417%) hue-rotate(100deg) brightness(86%) contrast(90%);
    filter: invert(90%) sepia(40%) saturate(417%) hue-rotate(100deg) brightness(86%) contrast(90%);
}

/* footer */
.footer {
    background: var(--color-1);
}

.footer-top {
    padding: 100px 0 50px;
}

.footer-bottom {
    padding: 30px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-white);
    margin-bottom: 0px;
    font-size: 13px;
}

.footer-bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.footer-bottom ul li {
    list-style-type: disc;
    list-style-position: inside;
    color: var(--color-white);
}

.footer-bottom ul li:first-child {
    list-style-type: none;
}

.footer-bottom ul li a {
    color: var(--color-white);
    font-size: 13px;
}

.footer-bottom ul li a:hover {
    opacity: 0.7;
}

.footer ul {
    padding: 0;
}

.ft-hdr {
    color: var(--color-white);
    margin-bottom: 20px;
}

.ft-menu li {
    margin-bottom: 12px;
    color: rgba(235, 253, 245, 1);
    font-size: 14px;
}

.ft-menu li a {
    color: rgba(235, 253, 245, 1);
    font-size: 14px;
}

.ft-menu li a:hover {
    opacity: 0.7;
}

.ft-menu li:last-child {
    margin-bottom: 0;
}

.ft-logo {
    margin-bottom: 30px;
}

.ft-para {
    color: rgba(235, 253, 245, 1);
    font-size: 14px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.social-menu {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
}

.social-menu li a {
    color: var(--color-white);
    font-size: 24px;
}

.social-menu li a:hover {
    opacity: 0.7;
}

.ft-menu.flex li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.ft-menu li address strong,
.ft-menu li a strong {
    font-weight: 400;
    display: block;
    font-size: 14px;
}

.ft-menu li span {
    min-width: 18px;
    max-width: 18px;
}

/* about page */
.inner-banner {
    padding: 30px 0 100px;

}

.inner-banner p {
    max-width: 544px;
    margin: 0 auto;
}

.cmmn-hdr p.lg {
    max-width: 936px;
}

.linear-back {
    position: relative;
    z-index: 1;
}

.linear-back:after {
    position: absolute;
    content: '';
    background-image: url('../images/gradient.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    top: -50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
/* contact page */
.contact-sec {
    background: -webkit-gradient(linear, left bottom, left top, from(#E6FCF2), to(#FFFFFF));
    background: -o-linear-gradient(bottom, #E6FCF2 0%, #FFFFFF 100%);
    background: linear-gradient(360deg, #E6FCF2 0%, #FFFFFF 100%);
}
.mb-30 {
    margin-bottom: 30px;
}
.contact-top {
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
}
.cmmn-hdr p a {
    color: var(--color-2);
    text-decoration: underline;
}
.cmmn-hdr p a:hover {
    color: var(--color-1);
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-2);
    margin-bottom: 10px;
}
.form-control {
    height: 50px;
    padding: 5px 30px;
    border-radius: 40px;
    border: 1px solid rgba(162, 208, 188, 1);
    background: transparent;
    font-weight: 500;
    color: var(--color-black);
    font-size: 14px;
}
.form-control::-webkit-input-placeholder {
    color: var(--color-1);
}
.form-control::-moz-placeholder {
    color: var(--color-1);
}
.form-control:-ms-input-placeholder {
    color: var(--color-1);
}
.form-control::-ms-input-placeholder {
    color: var(--color-1);
}
.form-control::placeholder {
    color: var(--color-1);
}
textarea.form-control {
    height: 120px;
    padding-top: 24px;
}
.submit-btn {
    min-width: 200px;
}
/* product listing page */
.pagination-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
    gap: 5px;
}
.pagination-wrapper li a,.pagination-wrapper li span {
    border: 1px solid rgba(162, 208, 188, 1);
    color: rgba(162, 208, 188, 1);
    width: 50px;
    height: 60px;
    border-radius: 100px!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 24px;
    font-weight: 400;
}
.page-link {
  padding: 0;
}
.pagination-wrapper li a.next,
.pagination-wrapper li a.prev  {
    width: 104px;
    font-size: 16px;
}
.pagination-wrapper .page-numbers.current {
  color: #fff;
  background-color: transparent;
  border-color: var(--color-1);
  color:var(--color-1);
}
.page-link:hover {
  color: #fff;
  background-color: transparent;
  border-color: var(--color-1);
  color:var(--color-1);
}
.product-overlay {
    position: relative;
}
.product-overlay:hover .shop-now-btn {
    opacity: 1;
    visibility: visible;
}
.product-overlay .product-img img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.product-overlay:hover .product-img img {
    visibility: hidden;
    opacity: 0;
}
.shop-now-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* background: -webkit-gradient(linear, left top, left bottom, color-stop(52.4%, rgba(255, 255, 255, 0.5)), to(#DDEEE8));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 52.4%, #DDEEE8 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 52.4%, #DDEEE8 100%); */
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.sort-list {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
}
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
.sort-list select {
    height: 46px;
    padding: 5px 60px 5px 30px;
    border: 1px solid rgba(203, 203, 203, 1);
    color: var(--color-2);
    font-size: 16px;
    font-weight: 400;
    border-radius: 100px;
    background-color: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    background-image: url('../images/select-arrow.svg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right 5px center;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.select {
    height: 46px;
    padding: 5px 60px 5px 30px;
    border: 1px solid rgba(203, 203, 203, 1);
    color: var(--color-2);
    font-size: 16px;
    font-weight: 400;
    border-radius: 100px;
    position: relative;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
}
.sort-list select.category-list,.sort-list .select:first-child{
    width: 250px;
}
.sort-list select.size-list,.sort-list .select:last-child{
    width: 180px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 8px 60px 8px 30px;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 16px;
  right: 17px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.select-styled:before {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: rgba(237, 237, 237, 1);
    position: absolute;
    content: '';
    top: 5px;
    right: 5px;
}
.select-styled:active:after, .select-styled.active:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 20px;
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-height: 240px;
  overflow-y: auto;
}
.select-options li {
  margin: 0;
  padding: 6px 0;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li.is-selected {
  color: var(--color-1);
  text-decoration: underline;
  font-weight: 600;
}
.select-options li:hover{
  color: var(--color-1);
}
.select-options li[rel="hide"] {
  display: none;
}
.ft-menu li a {
    word-break: break-all;
}

/* product-details page */
.back-gradient {
    background: -webkit-gradient(linear, left bottom, left top, from(#E6FCF2), to(#FFFFFF));
    background: -o-linear-gradient(bottom, #E6FCF2 0%, #FFFFFF 100%);
    background: linear-gradient(360deg, #E6FCF2 0%, #FFFFFF 100%);
}
.mt-50 {
    margin-top: 50px;
}
.gift-otr.reverse .gift-innr .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}
.gift-otr.reverse .gift-content {
  margin-right: auto;
  margin-left: 0;
  padding-left: 0;
  padding-right: 120px;
}
.gift-otr.reverse .gift-innr .gift-left {
  right: 0;
  left: auto;
}
.gift-otr.reverse .gift-innr:nth-child(2n) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}
.gift-otr.reverse .gift-innr:nth-child(2n) .gift-left {
  left: 0;
  right: auto;
}
.gift-otr.reverse .gift-innr:nth-child(2n) .gift-content {
  margin-left: auto;
  margin-right: 0;
  padding-right: 0;
  padding-left: 120px;
}
.faq-otr .card {
  border: 0;
  border-radius:0;
  background: transparent;
  margin-bottom: 30px;
}
.faq-otr .card:last-child {
    margin-bottom: 0;
}
.faq-otr .card-header {
    background-color: transparent;
    border-bottom: 0;
    padding: 0;
    line-height: 1;
    padding-right: 0;
}
.faq-otr .card-header 
.faq-otr .card-header:first-child {
  border-radius: 0;
}
.faq-otr .card-header a {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 36px;
    letter-spacing: -3%;
    color: var(--color-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}
.faq-otr .card-body {
    padding: 20px 0 0;
}
.faq-otr .card-body p:last-child {
    margin-bottom: 0;
}
.f-down-arrow {
    display: none;
}
.f-up-arrow {
    display: block;
}
.faq-otr .card-header a.collapsed .f-down-arrow {
    display: block;
}
.faq-otr .card-header a.collapsed .f-up-arrow {
    display: none;
}
.faq-arrow img {
    min-width: 12px;
}
.p-50 {
    padding: 50px 0;
}
/* partner page */
.join-form .form-group {
    margin-bottom: 20px;
}
.join-wrapper {
    max-width: 670px;
}
.w-150 {
    min-width: 150px;
}
.offer-wrapper {
    position: relative;
    background: rgba(221, 238, 232, 1);
    padding: 30px;
}
.offer-wrapper.no-border {
    background: none;
    padding: 0;
}
.offer-wrapper.no-border .offer-content {
    text-align: center;
}
.offer-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 50px 50px;
}
.offer-content h2 {
    color: var(--color-black);
    font-size: 56px;
    line-height: 1.1;
}
.offer-wrapper.left {
    margin-right: -100px;
    z-index: 1;
}
.offer-wrapper.right {
    margin-left: -100px;
    z-index: 1;
}
.offer-img img {
    width: 100%;
}
.offer-img:after {
    position: absolute;
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, color-stop(52.4%, rgba(255, 255, 255, 0)), to(#DDEEE8));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 52.4%, #DDEEE8 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52.4%, #DDEEE8 100%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
p.lg {
    max-width: 906px;
}
.inner-banner h5 {
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 20%;
    text-transform: uppercase;
    color: var(--color-1);
    margin-bottom: 20px;
}
.partner-img {
    height: 450px;
}
.partner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.partner-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0;
}
.partner-content {
    padding-left: 132px;
    height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
}
.mt-30 {
    margin-top: 30px;
}
.features-hdr {
    margin-bottom: 30px;
}
.features-list {
    max-width: 576px;
    margin-left: auto;
    margin-right: auto;
}
.features-list li {
    margin-bottom: 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap:12px;
}
.features-icon {
    font-size: 20px;
    display: inline-block;
    min-width: 20px;
    max-width: 20px;
    line-height: 1;
}
.features-icon.red {
    color:rgba(247, 70, 66, 1);
}
.features-icon.green {
    color:rgba(85, 183, 128, 1);
}
.features-list li:last-child {
    margin-bottom: 0;
}
.features-list li h5 {
    color: var(--color-3);
    font-weight: 600;
    font-family: var(--secondary-font);
    font-size: 16px;
}
.features-list li p {
    font-size: 14px;
    color: var(--color-3);
    margin-bottom: 0;
}
.counter-top {
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
}
.counter-innr h2 {
    margin-bottom: 5px;
    color: var(--color-black);
    line-height: 1;
}
.counter-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.counter-number span {
    font-size: 20px;
    margin-top: -5px;
}
.counter-innr p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--color-3);
}
/* news page */
.news-img {
    height: 336px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    display: block;
}
.news-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.news-img:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.news-content h3 {
    margin-bottom: 20px;
}
.news-content h3 a {
    color: var(--color-black);
}
.news-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.news-date li {
    font-size: 16px;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--color-3);
    list-style-type: disc;
    list-style-position: inside;
}
.news-date li:first-child {
    list-style-type: none;
}
.news-content p {
    color: var(--color-3);
    margin-bottom: 30px;
}
/* news details page */
.inner-banner .news-date li {
    margin-bottom: 0;
}
.news-details-img {
    border-radius: 30px;
    overflow: hidden;
}
.news-details-img img {
    width: 100%;
}
.mb-50 {
    margin-bottom: 50px;
}
.news-details-hdr {
    margin-bottom: 20px;
}
.news-details-list {
    margin-bottom: 30px;
}
.news-details-list li {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-3);
}
.news-details-content h2 {
    margin-bottom: 20px;
}
.news-details-content {
    margin-bottom: 30px;
}
.news-details-content:last-child {
    margin-bottom: 0;
}
.news-details-content p {
    margin-bottom: 15px;
    color: var(--color-3);
}
.news-details-content p strong {
    font-weight: 600;
}
.news-details-content h3 {
    margin-bottom: 15px;
    color: var(--color-3);
    font-size: 20px;
}
.news-details-content ul {
    margin-bottom: 15px;
}
.news-details-content ul li {
    font-weight: 600;
    list-style-type: disc;
    list-style-position: inside;
    color: var(--color-3);
}
.link-inn {
    font-weight: 600;
    text-decoration: underline;
    color: var(--color-3);
    margin-top: 25px;
    display: block;
}
.link-inn:hover {
    color: var(--color-1);
}
/* 16-8-2025 */
.search-box.search-wrap {
  position: relative;
}
.search-box.search-wrap .probox {
    padding: 4px 8px!important;
    border: 2px solid rgb(63, 111, 90)!important;
}
.search-box.search-wrap .icon-box {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 5;
}
.woocommerce-page div.product div.images,.woocommerce div.product div.images {
  float: none;
  width: 100%;
}
.woocommerce-page div.product div.summary,.woocommerce div.product div.summary {
  float: none;
  width: 100%;
  margin-bottom: 0!important;
}
.product-highlights li {
  width: calc(100% / 4);
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
}
.product-highlights li span {
    display: inline-block;
    margin-right: 9px;
}
.product-highlights {
    background: rgb(63, 111, 90);
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 13px 30px;
    color: rgb(255, 255, 255);
    flex-wrap: wrap;
}
.product-details-sec div.summary {
  padding-left: 100px;
}
.product-details-sec .product_title {
    font-weight: 400;
    font-size: 36px;
    letter-spacing: -3%;
    color: rgba(34, 68, 57, 1);
}
.product-details-sec .price {
    font-size: 24px!important;
    font-weight: 400;
    color: rgba(0, 0, 0, 1)!important;
    margin-bottom: 20px;
}
.product-details-sec .woocommerce-product-details__short-description ul {
    margin-bottom: 20px;
}
.product-details-sec .woocommerce-product-details__short-description ul li {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: rgba(54, 60, 64, 1);
    padding-left: 25px;
    position: relative;
}
.product-details-sec .woocommerce-product-details__short-description ul li:after {
    background-image: url('../images/list-arrow-green.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    left: 0;
    top: 3px;
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
}
.product-details-sec .woocommerce-product-details__short-description ul li:last-child {
    margin-bottom: 0;
}
.product-details-sec form.cart .variations label,.product-details-sec .custom-upload label {
  font-weight: 600!important;
  text-align: left;
  color: rgb(54, 60, 64);
  font-size: 14px;
}
.product-details-sec .custom-upload {
    margin-bottom: 20px!important;
}
.product-details-sec .custom-upload label {
    margin-bottom: 10px;
}
.product-details-sec .custom-upload label strong {
    font-weight: 600!important;
}
.woocommerce .product-details-sec .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap {
    font-size: 16px;
    padding: 10px 30px;
}
.product-details-sec .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default {
  color: rgba(54, 60, 64, 1)!important;
}
.product-details-sec .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap.vi-wpvs-option-wrap-default {
  box-shadow: 0 0 0 1px rgba(203, 203, 203, 1) inset!important;
}
.product-details-sec .value.vi-wpvs-variation-style-content {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-details-sec .vi-wpvs-variation-wrap .vi-wpvs-option-wrap {
  margin: 5px 10px 0 0!important;
}
.product-details-sec .vi-wpvs-variation-style {
    margin-bottom: 0!important;
}
.product-details-sec form.cart div.quantity {
  float: none!important;
  margin: 0 0 20px!important;
}
.woocommerce .product-details-sec .quantity label.screen-reader-text {
    clip: inherit;
    height: auto;
    clip-path: none;
    margin: 0;
    overflow: visible;
    position: static !important;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgb(54, 60, 64);
    font-size: 14px;
}
.woocommerce .product-details-sec .quantity .qty {
    width: 92px;
    border: 1px solid rgba(203, 203, 203, 1);
    border-radius: 100px;
    height: 40px;
}
.woocommerce .product-details-sec form.cart .button:hover {
  background: var(--color-3);
}
.woocommerce .product-details-sec form.cart .button {
    border-radius: 40px;
  padding: 16px 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--secondary-font);
  border: 0;
  line-height: 0.8;
  background: var(--color-1);
  color: var(--color-white);
  min-width: 200px;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.woocommerce .product-details-sec .accordion.mt-4 {
    margin-top: 0!important;
}
.woocommerce .product-details-sec .accordion-button {
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--secondary-font);
}
.woocommerce .product-details-sec .accordion-button:not(.collapsed) {
  color: rgb(54, 60, 64);
  background-color: transparent;
  box-shadow: none;
}
.woocommerce .product-details-sec .accordion-item {
  background-color: transparent;
  border: none;
  border-top: 1px solid rgba(162, 208, 188, 0.3);
  padding: 20px 0;
}
.woocommerce .product-details-sec .accordion-body {
  padding: 20px 0 0;
}
.woocommerce .product-details-sec .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.woocommerce .product-details-sec .accordion-body p {
    color: rgba(54, 60, 64, 1);
    font-size: 14px;
}
.woocommerce .product-details-sec .accordion-button:not(.collapsed)::after {
  background-image: url('../images/minus.svg');
  transform: none;
}
.woocommerce .product-details-sec .accordion-button::after {
    background-image: url('../images/plus.svg');
    background-size: 100% 100%;
    width: 9px;
    height: 19px;
}
.woocommerce .product-details-sec .custom-upload small {
    display: block;
    margin-top: 10px;
}
.woocommerce .product-details-sec .woocommerce-product-gallery__image {
  border-radius: 30px;
  overflow: hidden;
}
.custom-product-gallery-thumbs {
  margin-top: 24px!important;
}
.custom-product-gallery-thumbs .slick-slide {
    padding: 0 12px;
}
.custom-product-gallery-thumbs .slick-list {
    margin: 0 -12px
}
.woocommerce .product-details-sec .woocommerce-product-gallery__image a {
  height: 600px;
}
.woocommerce .product-details-sec .woocommerce-product-gallery__image a img {
    height: 100%!important;
    object-fit: cover;
}
/* step sec */
.logo-innr {
    margin-bottom: 38px;
}
.step-content h3 {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--primary-font);
    color: rgba(0, 0, 0, 1);
}
.step-content {
    max-width: 251px;
    position: absolute;
}
.step-content p {
    font-size: 14px;
    color: rgba(54, 60, 64, 1);
    margin-bottom: 0;
}
.steps-wrapper {
    display: flex;
    justify-content: center;
    min-height: 340px;
    align-items: flex-start;
    padding-top: 90px;
}
.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background: var(--color-1);
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-left: 30px;
    margin-right: 30px;
}
.step-icon img {
    filter: brightness(100);
}
.steps {
    display: flex;
    justify-content: center;
    position: relative;
  
    padding: 15px 30px;
}
.step-1 .step-content {
    top: calc(100% + 8px);
    left: -3%;
}
.step-2 .step-content {
    bottom: calc(100% + 8px);
    left: 16%;
}
.step-3 .step-content {
    top: calc(100% + 8px);
    left: 35%;
}
.step-4 .step-content {
    bottom: calc(100% + 8px);
    left: 53%;
}
.step-5 .step-content {
    top: calc(100% + 8px);
    right: -3%;
}
/* 17-8-2025 */
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn, .xoo-wsc-container .xoo-wsc-btn {
  background: var(--color-1);
  color: var(--color-white);
  border: 2px solid var(--color-1);
  border-radius: 40px;
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover, .xoo-wsc-container .xoo-wsc-btn:hover {
  color: #fff;
  background: var(--color-3);
  border-color: var(--color-3);
}
.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:hover span,.xoo-wsc-container .xoo-wsc-btn:hover span {
    color: #fff;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  margin: 1rem 0 0;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border: 0;
  min-height: 389px;
}
.woocommerce form .form-row label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-2);
    margin-bottom: 10px;
}
.woocommerce form .form-row label.woocommerce-form__label-for-checkbox {
    margin-bottom: 0;
    padding-top: 9px;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    height: 50px;
    padding: 5px 30px;
    border-radius: 40px;
    border: 1px solid rgba(162, 208, 188, 1);
    background: transparent;
    font-weight: 500;
    color: var(--color-black);
    font-size: 14px;
    width: 100%;
}
.woocommerce form .form-row input::placeholder {
    color: var(--color-1);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    background: var(--color-1);
    color: var(--color-white);
    border-radius: 40px;
    padding: 16px 31px;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--secondary-font);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover {
  color: #fff;
  background: var(--color-3);
  border-color: var(--color-3);
}
.woocommerce-privacy-policy-text p a,.lost_password a {
    color: var(--color-3);
}
.linear-back.back-100:after {
    background-size: 100% 100%;
    top: -60%;
}
.wc-block-components-sidebar-layout .wc-block-components-main,.wc-block-components-sidebar  {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px;
  border-radius: 10px;
  padding-right: 20px!important;
}
.wc-block-components-sidebar-layout .wc-block-components-main{
    width: 62%!important;
}
.wc-block-components-sidebar-layout {
    justify-content: space-between;
}
.wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-product-name {
    color: var(--color-3);
    font-family: var(--primary-font);
    font-size: 18px;
}
.wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-product-name:hover {
    color: var(--color-1);
}
.wc-block-components-button {
    background: var(--color-1);
    color: var(--color-white);
    border-radius: 40px;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--secondary-font);
    border-color: var(--color-1);
}
.wc-block-components-button:hover {
    color: #fff;
    background: var(--color-3);
    border-color: var(--color-3);
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-weight: 600;
}
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
    height: 50px!important;
    border-radius: 40px !important;
    border: 1px solid rgba(162, 208, 188, 1) !important;
    background: transparent;
    padding: 0 20px!important;
    background-color: transparent !important;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
    padding: 0 20px;
    font-weight: 500;
    color: var(--color-black);
    font-size: 14px;
}
.wc-block-cart-item__image a {
    display: block;
    border: 2px solid var(--color-1);
}
.wp-block-woocommerce-checkout-order-summary-block {
  border: 0!important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  margin: 0;
}
.wp-block-woocommerce-checkout-order-summary-block  .wc-block-components-order-summary {
    padding: 0;
  }
  .wc-block-components-sidebar .slot-wrapper .wc-block-components-panel, .wc-block-components-sidebar .wc-block-components-panel, .wc-block-components-sidebar .wc-block-components-totals-coupon, .wc-block-components-sidebar .wc-block-components-totals-item {
    padding-left: 0!important;
    padding-right: 0!important;
  }  
  .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    margin: 0!important;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
    text-transform: uppercase;
    font-size: .75em;
    font-weight: 700!important;
  }
  .wc-block-components-order-summary .wc-block-components-order-summary-item__image > img {
  border: 1px solid var(--color-1);
}
h2.wc-block-components-title.wc-block-components-title {
  font-size: 24px;
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator a,.wc-block-components-checkout-return-to-cart-button {
    color: var(--color-3);
}
.wc-block-checkout__terms.wc-block-checkout__terms--with-separator a:hover,.wc-block-components-checkout-return-to-cart-button:hover {
    color: var(--color-1);
}
.wc-blocks-components-select .select-styled:after,.wc-blocks-components-select .select-styled:before {
  display: none;
}
.wc-blocks-components-select .wc-blocks-components-select__label {
    display: none;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: inset 0 0 0 1.5px var(--color-1)!important;
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: inset 0 0 0 1.5px var(--color-1)!important;
}
.wc-blocks-components-select .wc-blocks-components-select__container {
    background-color: transparent !important;
}
.woocommerce ul.order_details.woocommerce-thankyou-order-details,.woocommerce ul.order_details.bacs_details,.woocommerce table.shop_table {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
  border-radius: 5px;
}
.woocommerce table.shop_table  tr td.product-name a {
    color: var(--color-3);
}
.woocommerce table.shop_table th {
  font-weight: 600;
}
strong {
    font-weight: 600;
}
.woocommerce .woocommerce-customer-details address {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 5px;
    border: 0;
    min-height: 170px;
}
.wp-block-button__link {
  height: auto;
  background: var(--color-1);
 font-weight: 500;
 font-size: 16px;
 font-family: var(--secondary-font);
}
.wp-block-button__link:hover {
  background: var(--color-3);
  border-color: var(--color-3);
  color: #fff;
}
.edit-post-visual-editor .editor-block-list__block .wc-block-grid__product-title, .editor-styles-wrapper .wc-block-grid__product-title, .wc-block-grid__product-title {
    font-family: var(--primary-font)!important;
    font-weight: 400!important;
    color: var(--color-black)!important;
    font-size: 24px!important;
}
.wc-block-grid__product .wc-block-grid__product-image {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 52.4%, #DDEEE8 100%);
  height: 336px;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 16px;
}
.wc-block-grid__products .wc-block-grid__product-image img {
  height: 100%!important;
  object-fit: cover;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
}
/* Sidebar Navigation */
.woocommerce-MyAccount-navigation {
  width: 250px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 12px;
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 10px 15px;
  color: #444;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  background: #2f6e4f;
  color: #fff;
}

/* Main Content */
.woocommerce-MyAccount-content a {
  color: var(--color-1);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
  border-bottom: 1px solid var(--color-1);
}

/* Each address box */
.woocommerce-Address {
  flex: 1;
  min-width: 320px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-Address:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Headings */
.woocommerce-Address-title h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #2f6e4f;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 8px;
}

/* Address text */
.woocommerce-Address address {
  font-style: normal;
  line-height: 1.6;
  font-size: 15px;
  color: #444;
}

/* Edit links */
.woocommerce-Address .edit {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #2f6e4f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}

.woocommerce-Address .edit:hover {
  border-bottom: 1px solid #2f6e4f;
}
.woocommerce-account .addresses .title .edit {
  float: none;
  margin-bottom: 20px;
}
.woocommerce table.my_account_orders .button {
  padding: 8px 25px;
  font-size: 14px;
}
.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions {
  display: flex;
  gap: 10px;
}
.woocommerce-info::before {
  color: var(--color-1);
}
.woocommerce-info {
  border-top-color: var(--color-1);
}
.woocommerce table.my_account_orders td, .woocommerce table.my_account_orders th {
  padding: 10px 8px;
}
.woocommerce-account .woocommerce-EditAccountForm.edit-account {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px;
}
.single_add_to_cart_button.loading::after {
  top: 16px !important;
}
.btn-wrap p {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}
.btn-wrap p  .wpcf7-spinner {
    position: absolute;
    top: 12px;
    right: 0px;   
    width: 20px;
    height: 20px;
    background-color: #bdc4ca;
}
.btn-wrap p .wpcf7-spinner::before {
    opacity: 0.6;
}
.wc-block-components-form .wc-block-components-checkout-step__content .wc-block-components-text-input,.wc-block-components-checkout-step__content .wc-block-components-text-input {
  display: flex;
  flex-direction: column-reverse;
}
.wc-block-components-form .wc-block-components-checkout-step__content .wc-block-components-text-input label {
    position: static;
    display: block;
    transform: none!important;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-2);
    margin-bottom: 10px;
}
.wc-block-components-address-form__state.wc-block-components-state-input {
  display: flex;
  align-items: flex-end;
}
#add_payment_method #payment {
  background: rgba(255,255,255,0.1);
}
#add_payment_method #payment div.payment_box {
    background-color: transparent;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background-color: var(--color-1);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt {
  background-color: var(--color-1);
}
#add_payment_method #payment div.payment_box::before {
    display: none;
}
.woocommerce-MyAccount-content .select {
    padding-right: 30px;
}
.woocommerce-MyAccount-content .select-styled:after,.woocommerce-MyAccount-content .select-styled:before {
  display: none;
}
.woocommerce-MyAccount-content .select2-selection__rendered {
    display: none!important;
}
.woocommerce-MyAccount-content .select2-container .select2-selection {
    border: 0!important;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.woocommerce-MyAccount-content form{
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 20px;
}
.thumb.slick-slide img {
  height: 118px !important;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.custom-product-gallery-thumbs {
    padding: 0 40px;
}
.custom-product-gallery-thumbs .slick-prev,.custom-product-gallery-thumbs .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
}
.custom-product-gallery-thumbs .slick-prev {
    left: 0;
}
.custom-product-gallery-thumbs .slick-next {
    right: 0;
}
/* customer-say-sec */
.customer-say-sec {
    text-align: center;
    padding: 50px 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.customer-say-wrapper h2 {
    line-height: 1.5;
    margin-bottom: 32px;
    color: #fff;
}
.star-img {
  max-width: 100px;
  display: block;
  margin: auto;
}
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 0;
  padding: 30px 0;
  display: flex;
  align-items: center;
    flex-wrap:wrap;
  gap: 5px;
}
.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--color-1);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
  color: #000;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
  color: var(--color-1);
  font-size: 1rem;
}
.custom-review {
  display: flex;
  align-items: flex-start;
    margin-bottom: 20px;
}
.custom-review i {
    color: #fde74c;
}
.custom-review h5 {
    margin-left: 8px;
    margin-bottom: 0;
    font-size: 1rem;
}
.custom-upload {
  background: var(--color-1);
    padding: 10px;
    color: #fff;
}
.product-details-sec .custom-upload label {
    color: #fff;
}
.reset_variations {
  color: var(--color-1);
}
/* responsive */

@media (min-width: 1200px) {

    .gift-sec.about-sec .gift-img,
    .gift-sec.about-sec .gift-content {
        height: 500px;
    }
}

@media (min-width: 1600px) {

    .gift-img,
    .gift-content {
        height: 500px;
    }

    .explore-left,
    .otr-pic {
        height: 754px;
    }
    .partner-img,.partner-content {
    height: 500px;
}
}
@media only screen and (min-width: 992px) {
.dropdown:hover .dropdown-menu {
    display: block;
}
}

@media only screen and (max-width: 1600px) {
    .bannerimg {
        height: 550px;
    }
    .offer-content h2 {
  font-size: 43px;
}
}

@media only screen and (max-width: 1399px) {
    .navbar-nav li {
        margin-right: 20px;
    }

    .logo-area {
        max-width: 240px;
    }

    .bottom-header {
        padding: 20px 0;
    }

    .shop-img {
        height: 380px;
    }

    h3 {
        font-size: 21px;
    }

    body {
        font-size: 14px;
    }

    .btn,.mailpoet_submit {
        font-size: 14px;
        padding: 16px 25px!important;
    }

    .shop-content .btn {
        min-width: 130px;
    }

    .otr-pic,
    .explore-left {
        height: 570px;
    }

    .common-gap {
        padding: 70px 0;
    }

    .customer-bottom p,
    .customer-bottom h6 {
        font-size: 20px;
    }
    .ft-logo {
        max-width: 270px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-top {
        padding: 70px 0 50px;
    }
    .product-details-sec div.summary {
  padding-left: 60px;
}
.thumb.slick-slide img {
  height: 100px !important;
}
.custom-product-gallery-thumbs .slick-slide {
  padding: 0 6px;
}
.custom-product-gallery-thumbs .slick-list {
  margin: 0 -6px;
}
}

@media only screen and (max-width: 1199px) {
    .top-header p {
        font-size: 14px;
    }

    .navbar-nav li a {
        font-size: 13px;
    }

    .logo-area {
        max-width: 150px;
    }

    .navbar-nav li {
        margin-right: 15px;
    }

    .bannerimg {
        height: 480px;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 31px;
    }

    .banner-otr {
        padding-bottom: 90px;
    }

    .cmmn-hdr {
        margin-bottom: 40px;
    }

    .shop-img {
        height: 330px;
    }

    .explore-innr-pic {
        padding: 15px;
    }

    .otr-pic,
    .explore-left {
        height: 460px;
    }

    .top-hdr-section {
        margin-bottom: 30px;
    }

    .product-content h6 {
        font-size: 18px;
    }

    .shop-slider .slick-prev,
    .shop-slider .slick-next {
        width: 90px;
        height: 50px;
    }

    .explore-collection-img {
        height: 470px;
        width: 380px;
    }

    .star-2 {
        width: 112px;
    }

    .star-1 {
        width: 80px;
    }

    .gift-img,
    .gift-content {
        height: 330px;
    }

    .gift-content {
        padding-left: 70px;
    }

    .gift-innr:nth-child(2n) .gift-content {
        padding-right: 70px;
    }

    .common-gap {
        padding: 50px 0;
    }

    .customer-bottom p,
    .customer-bottom h6 {
        font-size: 17px;
    }

    .footer-top {
        padding: 50px 0;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .gift-sec.about-sec .gift-img,
    .gift-sec.about-sec .gift-content {
        height: 500px;
    }

    .inner-banner {
        padding: 30px 0 50px;
    }
        .news-img {
  height: 280px;
    }
    .partner-content {
  padding-left: 60px;
    }
    .offer-content h2 {
    font-size: 34px;
  }
  .faq-otr .card-header a {
  font-size: 29px;
  }
  .faq-otr .card-body {
  padding: 12px 0 0;
}
.inner-banner h5 {
  font-size: 12px;
  margin-bottom: 15px;
}
.product-details-sec div.summary {
  padding-left: 30px;
}
.product-details-sec .product_title {
  font-size: 29px;
  margin-bottom: 10px;
}
.product-details-sec .price {
  font-size: 19px !important;
}
.woocommerce .product-details-sec .vi-wpvs-variation-wrap.vi-wpvs-variation-wrap-vi_wpvs_button_design .vi-wpvs-option-wrap {
  font-size: 14px;
  padding: 8px 20px;
}
.woocommerce .product-details-sec .quantity .qty {
  width: 75px;
  height: 32px;
}
.gift-otr.reverse .gift-content {
  padding-right: 70px;
}
.gift-otr.reverse .gift-innr:nth-child(2n) .gift-content {
  padding-left: 70px;
}
.woocommerce .product-details-sec .woocommerce-product-gallery__image a {
  height: 450px;
}
}

@media only screen and (max-width: 991px) {
    .bannerimg {
        height: 380px;
    }

    h1 {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .banner-otr {
        padding-bottom: 70px;
    }

    h2 {
        font-size: 28px;
    }

    .cmmn-hdr {
        margin-bottom: 30px;
    }

    h3 {
        font-size: 18px;
    }

    .otr-pic,
    .explore-left {
        height: 380px;
    }

    .product-img {
        height: 280px;
    }

    .shop-slider {
        padding-bottom: 80px;
    }

    .explore-collection-img {
        margin-bottom: 30px;
    }

    .gift-content {
        padding-left: 30px;
    }

    .gift-innr:nth-child(2n) .gift-content {
        padding-right: 30px;
    }

    .gift-content h5 {
        font-size: 12px;
        margin-bottom: 11px;
    }

    .gift-content h2 {
        margin-bottom: 10px;
    }

    .ft-logo {
        max-width: 220px;
        margin-bottom: 20px;
    }

    .ft-menu li address strong,
    .ft-menu li a strong {
        font-size: 12px;
    }

    .bottom-header {
        padding: 15px 0;
    }

    /* nav menu */
    .navbar-toggler {
        padding: 0;
        border: 0;
    }

    .navbar-toggler:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .navbar-toggler {
        position: absolute;
        right: 0;
        margin: 0;
        top: 0;
    }

    .header-otr {
        position: relative;
    }

    .navbar {
        position: static;
    }

    .hdr-right {
        padding-right: 50px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 30px 15px;
        -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
                transform: translateX(-100%);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
    }

    .navbar-nav li {
        margin-right: 0;
        margin-bottom: 14px;
    }

    .navbar-nav li:last-child {
        margin-bottom: 0;
    }

    .navbar-nav li a {
        background: #E6FCF2;
        width: 100%;
        padding: 0.5rem 1rem !important;
    }

    .navbar-nav li a.active {
        background: var(--color-1);
        color: var(--color-white);
    }

    .navbar-nav li a:before {
        display: none;
    }

    .active-icon {
        display: none;
    }

    .navbar-toggler-icon {
        width: 35px;
        height: auto;
        padding: 0.3rem;
        background: var(--color-1);
        border-radius: 4px;
        color: #fff;
    }

    .navbar-toggler[aria-expanded="true"] .active-icon {
        display: inline-block;
    }

    .navbar-toggler[aria-expanded="true"] .default-icon {
        display: none;
    }

    .navbar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        z-index: 1;
    }

    .navbar-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
    .mb-50 {
  margin-bottom: 30px;
}
 .partner-content {
    padding-left: 30px;
  }
  .features-list li h5 {
  font-size: 14px;
}
.features-icon {
  font-size: 16px;
  min-width: 16px;
  max-width: 16px;
}
.features-list li {
  gap: 6px;
}
  .offer-content h2 {
    font-size: 25px;
  }
  .offer-content {
  padding: 0 30px 30px;
}
.offer-wrapper {
  padding: 15px;
}
.offer-wrapper.left {
  margin-right: -60px;
}
.offer-wrapper.right {
  margin-left: -50px;
}
  .offer-content h2 {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
   .faq-otr .card-header a {
    font-size: 25px;
  }
  .woocommerce .product-details-sec .woocommerce-product-gallery__image a {
  height: 380px;
}
  .product-details-sec .product_title {
    font-size: 25px;
  }
    .product-details-sec .price {
    font-size: 16px !important;
  }
   .product-details-sec div.summary {
    padding-left: 0;
  }
  .product-highlights {
    gap: 20px;
    padding: 13px 20px;
    justify-content: center;
  }
  .product-highlights li {
    width: auto;
  }
  .logo-innr {
  margin-bottom: 26px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.step-content h3 {
  font-size: 19px;
  margin-bottom: 5px;
}
.step-content p {
  font-size: 13px;
}
.step-icon {
  width: 75px;
  height: 75px;
  margin-left: 25px;
  margin-right: 25px;
  padding: 10px;
}
.step-content {
 max-width: 235px;
}
.steps-wrapper {
  min-height: 308px;
}
 .gift-otr.reverse .gift-content {
    padding-right: 30px;
  }
    .gift-otr.reverse .gift-innr:nth-child(2n) .gift-content {
    padding-left: 30px;
  }
  .gift-content p {
  margin-bottom: 20px;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  min-height: 472px;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100% !important;
  padding: 20px!important;
  margin-bottom: 30px!important;
}
 .wc-block-cart__sidebar {
    margin-bottom: 0!important;
 }
 .wc-block-components-sidebar {
    padding: 20px!important;
 }
 .wc-block-components-totals-wrapper {
  border-top: 0!important;
 }
  .wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title {
    display: block!important;
  }
  .wc-block-cart table.wc-block-cart-items, .wc-block-cart table.wc-block-cart-items td, .wc-block-cart table.wc-block-cart-items th {
  margin: 0 0 20px!important;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  padding-bottom: 0;
  border-bottom: 0;
}
}

@media only screen and (max-width: 767px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.1;
    }

    .explore-collection-img {
        height: 370px;
        width: 280px;
    }

    .star-2 {
        width: 82px;
    }

    .star-1 {
        width: 56px;
    }

    h2 {
        font-size: 25px;
    }

    .gift-left {
        position: static;
    }

    .gift-content {
        height: 330px;
    }

    .gift-content {
        height: auto;
        padding: 30px 0 0;
        text-align: center;
    }

    .gift-innr:nth-child(2n) .gift-content {
        padding-right: 0;
    }

    .gift-innr {
        margin-bottom: 40px;
    }

    .gift-innr:last-child {
        margin-bottom: 0;
    }

    .gift-otr {
        padding: 50px 0;
    }

    .customer-left,
    .customer-right {
        text-align: center;
    }

    .customer-bottom p,
    .customer-bottom h6 {
        font-size: 16px;
    }

    .customer-bottom p {
        margin-bottom: 20px;
    }

    .shape {
        width: 30px;
        margin: 0 auto 20px;
    }

    .footer-top {
        text-align: center;
    }

    .ft-menu li,
    .ft-menu li a {
        font-size: 13px;
    }

    .ft-hdr {
        margin-bottom: 10px;
    }

    .ft-logo {
        max-width: 170px;
    }

    .social-menu {
        margin-top: 20px;
    }

    .social-menu li a {
        font-size: 19px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .ft-menu.flex li {
        width: 100%;
        text-align: left;
    }

    .ft-menu.flex {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

    .ft-menu.flex li address {
        margin-bottom: 0;
    }

    .ft-innr {
        margin-bottom: 30px;
    }

    .ft-innr:last-child {
        margin-bottom: 0;
    }

    .ft-innr:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .ft-innr:nth-child(1) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .ft-innr:nth-child(3) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .social-menu {
        margin-top: 12px;
    }

    .footer-top {
        padding: 30px 0;
    }

    .explore-right {
        position: static;
    }

    .explore-left {
        height: auto;
        text-align: center;
        padding-top: 50px;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom ul {
        gap: 2px 7px;
    }

    .gift-sec.about-sec .gift-content {
        height: auto;
    }

    .gift-sec.about-sec .gift-img {
        height: 330px;
    }

    .inner-banner {
        padding: 30px 0 20px;
    }
    .sort-list {
  margin-bottom: 30px;
  gap: 15px;
}
.pagination-wrapper li a {
    height: 50px;
    font-size: 17px;
}
.pagination-wrapper li:last-child a {
  width: 80px;
  font-size: 15px;
}
.pagination-wrapper {
  margin-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.news-details-hdr {
  margin-bottom: 15px;
}
.news-details-list {
  margin-bottom: 24px;
}
.news-details-content h3 {
  font-size: 17px;
}
.news-details-content h2 {
  margin-bottom: 15px;
}
.features-innr {
  margin-bottom: 30px;
}
.features-innr:last-child {
    margin-bottom: 0;
}
 .offer-wrapper.left {
    margin-right: 0;
  }
   .offer-wrapper.right {
    margin-left: 0;
  }
  .offer-wrapper.no-border {
  background: rgba(221, 238, 232, 1);
  padding: 15px;
}
.mt-50 {
  margin-top: 30px;
}
.offer-innr {
    margin-bottom:20px;
}
.offer-innr:last-child {
    margin-bottom: 0;
}
.partner-img {
  height: 350px;
}
.partner-content {
  height: auto;
  padding-left: 0;
  text-align: center;
  padding: 30px 0 0;
}
.partner-left {
  position: static;
}
.join-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.mb-center {
    text-align: center;
}
.mb-center .btn {
    margin-left: auto;
    margin-right: auto;
}
.offer-content h2 { 
    text-align: center;
}
.product-details-sec.common-gap.pt-50 {
    padding-top: 20px;
}
 .steps-wrapper {
    min-height: auto;
    padding-top: 0;
  }
  .step-content {
  position: static;
  max-width: 100%;
}
.steps {
  background: transparent;
  padding: 0;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.steps .step {
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.step-icon {
    margin-bottom: 20px;
}
 .gift-otr.reverse .gift-content {
    padding-right: 0;
    padding: 20px 15px 0;
  }
   .gift-otr.reverse .gift-innr:nth-child(2n) .gift-content {
    padding-left: 0;
    padding: 20px 15px 0;
  }
  .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  min-height: auto;
}
.woocommerce form.login {
    margin-bottom: 30px;
}
.linear-back.back-100::after {
  top: -79%;
}
.woocommerce .woocommerce-customer-details address {
    min-height:auto;
}
.woocommerce-column--billing-address {
    margin-bottom: 30px;
}
.woocommerce-column--billing-address:last-child {
    margin-bottom: 0;
}
.woocommerce ul.order_details li {
    margin-bottom: 20px;
}
.is-mobile .wc-block-components-form .wc-block-components-checkout-step::after, .is-small .wc-block-components-form .wc-block-components-checkout-step::after {
    box-shadow: none!important;
}
.woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
}
.woocommerce-button.button.view {
  margin-right: 10px;
}
.woocommerce-Address {
    margin-bottom: 20px;
}
.woocommerce-Address:last-child {
    margin-bottom: 0;
}
.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
  width: 100%;
}
.step-icon::before {
    display: none;
}
.linear-back::after {
    top: -54%;
}
}

@media only screen and (max-width: 575px) {
    .common-gap {
        padding: 40px 0;
    }

    .explore-left {
        padding-top: 40px;
    }

    .explore-right {
        padding-left: 20px;
    }

    .shop-slider .slick-prev,
    .shop-slider .slick-next {
        width: 50px;
        height: 50px;
    }

    .shop-slider .slick-prev {
        left: -60px;
    }

    .shop-slider .slick-next {
        right: -60px;
    }

    .shop-slider {
        padding-bottom: 60px;
    }

    .product-innr {
        text-align: center;
    }

    .product-content p {
        min-height: auto;
    }

    .common-gap.pt-50 {
        padding-top: 40px;
    }
     .woocommerce .product-details-sec .woocommerce-product-gallery__image a {
    height: 320px;
  }
  .wc-block-components-totals-coupon__form {
    flex-direction: column;
    gap: 15px;
  }
  .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input {
  flex: auto!important;
}
.woocommerce-info .button.wc-forward {
    margin-top: 15px;
}

}

@media only screen and (max-width:480px) {
    .bannerimg {
        height: 332px;
    }

    h1 {
        font-size: 30px;
    }

    .shop-content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        gap: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .otr-pic {
        height: 300px;
    }

    .explore-collection-img {
        height: 300px;
        width: 210px;
    }

    .star-2 {
        width: 58px;
    }

    .star-1 {
        width: 39px;
    }

    .gift-img {
        height: 260px;
    }

    .newsletter-wrapper form.mailpoet_form  {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .email-input input{
        width: 100%;
    }

    .gift-sec.about-sec .gift-img {
        height: 260px;
    }
    .partner-img {
  height: 270px;
}
  .faq-otr .card-header a {
    font-size: 21px;
  }
  .faq-otr .card {
  margin-bottom: 20px;
}
.linear-back.back-100::after {
  top: -87%;
}
.newsletter-wrapper form.mailpoet_form {
    text-align: center;
}
.newsletter-wrapper form.mailpoet_form .newsletter-submit input {
    margin: auto!important;
}
.linear-back::after {
    top: -58%;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
  font-size: 0.9rem;
}
.woocommerce .woocommerce-breadcrumb {
  padding: 20px 0;
}
}

@media only screen and (max-width:420px) {
    .button-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }
    .sort-list select.category-list, .sort-list .select:first-child {
  width: 100%;
}
.sort-list select.size-list, .sort-list .select:last-child {
  width: 100%;
}
.sort-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}
 .news-img {
    height: 230px;
    margin-bottom: 20px;
  }
  .news-content h3 {
  margin-bottom: 15px;
}
.news-date li {
  font-size: 14px;
  margin-bottom: 12px;
}
.news-content p {
  margin-bottom: 20px;
}
.news-details-list li {
  font-size: 13px;
}
.woocommerce .product-details-sec form.cart .button {
    max-width: 100%;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  padding-left: 16px!important;
}
}
.step-icon:after{
    content:'';
    position: absolute;
    border-radius: 100%;
    width: 110px;
    height: 110px;
    border: 2px solid transparent; /* Define a transparent border first */
    background: linear-gradient(to bottom, #000 50%, #fff 50%) border-box; /* example */
      -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0); /* example */
      -webkit-mask-composite: xor; /* example */
      mask-composite: exclude;
}
.step:nth-child(2n) .step-icon:after{
    background: linear-gradient(to top, #000 52%, #fff 48%) border-box;
}
.step-icon{
    position: relative;
}
.step-icon:before, .step:first-child:after {
    content: '';
    position: absolute;
    border-top: 2px solid #000;
    width: 43px;
    right: -55px;
    top: calc(50% - 2px);
}
.step:first-child:after{
    left: 8px;
    right:0
}
.step:first-child:before, .step:last-child:before {
    content: '';
    position: absolute;
    border-radius: 100%;
    background: #000;
    border: 0;
    height: 10px;
    width: 10px;
    left:0;
    top: calc(50% - 6px);
}
.step:last-child:before{
    left: auto;
    right: 0px;
}



@media only screen and (max-width: 991px) {
    .step-icon:after {
        width: 96px;
        height: 96px;
    }
    .step-icon:before {
        width: 32px;
        right: -44px;
    }
    .step:first-child:after {
        width: 38px;
    }
    .step:last-child .step-icon:before {
        width: 36px;
        right: -50px;
    }

}

@media only screen and (max-width: 767px) {
    .step:first-child:before, 
    .step:last-child:before, .step:first-child:after{
        display: none;
    }
    .step-icon:after, .step:nth-child(2n) .step-icon:after{
        background: linear-gradient(to bottom, #000 50%, #000 50%) border-box;
    }
}