a,
a:active,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  color: #111111;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.01em;
  line-height: 1.5em;
}

img {
  width: 100%;
  height: auto;
}

.g25 {
  gap: 25px;
}

.bBtn {
  padding: 10px 15px;
  border-radius: 5px;
}
.bBtn.icon {
  display: inline-flex;
  align-items: center;
}
.bBtn.icon svg {
  width: 15px;
  margin-left: 12px;
}
.bBtn.primary {
  background: var(--primaryClr);
  color: white;
}

.section-title {
  margin-bottom: 40px;
}

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

.section-title h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.primaryLink {
  color: var(--primaryClr);
}

.primary-btn {
  display: block;
  border-radius: 50px;
  text-align: center;
  padding: 12px 0 10px;
  background: var(--primaryClr);
  color: #ffffff;
  font-weight: 700;
}

.dFlex {
  display: flex;
  align-items: start;
  justify-content: start;
}
.dFlex.fww {
  flex-wrap: wrap;
}
.dFlex.fdc {
  flex-direction: column;
}
.dFlex.aic {
  align-items: center;
}
.dFlex.jcc {
  justify-content: center;
}
.dFlex.jcsb {
  justify-content: space-between;
}

.h100 {
  height: 100%;
}

.w100 {
  width: 100%;
}

.tac {
  text-align: center;
}

.cbtn {
  font-size: 14px;
  color: #000;
  background: transparent;
  font-weight: 600;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  position: relative;
  transition: 0.2s ease-in-out;
}
.cbtn.primary {
  background: var(--primaryClr);
  color: #ffffff;
}
.cbtn.primary:hover {
  background: #000;
}
.cbtn.secondary {
  background: #ffffff;
  color: var(--primaryClr);
}
.cbtn.bar {
  padding: 12px 0;
}
.cbtn.bar:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--primaryClr);
  content: "";
}

.flashEffect {
  position: relative;
}
.flashEffect:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: skewX(-25deg);
}
.flashEffect:hover::after {
  animation: shine 1.2s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

#navCon {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
#navCon.fixed {
  position: fixed;
  background: #fff;
  z-index: 5;
}

#heroSection {
  width: 100%;
  height: 92vh;
  background: radial-gradient(circle, rgba(215, 239, 176, 0.5607843137) 0%, #ffffff 85%, transparent 70%, transparent 100%);
}
#heroSection .container {
  position: relative;
}
#heroSection .textContent,
#heroSection .rightSide {
  width: 50%;
}
#heroSection .textContent {
  max-width: 500px;
}
#heroSection .textContent h4 {
  font-size: 14px;
  margin-bottom: 15px;
  color: var(--primaryClr);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 5px;
  border-radius: 2px;
  background: white;
  display: inline-block;
}
#heroSection .textContent h2 {
  font-size: 3.5em;
  margin-bottom: 25px;
  font-weight: 600;
}
#heroSection .textContent p {
  margin-bottom: 35px;
}
#heroSection .tabContent {
  position: absolute;
  right: -15px;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  gap: 10px;
  transform: translate(100%, 0);
}
#heroSection .tabContent button {
  border: none;
  background: transparent;
  opacity: 0.6;
}
#heroSection .tabContent button.active {
  opacity: 1;
}
#heroSection .tabContent img {
  width: 100px;
}
#heroSection .slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
#heroSection .slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
#heroSection .slide {
  width: 100%;
  flex-shrink: 0;
}

#catgorySec {
  padding: 80px 0;
  background: var(--bgClr);
  position: relative;
  overflow: hidden;
}
#catgorySec .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  transform: rotate(200deg) translateX(0%) translateY(30%);
  opacity: 0.4;
}
#catgorySec .gridCon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, 210px);
  gap: 15px;
}
#catgorySec .catItem {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}
#catgorySec .catItem a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}
#catgorySec .catItem .svgIcon {
  width: 80px;
}
#catgorySec .catItem svg {
  transition: 0.3s ease-in-out;
  fill: #000;
}
#catgorySec .catItem p {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  transition: 0.3s ease-in-out;
}
#catgorySec .catItem:hover, #catgorySec .catItem.active {
  background: var(--primaryClr);
}
#catgorySec .catItem:hover p, #catgorySec .catItem.active p {
  color: #fff;
}
#catgorySec .catItem:hover svg, #catgorySec .catItem.active svg {
  fill: #fff;
}

