/*!
Theme Name: Ilika Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ilika-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Ilika Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/


:root {
    --font-150: 150px;
    --font-72: 72px;
    --font-48: 48px;
    --font-34: 34px;
    --font-24: 24px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-14: 14px;

    --primary-color: linear-gradient(90deg, rgba(54, 125, 89, 0.8) 0%, rgba(10, 55, 118, 0.7) 100%);
    --btn-color: linear-gradient(90deg, #367D59 0%, #0A3776 100%);
    --btn-orange: linear-gradient(90deg, #F08B42 0%, #ECB613 100%);
    --white-color: #fff;
    --green-color: #367d59;
    --light-green: #C9E8D9;
    --black-color: #1c1917;
    --orange-color: #F08B42;
    --cream-color: #F4ECE180;
    --light-cream-color: #FDF0E74D;
    --gray-color: #78726D;
}

* {
    box-sizing: border-box;
}

body,
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 	overflow-x: hidden; */
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    color: var(--gray-color);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: 1.625;
    background: var(--white-color);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 20px 0;
}

p:last-child {
    margin: 0;
}

a {
    color: var(--black-color);
    text-decoration: none;
    transition: 0.5s all;
}

a:hover {
    color: var(--green-color);

}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    margin: 0;
    font-weight: 700;
    line-height: 1;
}

section {
    padding: 80px 0;
    position: relative;
}

section.pt-0 {
    padding-top: 0 !important;
}

section.pb-0 {
    padding-bottom: 0 !important;
}

section.p-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

input,
textarea,
select {
    font-family: "Inter", sans-serif;
    font-size: var(--font-16);
    font-weight: 400;
    color: var(--gray-color);
    line-height: 1.2;
    padding: 15px;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background: var(--white-color);
    width: 100%;
    border: 1px solid #E2E8F0;
}

::placeholder {
    color: 6B7280;
}

select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23000000" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>');
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center right 15px;
    min-width: 160px;
}

.wpcf7-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 30px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto 0 auto auto;
}

.button {
    font-size: var(--font-16);
    padding: 15px 32px;
    line-height: 1;
    background: var(--btn-color);
    text-decoration: none;
    font-weight: 600;
    color: var(--white-color);
    display: inline-block;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    border: none;
    border-radius: 10px;
    text-transform: capitalize;
    min-width: 150px;
    text-align: center;
}


.button:hover {
    background: linear-gradient(90deg, #0A3776 0%, #367D59 100%);
    ;
    color: var(--white-color);
}

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

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    max-width: 1440px;
    padding: 0 20px;
}
.wrapper.big {
    max-width: 1740px;
}

.heading-group {
    margin-bottom: 30px;
}

.intro-description {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.d-none {
    display: none;
}

/*  */
header.site-header {
    padding: 16px 0;
    border-bottom: 1px solid #E5E0DC;
    box-shadow: 0px 1px 2px 0px #0000000D;
}

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

.site-branding {
    margin: 0 auto;
}

.site-branding img {
    max-width: 220px;
    /* width: 200px; */
}

/* ul.menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

ul.menu li:not(:last-child) {
    margin-right: 50px;
}

ul.menu li a {
    font-weight: 500;
} */

.site-header .button {
    box-shadow: 0px 4px 6px -1px #0000001A;
    background: #25D366;
	margin-right: 50px;
}

.site-header .button:hover {
    background: var(--green-color);
}

/* TOGGLE */
.toggle {
    display: flex;
    flex-direction: column;
}

.main-navigation {
    right: -100%;
    width: 100%;
    background: var(--white-color);
    height: auto;
    position: fixed;
    z-index: 99;
    overflow-x: auto;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
    display: block;
    bottom: 0;
    max-width: 300px;
    padding-top: 165px;
    top: 0;
    /*! border-left: 1px solid #367d59; */
    box-shadow: 0 0 5px 0 #ccc;
}

.main-navigation.active {
    right: 0;
}

ul.menu li {
    margin: 0 !important;
    width: 100%;
    border-bottom: 1px solid #367d59;
}

ul.menu li a {
    font-weight: 600;
    font-size: var(--font-18);
    padding: 15px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.menu .current-menu-item a {
    color: #367d59;
}

.toggle {
/*     display: none; */
    z-index: 99;
    cursor: pointer;
}
.bar {
	width: 34px;
	height: 3px;
	background-color: var(--green-color);
	margin: 3px 0;
	display: inline-block;
	margin-left: auto;
	border-radius: 5px;
	transition: all ease-in-out 0.3s;
	-webkit-transition: all ease-in-out 0.3s;
	-moz-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	cursor: pointer;
	z-index: 99;
}

.bar:first-child {
	width: 24px;
}

.bar:last-child {
	width: 17px;
}

span.bar.animate.bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
	width: 34px;
}

span.bar.animate.bar:nth-child(2) {
	opacity: 0;
}

span.bar.animate.bar:nth-child(3) {
	transform: rotate(45deg) translate(-7px, -8px);
	width: 34px;
} 
/*  */
.bg-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

.bg-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

span.overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
}