#productSection {
  padding: 50px 0;
  position: relative;
}
#productSection .centerAvocado {
  position: absolute;
  width: 80px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -100%);
  height: auto;
}

#actionSec {
  padding: 50px 0;
}

#featureSec .section-title h4 {
  margin-bottom: 15px;
  font-weight: 700;
}
#featureSec .featureItem {
  padding: 15px 15px 0;
}
#featureSec .featureItem .icon {
  margin-bottom: 15px;
}
#featureSec .featureItem .icon svg {
  width: 80px;
  height: 80px;
  fill: var(--primaryClr);
  transition: 0.2s ease-in-out;
}
#featureSec .featureItem img {
  width: 40px;
  height: auto;
}
#featureSec .featureItem h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: 0.2s ease-in-out;
}
#featureSec .featureItem:hover {
  background: #ffffff;
  box-shadow: 0 0px 20px 0px rgba(191, 191, 191, 0.5803921569);
}
#featureSec .featureItem:hover h5 {
  color: var(--primaryClr);
}
#featureSec .featureItem:hover .icon svg {
  fill: var(--bs-black);
}
#featureSec .featureSecRow {
  display: grid;
  grid-column: 2 span;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
#featureSec .featureSecRow .featureItem:nth-child(1) {
  border-right: 1px solid var(--borderClr);
  border-bottom: 1px solid var(--borderClr);
}
#featureSec .featureSecRow .featureItem:nth-child(2) {
  border-bottom: 1px solid var(--borderClr);
}
#featureSec .featureSecRow .featureItem:nth-child(3) {
  border-right: 1px solid var(--borderClr);
}

#featureSec {
  position: relative;
  padding: 80px 0;
}

#howWorkSection {
  position: relative;
  padding: 50px 0;
}
#howWorkSection .howWorkSecCon {
  background: linear-gradient(180deg, rgba(155, 185, 126, 0.2), rgba(255, 255, 255, 0) 100%);
  padding: 50px 15px;
  border-radius: 15px;
}
#howWorkSection .imgArea {
  background: var(--bgPrimaryClr);
  padding: 30px;
  border-radius: 5px;
}
#howWorkSection .testArea h4 {
  color: #000;
  font-size: 2em;
  font-family: "Marcellus", Roboto, sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

#blogSection {
  position: relative;
  padding: 80px 0;
}
#blogSection .blogCon {
  border: 1px solid var(--bgPrimaryClrDark);
  border-radius: 5px;
  overflow: hidden;
}
#blogSection .blogCon .textArea {
  padding: 10px 15px;
}
#blogSection .blogCon .textArea h4 {
  font-size: 1.5em;
  font-weight: 600;
  color: #000;
}
#blogSection .blogCon .textArea a {
  color: var(--primaryClr);
  font-weight: 700;
}

#aboutSection {
  padding: 100px 0;
  position: relative;
}
#aboutSection .aboutBg {
  position: absolute;
  bottom: 0;
  left: 0;
}
#aboutSection .imgArea {
  width: 100%;
}
#aboutSection .imgArea img {
  width: 100%;
}