.banner-wrap {
    width: 57%;
    margin: 0 auto;
    color: var(--white-color);
    text-align: center;
}

section.hero-banner {
    padding: 200px 0 250px;
}

.title {
    font-size: var(--font-72);
}

.heading-group span {
    color: var(--orange-color);
}

.banner-wrap .intro-description {
    color: var(--light-green);
    font-size: var(--font-24);
}

.btn-group .button:first-child {
    margin-right: 18px;
}

.button.white {
    background: var(--white-color);
    color: var(--green-color);
}

.button.white:hover {
    background: var(--orange-color);
    color: var(--white-color);
}

section.hero-banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 90px;
    width: 100%;
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

/*  */
.story-wrap {
    text-align: center;
    width: 63%;
    margin: 0 auto;
}

section.story-section {
    background: var(--cream-color);
}

h2.heading {
    font-size: var(--font-48);
    color: var(--green-color);
}

.button.orange {
    background: var(--btn-orange);
}

.button.orange:hover {
    transform: scale(1.05);
}

/*  */
.cta-wrap {
    width: 63%;
    margin: 0 auto;
}

section.cta-section {
    background: var(--btn-color);
    color: var(--white-color);
}

.cta-wrap h2.heading {
    color: var(--white-color);
}

.cta-wrap .intro-description {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* .cta-wrap .button:last-child {
    background: var(--orange-color);
} */
/*  */
footer.site-footer {
    padding: 60px 0;
    background: var(--green-color);
    color: var(--white-color);
    padding-top: 170px;
    padding-bottom: 60px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: end;
    margin-bottom: 30px;
    padding-bottom: 60px;
    border-bottom: 1px solid #ccc;
}

.footer-block:first-child,
.footer-block:last-child {
    min-width: auto;
}

.footer-block {
    max-width: 340px;
/*     min-width: 250px; */
}

.footer-block .site-branding {
    width: fit-content;
    margin: 0;
}

.footer-block .site-branding img {
    border-radius: 130px;
}

.site-footer a {
    color: var(--white-color);
}

.footer-description {
    margin: 30px 0;
}

ul.social-link {
    display: inline-flex;
}

ul.social-link li:not(:last-child) {
    margin-right: 24px;
}

h2.footer-heading {
    font-size: var(--font-24);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-bot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

ul.privacy-menu {
    display: flex;
    flex-wrap: wrap;
}

ul.privacy-menu li:not(:last-child) {
    margin-right: 24px;
}

ul.footer-menu li:not(:last-child) {
    margin-bottom: 10px;
}

.contact {
    display: flex;
    align-items: flex-start;
}

.contact i {
    margin-top: 6px;
    margin-right: 12px;
    color: var(--orange-color);
}

.contact span {
    display: block;
    font-size: var(--font-14);
    color: var(--light-green);
    margin-top: 4px;
}

.contact:not(:last-child) {
    margin-bottom: 16px;
}

.site-footer a:hover {
    color: var(--orange-color) !important;
}

/*  */
/* .tab-content {
    display: none;
}

.active-tab {
    display: block;
} */
.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -8px;
    margin-bottom: 30px;
}

.product-top {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.tab-heading {
    padding: 8px;
}

.tab-heading .button {
    border: 1px solid #367d59;
    background: transparent;
    color: var(--green-color);
}

.tab-heading .button.active,
.tab-heading .button:hover {
    background: var(--green-color);
    color: var(--white-color);
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.product-block {
    width: 33.33%;
    margin: 15px 0;
    padding: 0 15px;
}

h3.heading {
    font-size: var(--font-20);
    color: var(--black-color);
}

.product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-inner {
    border: 1px solid #E5E0DC;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
}

.product-img img {
    border-radius: 12px 12px 0 0;
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.product-img {
    position: relative;
    padding-top: 80%;
}

.product-details .button {
    width: 100%;
    background: #25D366;
    border: 1px solid #25D366;
    margin-top: auto;
    z-index: 1;
}

.product-details .button:hover {
    color: #25D366;
    background: transparent;
    border: 1px solid #25D366;
}

.product-details .button i {
    margin-right: 12px;
}

.price {
    display: block;
    color: var(--green-color);
    margin: 14px 0;
    font-size: var(--font-20);
    font-weight: 600;
}

.btn-group {
    display: flex;
    justify-content: center;
}

/*  */
section.why-choose-section {
    background: linear-gradient(90deg, #F7F5F3 0%, rgba(244, 236, 225, 0.3) 100%);
}

.choose-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -15px;
}

.choose-block {
    width: 20%;
    margin: 15px 0;
    padding: 0 15px;
    text-align: center;
}

.icon {
    width: 64px;
    height: 64px;
    background: var(--green-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

h3.choose-heading {
    margin: 12px 0;
    color: var(--green-color);
    font-size: var(--font-24);
}

.choose-block p {
    font-size: var(--font-16);
}

/*  */

section.testi-section {
    background: #F4ECE14D;
}

.testi-row {
    display: flex;
    flex-wrap: wrap;
    /*     margin: -15px; */
}

.testi-block {
    /* width: 25%; */
    /* margin: 15px 0; */
    /* padding: 0 15px; */
    height: 100%;
}

.testi-inner {
    background: var(--white-color);
    border: 1px solid #E5E0DC;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E0DC;
}

h5.client-name {
    font-size: var(--font-18);
    color: var(--green-color);
    margin-bottom: 6px;
}

h6.designation {
    font-size: var(--font-16);
    color: var(--gray-color);
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.review {
    font-style: italic;
}

.testi-slider .slick-slide {
    height: 100%;
    padding: 0 15px;
}

.testi-slider .slick-slide>div {
    height: 100%;
}

.testi-slider .slick-track {
    height: 100%;
    display: flex;
}

.testi-slider .slick-list {
    display: flex;
    height: auto;
    margin: 0 -15px;
}

/*  */
.accordian-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordian {
    background: #FFFFFF01;
    border-radius: 12px;
    border: 1px solid #E5E0DC;
    padding: 16px 25px;
    box-shadow: 0px 2px 12px -2px #1C191714;
    cursor: pointer;
}

span.icon-arrow i {
    transition: 0.5s all;
    margin-left: 10px;
    color: var(--green-color);
}

.accordian-heading h6 {
    font-size: var(--font-20);
    color: var(--green-color);
}

.accordian:not(:last-child) {
    margin-bottom: 20px;
}

.faq-wrap {
    margin: 0 auto;
    width: 65%;
    margin-bottom: 50px;
}

.accordian-content {
    display: none;
    padding-top: 12px;
}

.product-btn {
    margin-top: 50px;
}

/*  */
.trending-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: -30px;
}

span.sale {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--orange-color);
    color: var(--white-color);
    border-radius: 50px;
    margin-top: 16px;
    margin-left: 16px;
    padding: 5px 16px;
    font-size: var(--font-16);
}

section.trending-section {
    background: var(--light-cream-color);
}

.slick-next,
.slick-prev {
    position: unset;
    border: 1px solid #E5E0DC;
}

button.slick-arrow {
    background: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-prev:before {
    content: '\f104';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: #1C1917;
    opacity: 1;
    font-size: var(--font-18);
    transition: 0.5s all;
}

.trending-row .slick-slide {
    height: 100%;
    /* padding:0 15px; */
}

.trending-row .slick-slide>div {
    height: 100%;
}

.trending-row .slick-track {
    height: 100%;
    display: flex;
}

.trending-row .slick-list {
    display: flex;
    height: 100%;
    margin: 0 -15px;
}

.trending-row .product-block {
    height: 100%;
    /* margin:0; */
    /* padding:0; */
}

.slick-next:before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    color: #1C1917;
    opacity: 1;
    font-size: 18px;
    transition: 0.5s all;
}

.trending-row .slick-list.draggable {
    order: 3;
}

button.slick-prev.slick-arrow {
    margin-left: auto;
    margin-right: 8px;
}

.slick-next:hover,
.slick-prev:hover,
.slick-next:hover :before,
.slick-prev:hover :before {
    background: transparent;
}

.icon img {
    width: 32px;
}

/* Inner-banner */

section.inner-banner {
    background: var(--cream-color);
    color: var(--black-color);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumbs i {
    font-size: var(--font-16);
    margin: 0 4px;
}

section.inner-banner a:hover {
    color: var(--orange-color);
}

.inner-banner-wrap .title {
    color: var(--green-color);
}

/*  */
.contact-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -20px;
}

.contact-wrap-block {
    width: 50%;
    margin: 20px 0;
    padding: 0 20px;
}


.contact-info {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.contact-block {
    width: 50%;
    margin: 10px 0;
    padding: 0 10px;
}

.contact-block:last-child {
    width: 100%;
}

.contact-inner {
    padding: 20px 30px;
    background: var(--cream-color);
    border-radius: 20px;
    border: 1px solid #FFFFFF0A;
    height: 100%;
    color: var(--black-color);
}

.contact-inner .contact a:hover {
    background: var(--primary-color);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact label {
    display: block;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
    font-size: var(--font-20);
}

.contact-inner .contact {
    display: block;
}

.contact-inner i {
    font-size: var(--font-24);
    margin: 0 0 8px 0;
    color: var(--green-color);
    /* color: #1c1917; */
}

.map {
    position: relative;
    padding-top: 40%;
}

.map iframe {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.form-rows {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.form-cols {
    width: 50%;
    margin: 10px 0;
    padding: 0 10px;
}

.form-cols:last-child {
    width: 100%;
}

.form-btn {
    margin-top: 12px;
    position: relative;
    width: 100%;
}

textarea {
    height: 180px;
}

/*  */
.aboutus-img {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: -15px;
}

.img-block {
    width: 50%;
    margin: 15px 0;
    padding: 0 15px;
}

.image {
    position: relative;
    padding-top: 70%;
}

.image img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.img-block .image:first-child {
    margin-bottom: 20px;
}

.img-block:first-child .image:last-child {
    margin-left: auto;
    width: 50%;
    padding-top: 40%;
}

.img-content {
    margin-bottom: 20px;
    padding: 40px;
    background: var(--green-color);
    width: 75%;
    border-radius: 20px;
    color: #fff;
    text-align: left;
}

.img-content .heading {
    font-size: var(--font-34);
    margin-bottom: 10px;
}

.img-block:last-child .image {
    padding-top: 55%;
}

/* Testimonial-page */
.testimonial-section .testi-row {
    margin: -15px;
}

.testimonial-section .testi-block {
    width: 50%;
    margin: 15px 0;
    padding: 0 15px;
    height: unset;
}

.testimonial-section .testi-inner {
    background: #F4ECE14D;
}

/*  */
.faq-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    justify-content: space-between;
}

.faq-left-block {
    width: 30%;
    margin: 15px 0;
    padding: 0 15px;
}

.faq-right-block {
    width: 65%;
    margin: 15px 0;
    padding: 0 15px;
}

.faq-block .heading-group {
    margin-bottom: 16px;
}

.faq-contact-block>div {
    padding: 20px;
    background: var(--green-color);
    display: flex;
    align-items: center;
    color: #fff;
    flex-wrap: wrap;
    border-radius: 50px;
    padding: 0 30px;
}

.faq-contact-block:not(:last-child) {
    margin-bottom: 28px;
}

.faq-contact-block>div a {
    color: var(--white-color);
}

.faq-contact-block i {
    padding: 20px;
    border-right: 1px solid #fff;
    margin-right: 20px;
    padding-left: 0;
}

.faq-block .heading {
    color: var(--black-color);
    font-size: var(--font-24);
}

/*  */
.product-filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin-bottom: 30px;
    /* font-size: 17px; */
    border-top: 1px solid #eee;
}

.product-filters-bar .filter-by,
.product-filters-bar .sort-by {
    display: flex;
    align-items: center;
    /* margin-right: 6px; */
}

/* .product-filters-bar select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}
 */
.product-filters-bar label {
    display: block;
    margin-right: 6px;
}

.product-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
}

ul.products {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

li.product {
    width: 33.33%;
    margin: 15px 0;
    padding: 0 15px;
}

h2.woocommerce-loop-product__title {
    font-size: var(--font-20) !important;
    color: var(--black-color) !important;
    margin: 0 !important;
    text-decoration: none !important;
    text-align: left !important;
}

.product-inner>a {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/*  */
.single-product-page .product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-product-page .woocommerce-product-gallery {
    width: 50%;
}

.single-product-page .entry-summary {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.product_title {
    font-size: var(--font-34);
    /* margin-bottom: 10px; */
    color: #2c3c28;
}

p.price {
    /* margin-bottom: 18px; */
    font-weight: 700;
}

.woocommerce-product-details__short-description {
    margin-bottom: 30px;
    border-top: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
    padding: 20px 0;
}

.woocommerce-notices-wrapper:empty {
    display: none;
}

.single-product-page .woo-variation-product-gallery {
    width: 55%;
    max-width: unset !important;
    margin-bottom: 0;
}

.summary.entry-summary .button {
    width: 100%;
    background: #25D366;
    border: 1px solid #25D366;
    z-index: 1;
}

.summary.entry-summary .button i {
    margin-right: 12px;
}

.product_meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    font-size: var(--font-18);
}

.summary.entry-summary .button:hover {
    color: #25D366;
    background: transparent;
    border: 1px solid #25D366;
}

section.related.products {
    width: 100%;
    padding-bottom: 0;
}

.related.products h2 {
    margin-bottom: 50px;
    text-decoration: underline;
    text-transform: capitalize;
    color: var(--black-color);
    font-size: var(--font-48);
    text-align: center;
}

/*  */
.select2-container .select2-selection--single .select2-selection__rendered {
    font-family: "Inter", sans-serif;
    font-size: var(--font-16);
    font-weight: 400;
    color: var(--gray-color) !important;
    line-height: 1.2 !important;
    padding: 15px !important;
    border-radius: 8px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    background: var(--white-color);
    width: 100%;
    border: 1px solid #E2E8F0;
    display: inline;
}

.select2-container--default .select2-selection--single {
    background: transparent;
    border: none !important;
    border-radius: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    min-width: 200px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: none;
}

span.select2.select2-container.select2-container--default.select2-container--above.select2-container--focus {
    display: none;
}

.woocommerce .select2-hidden-accessible {
    clip: unset !important;
    height: unset !important;
    margin: unset !important;
    overflow: unset !important;
    position: unset !important;
    width: 100% !important;
    border: 1px solid #ccc !important;
    padding: 15px !important;
}

/* span.selection {
    display: none;
}
 */
span.select2.select2-container.select2-container--default {
    display: block;
    line-height: 1;
}

select#product_cat {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24" style="enable-background:new 0 0 512 512" xml:space="preserve" class="hovered-paths"><g><path d="M12 16a1 1 0 0 1-.71-.29l-6-6a1 1 0 0 1 1.42-1.42l5.29 5.3 5.29-5.29a1 1 0 0 1 1.41 1.41l-6 6a1 1 0 0 1-.7.29z" data-name="16" fill="%23000000" opacity="1" data-original="%23000000" class="hovered-path"></path></g></svg>') !important;
    background-size: 20px !important;
    background-repeat: no-repeat !important;
    background-position: center right 15px !important;
    min-width: 300px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none !important;
}

.product-name {
    margin-bottom: 14px;
}

.product-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #25d366;
    padding: 10px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    line-height: 1;
}

span.name {
    display: block;
    color: #ffffff;
    font-weight: 700;
}

.product-btn-group a:not(:last-child) {
    margin: 0 20px;
}

.product-btn-group a i {
    font-size: var(--font-24);
}

.product-btn-group a i {
    color: #ffffff;
    transition: 0.5s all;
}

.product-btn-group a:last-child i {
    color: #fdfdfd;
}

.product-btn-group a:hover i {
    color: rgba(255, 105, 0, 1);
}

span.price {
    display: none;
}

h2.woocommerce-loop-product__title {
    margin-bottom: 14px !important;
}

p.price {
    display: none;
}

.woocommerce-product-details__short-description {
    margin-top: 30px;
}

.banner-wrap .intro-description {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* 404 */
.banner-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.banner-content {
    width: 46.5517241%;
}

.banner-image {
    width: 49.876847%;
}

.banner-image img {
    max-width: unset;
    width: 50vw;
    float: left;
    height: 100%;
}

.error-heading {
    margin-bottom: 30px;
    font-size: var(--font-150);
    color: var(--green-color);
}

h3.page-title {
    margin-bottom: 20px;
    color: var(--black-color);
    font-size: var(--font-34);
}

.error-404 p {
    font-size: var(--font-16);
}

.woocommerce-product-details__short-description ul {
    padding-left: 20px;
    list-style: disc;
	margin-bottom:20px;
}

.woocommerce-product-details__short-description ul li:not(:last-child) {
    margin-bottom: 8px;
}

.single-product-page .woo-variation-product-gallery .woo-variation-gallery-thumbnail-position-left-bottom.woo-variation-gallery-product-type-simple.wvg-loaded {
    position: sticky !important;
    top: 50px;
    position: -webkit-sticky;
}

/* INSTA  */
/* Instagram feed auto slider - FREE VERSION */

.insta-feed {
    margin-bottom: -150px;
}

#sb_instagram .sbi_photo img {
    border-radius: 15px;
    aspect-ratio: 4/5;
    height: 100% !important;
	object-position:top center;
}

/* SHOP PAGE */
.shop-by-list .woocommerce-loop-category__title .count {
    display: none;
}

.woocommerce-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
}

.shop-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.left-part {
    width: 23%;
}

.shop-by-list,
.right-part ul.products {
/*     position: sticky;
    position: -webkit-sticky;
    top: 30px; */
    padding: 10px 0;
    border: 1px solid;
    border-radius: 10px;
}

section.product-main-row {
    overflow: unset;
}

.right-part {
    width: 75%;
    /*! display: flex; */
    /*! flex-wrap: wrap; */
    /*! justify-content: space-between; */
    /*! height: 100%; */
}

.woocommerce-notices-wrapper {
    width: 100%;
}

form.woocommerce-ordering {
    width: 30%;
}

.right-part ul.products {
    /*     width: 100%; */
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    border: 0;
    padding: 0;
    top: 20px;
}

.right-part ul.products li {
    width: 33.33%;
    padding: 0 10px;
    margin: 10px 0;
    position: relative;
}

.product-page-link {
    position: absolute;
    inset: 0;
}

.shop-by-list .parent a {
    color: var(--black-color);
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 100%;
    /* padding: 10px; */
    /* border-bottom: 1px solid; */
}

/* .shop-by-list .parent > a:after , */
.child-category li a:after {
    content: " \f105";
    font-family: 'FontAwesome';
    margin-left: 5px;
}

.shop-by-list .parent {
    width: 100%;
    text-align: left;
}

.shop-by-list .parent a img {
    display: none;
}

.woocommerce-Tabs-panel ul:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
}

.wc-tab strong {
    color: #000;
}

.parent>a,
.woocommerce-loop-category__title {
    font-size: var(--font-20);
    font-weight: 500;
    padding: 10px;
}

.parent.active>a,
.parent:hover>a,
.child-category li.active>a,
.child-category li:hover>a {
    background: var(--primary-color);
    color: var(--white-color);
}

.right-part .whatsapp-button.button {
    justify-content: center;
}

.right-part .woocommerce-loop-product__title {
    font-size: var(--font-20);
    margin-bottom: 0;
    color: var(--primary-color);
}


.right-part ul.products li>div {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.right-part ul.products li .product-top {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-by-list h2.heading {
    font-size: var(--font-34);
    padding: 10px;
}

.child-category {
    /* list-style: disc; */
    padding-left: 20px;
    margin-top: 5px;
}

.child-category li a {
    padding: 5px;
}
/*  */
/* FULL WIDTH FIX */
#sbi_images {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    height: 100%;
    position: relative;
}

/* Remove Smash Balloon float layout */
#sbi_images .sbi_item {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    height: 100%;
}

/* Slick internal fix */
#sbi_images .slick-track {
    display: flex !important;
    height: auto;
}

/* spacing between slides */
#sbi_images .slick-slide {
    padding: 0 10px;
    height: 100%;
}

/* prevent height collapse */
#sbi_images .slick-slide > div {
    height: 100%;
}

#sb_instagram .sbi_photo {
  height: 100% !important;
}
.insta-images {
  height: 100%;
  position: relative;
}
#sb_instagram {
  padding: 0 !important;
  height: 100%;
  position: relative;
}
#sb_instagram .slick-next{
   direction: none;
}
#sb_instagram .slick-prev{
    direction: none;
}