#commitmentSection {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bgPrimaryClrFocus), var(--primaryClr));
}
#commitmentSection .bgImg {
  position: absolute;
  max-width: 250px;
}
#commitmentSection .bgImg:nth-child(1) {
  top: 0;
  right: 0;
  transform: translate(25%, -20%);
}
#commitmentSection .bgImg:nth-child(2) {
  top: 50%;
  left: 180px;
  transform: translate(0%, -35%);
  width: 200px;
}
#commitmentSection .bgImg:nth-child(3) {
  bottom: 0;
  right: 0;
  transform: translate(46%, -12%);
}
#commitmentSection .bgImg:nth-child(4) {
  bottom: 0;
  left: 0;
  transform: translate(-21%, 6%);
  width: 200px;
}
#commitmentSection .bgImg:nth-child(5) {
  top: 15px;
  width: 125px;
  left: 50px;
}
#commitmentSection .bgImg:nth-child(6) {
  bottom: 12px;
  left: 150px;
  width: 140px;
  transform: translate(35%, -35%);
}
#commitmentSection .bgImg:nth-child(7) {
  width: 121px;
}
#commitmentSection .content {
  height: 450px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 100px;
  border-radius: 5px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2;
  position: relative;
}

#testimonialSection {
  background-color: #e9f3e5;
}

.breadcrumb-option {
  background: var(--breadcrumbBg);
  border: 1px solid var(--borderClr);
  color: var(--breadcrumbLinkColor);
  padding: 10px 0;
}

.product__details__widget button {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  text-align: left;
  width: 150px;
  border-radius: 5px;
  border: 1px solid black;
  background: white;
}
.product__details__widget input {
  opacity: 0;
  position: absolute;
}
.product__details__widget .size {
  font-size: 13px !important;
  font-weight: 500 !important;
  opacity: 0.6;
}
.product__details__widget .price {
  font-weight: 500 !important;
  font-size: 20px;
}
.product__details__widget .mrp,
.product__details__widget .offPrice,
.product__details__widget .slashed-price {
  font-weight: 500 !important;
  font-size: 12px !important;
}
.product__details__widget .slashed-price {
  text-decoration: line-through;
}
.product__details__widget .mrp {
  opacity: 0.6;
}
.product__details__widget .offPrice {
  margin-left: 5px;
  color: rgb(255, 0, 0);
}

.cartCountCon {
  position: relative;
}
.cartCountCon:before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400%;
  height: 400%;
}

.loginArea {
  position: relative;
  padding: 100px 0;
}

.formControl {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #dbdbdb;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.formControl:focus-visible {
  outline: none;
  border-color: #151515;
}

.formGroup label {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
}

#profileSec {
  width: 90%;
  max-width: 1080px;
  height: 100vh;
  margin: 0 auto;
  padding: 35px 0;
  display: flex;
  flex-wrap: wrap;
}
#profileSec .info,
#profileSec .navCon,
#profileSec .content {
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
#profileSec .leftSide {
  width: 25%;
}
#profileSec .leftSide .info {
  padding: 10px 20px;
}
#profileSec .leftSide .info img {
  width: 50px;
  height: 50px;
}
#profileSec .leftSide .info .text {
  padding-left: 20px;
}
#profileSec .leftSide .info p {
  line-height: 1;
}
#profileSec .leftSide ul {
  list-style: none;
}
#profileSec .leftSide ul li:first-child button {
  border-bottom: 1px solid #f0f0f0;
}
#profileSec .leftSide ul button {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border: none;
  background: #fff;
  text-align: left;
  padding: 20px 20px;
  border-top: 1px solid #f0f0f0;
  color: #151515;
}
#profileSec .leftSide ul button i {
  color: #0057ff;
  padding-right: 20px;
}
#profileSec .leftSide ul button:hover {
  background: rgba(0, 85, 255, 0.1450980392);
  color: #0057ff;
}
#profileSec .leftSide ul ul li button {
  border-top: none;
  padding: 20px 20px 20px 60px;
}
#profileSec .leftSide ul ul li:first-child button {
  border-bottom: none;
}
#profileSec .rightSide {
  width: 75%;
  padding-left: 35px;
}
#profileSec .rightSide .content {
  padding: 20px 25px;
}
#profileSec .rightSide .content h2 {
  font-weight: 600;
  margin-right: 25px;
}
#profileSec .rightSide .content i {
  font-size: 22px;
  color: #0057ff;
}
#profileSec .rightSide .content button {
  background: transparent;
  border: none;
}

.blankSpance {
  height: 120px;
  width: 100%;
}