.wp-block-heading {
	margin-bottom: 12px;
	color:var(--black-color);
}

ul.wp-block-list {
	padding-left: 30px;
	list-style: disc;
	margin-bottom: 12px;
}

ul.wp-block-list li:not(:last-child) {
	margin-bottom: 8px;
}
.wp-block-separator {
    border-top: 2px solid rgb(54 125 89 / 50%);
    margin: 20px 0;
}

.image video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
}
.goal-list li {
    padding: 0 10px;
}

.goal-list {
  position: relative;
}
.goal-list .slick-prev {
  margin-right: 0 !important;
  position: absolute;
  z-index: 1;
  margin-left: 8px !important;
}
.goal-list .slick-arrow {
  position: absolute;
}
.goal-list .slick-next {
  z-index: 1;
  margin-right: 8px !important;
}
.custom-stock {
    font-weight: 600;
    margin-top: 5px;
/*     position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    background: var(--white-color);
    border-radius: 50px;
    margin-right: 5px; */
    font-size: var(--font-14);
}

.in-stock {
    color: #1e7e34;
}

.out-of-stock {
    color: #dc3545;
}
/* FOOTER */
.social-media {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -00%);
}

ul.social-links li {
    margin-bottom: 5px;
    position: relative;
}

ul.social-links li a {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1877F2;
    font-size: 15px;
    color: #FFF;
    border-radius: 0;
    position: relative;
    transition: 0.5s all;
    right: -70%;
}
ul.social-links {
    display: inline-block;
}

ul.social-links li:nth-child(2) a {
    background: #E4405F;
}
ul.social-links li:nth-child(3) a {
    background: #25d366;
}

.social-heading {
    padding-left: 20px;
}

ul.social-links li a:hover {
	color: #fff !important;
    right: 0%;
    border-radius: 50px 0 0px 50px;
}
.product-category a[href="49"]{
pointer-events:none;
cursor:default;
}

.contact-number {
  display: flex;
}
.contact-number p {
  margin-right: 5px;
}