.services {
  position: relative;
  padding: 50px 0;
  border-bottom: 1px solid var(--borderClr);
}
.services .servicesItem {
  gap: 12px;
}
.services img {
  width: 40px;
}
.services h4 {
  font-weight: 700;
  text-align: left;
  font-size: 1.1em;
  margin: 0;
}
.services p {
  text-align: center;
  margin: 0;
}

.product-item {
  margin-bottom: 15px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  background: #fff;
}
.product-item .product-content {
  padding: 0 15px 15px;
}
.product-item .product-content .element-title {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--bs-body-font-family);
  height: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.product-item .imgCon {
  height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.product-item .imgCon img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-item .productAddCartBtn {
  width: -moz-max-content;
  width: max-content;
  border: 1.2px solid var(--primaryClr);
  padding: 6px 13px;
  line-height: 22px;
  font-weight: 500;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  text-transform: capitalize;
  border-radius: 7px;
  cursor: pointer;
  color: var(--primaryClr);
  transition: all 0.3s ease-out;
  margin-top: 15px;
}
.product-item:hover {
  border: 1px solid var(--primaryClr);
}
.product-item:hover .productAddCartBtn {
  background: var(--primaryClr);
  color: #fff;
}

#footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(155, 185, 126, 0.2) 84.23%);
  color: #000000;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#footer h5,
#footer p {
  color: inherit;
}
#footer h5 {
  font-weight: 700;
}
#footer .menu-item a {
  margin-bottom: 8px !important;
  display: inline-block;
  font-weight: 400;
  opacity: 0.8;
}
#footer .menu-item a:hover {
  opacity: 1;
}

.mySwiper {
  display: flex;
  flex-grow: 1;
  position: relative;
}

.main {
  padding: 42px 0 30px;
  display: flex;
  flex-grow: 1;
  position: relative;
}

@media screen and (max-width: 930px) {
  .main {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
}
.main-header {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
  transition-delay: 0.2s;
}

.main-title {
  font-size: 70px;
  font-weight: 400;
  margin-top: 10px;
  line-height: 1em;
  transition-delay: 0.3s;
}

.main-subtitle {
  font-weight: 400;
  font-size: 32px;
  margin-top: 10px;
  margin-bottom: 35px;
  transition-delay: 0.4s;
  position: relative;
  display: inline-block;
  padding: 0 5px;
}

.main-subtitle:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(255, 255, 255, 0.3490196078);
  z-index: -1;
}

.main-content__title {
  font-size: 26px;
  font-family: var(--italic-font);
  font-style: italic;
  margin-bottom: 14px;
  transition-delay: 0.2s;
}

.main-content__subtitle {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  transition-delay: 0.3s;
}

.main-content .more-menu {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition-delay: 0.4s;
  cursor: pointer;
  color: #494949;
}

@media screen and (max-width: 930px) {
  .main-content .more-menu {
    justify-content: center;
  }
}
.main-content .more-menu svg {
  width: 28px;
  height: 18px;
  margin-left: 10px;
}

.swiper-slide .center {
  display: flex;
  margin-left: 120px;
  position: relative;
  flex-shrink: 0;
  align-items: center;
}

@media screen and (max-width: 930px) {
  .center {
    margin-left: 0;
    margin-bottom: 56px;
  }
}
.center .bottle-bg {
  width: 320px;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 160px;
}

@media screen and (max-width: 930px) {
  .center .bottle-bg {
    width: 260px;
    height: 390px;
  }
}
@media screen and (max-width: 575px) {
  .center .bottle-bg {
    width: 220px;
    height: 340px;
  }
}
.center .bottle-img {
  position: absolute;
  top: 25%;
  left: 0;
  transform: scale(1.6);
}

.swiper-pagination {
  position: absolute;
  right: 30px;
  left: auto;
  top: 100px;
  width: auto;
  bottom: auto;
  z-index: 2;
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 500;
}

.button-wrapper {
  position: absolute;
  right: 30px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 930px) {
  .button-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 0 60px;
  }
}
@media screen and (max-width: 575px) {
  .button-wrapper {
    padding: 0 20px;
  }
}
.button-wrapper svg {
  width: 28px;
}

.button-wrapper .swiper-button {
  border: 1px solid var(--body-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--body-color) 40%, transparent 0%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

.button-wrapper .swiper-button + .swiper-button {
  margin-left: 16px;
}

@media screen and (max-width: 930px) {
  .button-wrapper .swiper-button + .swiper-button {
    margin-left: 0;
  }
}
.button-wrapper .swiper-button:hover {
  background-color: var(--body-color);
  background-position: left bottom;
}

.button-wrapper .swiper-button:hover svg {
  stroke: #fff;
}

.button-wrapper .swiper-prev-button {
  background: linear-gradient(to left, var(--body-color) 40%, transparent 0%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: all 0.3s ease-out;
}

.button-wrapper .swiper-prev-button svg {
  transform: rotate(-180deg);
}

.button-wrapper .swiper-prev-button:hover {
  background-position: right bottom;
}

.swiper-slide {
  opacity: 0 !important;
  transition: 0.4s;
}

.swiper-slide .left-side {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.swiper-slide-active {
  opacity: 1 !important;
}

.swiper-slide .main-wrapper > *,
.swiper-slide .main-content > * {
  transform: translateY(-30px);
  opacity: 0;
  transition-duration: 0.8s;
}

.swiper-slide-active .main-wrapper > *,
.swiper-slide-active .main-content > * {
  transform: none;
  opacity: 1;
}

.swiper-slide .bottle-bg {
  transition-duration: 0.6s;
  opacity: 0;
  -o-object-position: 60%;
     object-position: 60%;
}

.swiper-slide-active .bottle-bg {
  opacity: 1;
  transform: none;
  -o-object-position: 50%;
     object-position: 50%;
}

.swiper-slide .bottle-img {
  transition-duration: 0.8s;
  transform: scale(1.2);
  opacity: 0;
}

.swiper-slide-active .bottle-img {
  opacity: 1;
  transform: scale(1.6) translateY(65px);
}

[data-sld="1"] .container,
[data-sld="1"] .header {
  background-color: var(--savanna-bg);
}

[data-sld="2"] .container,
[data-sld="2"] .header {
  background-color: var(--glacier-bg);
}

[data-sld="3"] .container,
[data-sld="3"] .header {
  background-color: var(--coral-bg);
}

#saleBanner {
  position: relative;
}
#saleBanner .salesItem {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#saleBanner .bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-size: 40%;
  opacity: 0.03;
}
#saleBanner .content {
  position: relative;
  padding: 35px 20px;
}
#saleBanner .content .imgArea {
  width: 35%;
  border-right: 1px solid #c9c9c9;
  margin-right: 5%;
}
#saleBanner .content .imgArea img {
  height: 150px;
  width: auto;
}
#saleBanner .content .textArea {
  width: 60%;
}
#saleBanner .content .textArea h5 {
  color: var(--primaryClr);
  font-weight: 600;
  font-size: 14px;
}
#saleBanner .content .textArea h4 {
  font-family: var(--bs-body-font-family);
  font-size: 21px;
  font-weight: 700;
}
#saleBanner .content.rowReverse {
  flex-direction: row-reverse;
}
#saleBanner .content.rowReverse .imgArea {
  border-right: none;
  border-left: 1px solid #c9c9c9;
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 530px) {
  .swiper-slide .center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -42%);
    margin: 0;
  }
  .main-header {
    margin: 0;
  }
  .main-title {
    font-size: 40px;
  }
  .main-wrapper {
    display: flex;
    align-items: center;
    text-align: center;
  }
  .left-side .main-wrapper {
    flex-direction: column;
  }
  .main-content {
    opacity: 0;
  }
  #catgorySec .gridCon {
    grid-template-columns: repeat(2, 1fr);
  }
  #commitmentSection .content {
    padding: 0 35px;
  }
  #commitmentSection h2 {
    font-size: 28px;
    font-weight: 700;
  }
  #commitmentSection p {
    font-size: 14px;
    width: 100%;
  }
}
#bannerSection {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(155, 185, 126, 0.2), rgba(255, 255, 255, 0) 100%);
}
#bannerSection .bgleft,
#bannerSection .bgright {
  position: absolute;
  width: 320px;
}
#bannerSection .bgleft {
  top: 0;
  left: 0;
}
#bannerSection .bgright {
  bottom: 0;
  right: 0;
}
#bannerSection .bannerContent {
  text-align: center;
  z-index: 2;
  position: relative;
}

#frmRegistration {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shop {
  background: var(--light-gray);
}

.productWrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}
.productWrap .sidebar {
  width: 250px;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: -moz-fit-content;
  height: fit-content;
}
.productWrap .sidebar .serchPro {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 1rem;
  margin-bottom: 15px;
}
.productWrap .sidebar h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  font-size: 21px;
  font-weight: 600;
}
.productWrap .sidebar .categoryList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.productWrap .sidebar .categoryList input {
  margin-right: 8px;
}
.productWrap .sidebar .categoryList label {
  color: black;
}
.productWrap .mainContent {
  flex: 1;
}

#productContent {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

#mobileNav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background: white;
}
#mobileNav .navGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 15px;
  margin-bottom: 0;
  padding: 0 12px;
}
#mobileNav .navGrid a {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobileNav .navGrid a.active {
  background: #efefef;
}
#mobileNav .navGrid svg {
  width: 40px;
  height: 40px;
}

#goToTop {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  padding: 7px 5px;
  border: none;
  background: black;
  border-radius: 3px;
  cursor: pointer;
}
#goToTop svg {
  width: 30px;
  fill: white;
}
#goToTop:hover {
  background: var(--primaryClr);
}

.whatsappBtn {
  position: fixed;
  bottom: 80px;
  left: 13px;
  width: 70px;
  height: 70px;
  z-index: 5;
  padding: 15px;
  border: 1px solid #a9d5ae;
  z-index: 1;
  border-radius: 50%;
}
.whatsappBtn::before, .whatsappBtn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.whatsappBtn::before {
  background: #7dc986;
  z-index: -2;
  animation: popUpAni 1.5s infinite;
}
.whatsappBtn::after {
  z-index: -1;
  background: #d8f1db;
}
.whatsappBtn svg {
  width: 100%;
  height: 100%;
}

#navCon {
  display: block;
}

#mobileNav {
  display: none;
}

.orderPage {
  background: var(--light-gray);
  padding: 50px 0;
}

.orderItem {
  position: relative;
  display: grid;
  gap: 8px;
}

.orderCon {
  background: white;
  border: 1px solid var(--borderClr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  padding: 10px;
  gap: 10px;
  transition: 0.2s ease-in-out;
}
.orderCon .content {
  gap: 15px;
}
.orderCon .imgCon {
  width: 80px;
  height: 80px;
  border-radius: 3px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.orderCon .imgCon img {
  width: auto;
  height: 100%;
}
.orderCon:hover {
  box-shadow: 0 1px 12px 2px #dbdbdb;
}

.orderStatus {
  padding: 5px 15px;
  position: relative;
  text-align: center;
}
.orderStatus .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
}
.orderStatus span {
  z-index: 2;
  position: relative;
}

.removeCartBtn {
  position: relative;
  padding: 5px 15px;
  border-radius: 3;
  background: var(--light-gray);
  color: #000;
  border: none;
  transition: 0.2s ease-in-out;
}
.removeCartBtn:hover {
  background: rgb(221, 221, 221);
}

@media screen and (max-width: 992px) {
  #navCon {
    display: none;
  }
  #mobileNav {
    display: block;
  }
  #bannerSection {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #bannerSection h2 {
    z-index: 2;
    position: relative;
    font-size: 25px;
  }
  .productWrap {
    flex-direction: column;
  }
  .productWrap .sidebar,
  .productWrap .mainContent {
    width: 100%;
  }
  .orderCon {
    flex-direction: column;
  }
  .orderCon .content,
  .orderCon .orderStatus {
    width: 100%;
  }
}
@keyframes popUpAni {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */