@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: normal;
  font-size: 0.875rem;
}

.form-control,
input,
textarea,
select {
  color: #49494A !important;
}
.form-control:-webkit-autofill, .form-control:-webkit-autofill:hover, .form-control:-webkit-autofill:focus, .form-control:-webkit-autofill:active,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-text-fill-color: #49494A !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
  background-color: #fff !important;
  caret-color: #49494A;
  border: inherit;
  transition: background-color 5000s ease-in-out 0s;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

p {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
}

a {
  text-decoration: none;
  color: currentColor;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1215686275) inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

sup {
  top: -1.5em;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.bg-opacity-33 {
  --bs-bg-opacity: 0.33;
}

.bg-opacity-5 {
  --bs-bg-opacity: 0.05;
}

.oneline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.twoline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.threeline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.fourline {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.theme-text {
  color: #7E93AB;
}

.light-grey {
  color: #9C9C9C !important;
}

section {
  padding-block: 3rem;
}

.theme-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: #F5F1EC;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #7E93AB;
}
.theme-button .btn-text {
  padding-right: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  transition: all 0.45s ease;
}
.theme-button .btn-icon {
  position: absolute;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #7E93AB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s linear;
}
.theme-button .btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M15.75 20.25L22.5 13.5L15.75 6.75M22.5 13.5H10.6875M4.5 13.5H7.3125' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.theme-button:hover .btn-icon {
  right: calc(100% - 30px);
  transform: rotate(-45deg);
}
.theme-button:hover .btn-text {
  transform: translateX(24px);
}

.section-heading h2 {
  width: fit-content;
}
.section-heading h2 .animateline {
  right: 0%;
  bottom: -54%;
}
.section-heading .sec-tag {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.section-heading .sec-tag .tag-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #F3E5D7;
  display: block;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.section-heading .sec-tag p {
  color: #49494A;
  font-size: 1rem;
  transition: color 0.4s ease;
}
.section-heading .sec-tag:hover .tag-dot {
  transform: scale(1.3);
}
.section-heading .sec-tag:hover p {
  color: #7E93AB;
}
.section-heading p {
  color: #DFDFDF;
}

.secheadingtwo svg path {
  stroke: #7E93AB;
}

.draw-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.draw-line.animate {
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.cursor-circle {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Hover state */
.cursor-circle.active {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
}

.common-hero-section {
  position: relative;
  overflow: hidden;
  background-color: #7E93AB;
  height: 50vh;
  display: flex;
  align-items: end;
  padding-bottom: 5rem;
}
.common-hero-section .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-white);
}
.common-hero-section .breadcrumb-item:hover {
  color: #37404B;
}
.common-hero-section .breadcrumb-item.active {
  color: var(--bs-white);
}
.common-hero-section .bgimg1 {
  left: -3%;
  bottom: 0;
  width: 20rem;
  transform: rotate(-45deg);
}
.common-hero-section .bgimg2 {
  right: 0;
  bottom: 0;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}

.navbar {
  padding: 0;
}

.hidden {
  display: none;
}

.navbar-brand {
  width: 20rem;
}

.desktop-menu {
  gap: 32px;
}
.desktop-menu .nav-link {
  color: var(--bs-white);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  padding: 0 !important;
  transition: 0.3s;
}
.desktop-menu .nav-link:hover {
  color: #F3E5D7;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-btn {
  width: 145px;
  height: 52px;
  border-radius: 100px;
  background: var(--bs-white);
  color: #516D8E;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}

/* ===========================
   Dropdown
=========================== */
.dropdown {
  position: relative;
}
.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 25px;
}
.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  border: 0;
  background: var(--bs-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transform: translateY(15px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.dropdown .dropdown-menu .dropdown-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  padding-block: 0.4rem;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  padding: 12px 20px;
}
.dropdown-item:hover {
  background: #F5F1EC;
}

.navbar-nav .nav-link {
  transition: all 0.3s ease;
  font-family: "Cormorant Garamond", serif;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #F3E5D7;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  min-width: fit-content;
  border: 1px solid rgba(156, 141, 126, 0.4);
  border-radius: 50px;
  background: white;
  color: #49494A;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.nav-button span {
  position: relative;
  z-index: 3;
}
.nav-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7E93AB;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.nav-button:hover {
  color: #49494A;
}
.nav-button:hover::before {
  transform: translateX(0);
}
.nav-button {
  color: #7E93AB;
}
.nav-button:hover {
  background: #7E93AB;
  color: var(--bs-white);
}

/* ===========================
   Hamburger
=========================== */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  z-index: 10001;
  padding: 0;
}
.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  transform: translateX(-50%);
}
.menu-toggle span:nth-child(1) {
  top: 15px;
}
.menu-toggle span:nth-child(2) {
  top: 23px;
}
.menu-toggle span:nth-child(3) {
  top: 31px;
}
.menu-toggle.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ===========================
   Mobile Menu
=========================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}
.mobile-menu .theme-button {
  margin-top: 1.2rem;
}

.menu-layer {
  position: absolute;
  inset: 0;
}

.layer-1 {
  background: #516D8E;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.layer-2 {
  background: #37404B;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.15s;
}

.mobile-menu-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
}
.mobile-nav a {
  color: var(--bs-white);
  text-decoration: none;
  font-size: 1.7rem;
  line-height: 2;
}

.mobile-submenu a {
  font-size: 1.2rem;
  padding-block: 1rem;
}

/* OPEN */
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.7s ease, visibility 0s;
}
.mobile-menu.active .layer-1 {
  transform: translateX(0);
  transition-delay: 0s;
}
.mobile-menu.active .layer-2 {
  transform: translateX(0);
  transition-delay: 0.15s;
}
.mobile-menu.active li {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.7s;
}
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.8s;
}
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.9s;
}
.mobile-menu.active li:nth-child(4) {
  transition-delay: 1s;
}
.mobile-menu.active li:nth-child(5) {
  transition-delay: 1.1s;
}
.mobile-menu.active li:nth-child(6) {
  transition-delay: 1.2s;
}
.mobile-menu.active li:nth-child(7) {
  transition-delay: 1.3s;
}

/* CLOSE */
.mobile-menu:not(.active) .layer-1 {
  transition-delay: 0.15s;
}
.mobile-menu:not(.active) .layer-2 {
  transition-delay: 0s;
}
.mobile-menu:not(.active) li:nth-child(1) {
  transition-delay: 0.6s;
}
.mobile-menu:not(.active) li:nth-child(2) {
  transition-delay: 0.5s;
}
.mobile-menu:not(.active) li:nth-child(3) {
  transition-delay: 0.4s;
}
.mobile-menu:not(.active) li:nth-child(4) {
  transition-delay: 0.3s;
}
.mobile-menu:not(.active) li:nth-child(5) {
  transition-delay: 0.2s;
}
.mobile-menu:not(.active) li:nth-child(6) {
  transition-delay: 0.1s;
}
.mobile-menu:not(.active) li:nth-child(7) {
  transition-delay: 0s;
}

.navbar.menu-open .container {
  justify-content: end;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 991px) {
  .desktop-menu,
  .contact-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(55, 64, 75, 0.45) 0%, rgba(55, 64, 75, 0.15) 50%, transparent 100%);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
  padding-top: 120px;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
  font-weight: 400;
  color: var(--bs-white);
  margin-bottom: 24px;
}
.hero-content h1 span {
  display: block;
  color: #516D8E;
  font-style: italic;
  font-weight: 600;
}

.hero-content p {
  max-width: 500px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin-bottom: 3rem;
}

.about_section .bubblebg {
  width: 300px;
  right: -6%;
  top: 15%;
  transform: rotate(45deg);
}
.about_section .prodinfobx .box .icon {
  width: 60px;
  height: 60px;
  background: rgb(221.7507042254, 227.1633802817, 233.3492957746);
}
.about_section .prodinfobx .box .icon img {
  transition: all 0.3s ease;
}
.about_section .shape {
  top: -4%;
  left: -8%;
  z-index: -1;
}
.about_section .abimg {
  width: 30rem;
}
.about_section .abimg .img1 {
  animation: rotateCircle 12s linear infinite;
}
.about_section .abimg_hover {
  position: absolute;
  width: 250px;
  height: 250px;
  right: -15%;
  bottom: -15%;
  border-radius: 50%;
  padding: 8px;
  background: var(--bs-white);
}
.about_section .abimg_hover img {
  scale: 0.95;
  transition: linear 0.4s;
}
.about_section .abimg_hover:hover img {
  object-position: center 100% !important;
  scale: 1;
}
.about_section .brand-badge {
  width: 180px;
  height: 180px;
  position: relative;
}
.about_section .circle-text-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  animation: rotateCircle 12s linear infinite;
}
.about_section .circle-text-svg text {
  fill: #7E93AB;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 500;
}
@keyframes rotateCircle {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(270deg);
  }
}
.about_section .center-icon {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}
.about_section .center-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about_section .feature-boxes .feature-card {
  position: relative;
  font-size: 0.875rem;
  padding: 1.2rem;
  height: 100%;
  transition: 0.3s;
}
.about_section .feature-boxes .feature-card h6 {
  margin-bottom: 0;
}
.about_section .feature-boxes .feature-card::after {
  content: "";
  position: absolute;
  height: 70%;
  top: 15%;
  right: 0;
  width: 2px;
  background: #F5F1EC;
}
.about_section .feature-boxes .feature-card:last-child::after {
  display: none;
}
.about_section .feature-boxes .feature-card .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin: auto;
  padding: 0.7rem;
  background: #F5F1EC;
}
.about_section .feature-boxes .feature-card .icon img {
  height: 100%;
}
.about_section .feature-boxes .feature-card h6 {
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  margin-bottom: 0;
}
.about_section p {
  color: #89939F;
}

.ingredients-section {
  background: #7E93AB;
  padding: 100px 0;
}

.ingredient-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.card-front {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding: 1.3rem;
  padding-top: 0;
  z-index: 2;
  transform: scaleY(1);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.35s ease;
}
.card-front .img-box {
  width: 190px;
  height: 130px;
  margin-bottom: 1rem;
}
.card-front .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-front h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.card-front p {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0;
}

.card-content {
  position: absolute;
  inset: 0;
  background: rgb(203.2183098592, 211.6478873239, 221.2816901408);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: scalex(0);
  transform-origin: center center;
  border: 3rem solid #fff;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1) 0.15s, opacity 0.3s ease 0.15s;
}
.card-content p {
  color: #49494A;
  margin-bottom: 0;
}

.ingredient-card:hover .card-front {
  transform: scaleY(0);
  opacity: 0;
}
.ingredient-card:hover .card-content {
  transform: scaleY(1);
  opacity: 1;
}

.ingredient-card:not(:hover) .card-front {
  transition-delay: 0.15s;
}
.ingredient-card:not(:hover) .card-content {
  transition-delay: 0s;
}

.ingredients-section {
  position: relative;
  overflow: hidden;
}
.ingredients-section .circle {
  position: absolute;
  width: 400px;
  height: 350px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.08);
}
.ingredients-section .circle:nth-child(1) {
  left: -10%;
  top: 40%;
}
.ingredients-section .circle:nth-child(2) {
  right: -10%;
  top: 50%;
  height: 250px;
  transform: rotate(-45deg);
}
.ingredients-section .circle:nth-child(3) {
  left: -3%;
  bottom: -4%;
}
.ingredients-section .circle:nth-child(4) {
  right: -7%;
  bottom: -10%;
}

.whyus-section .chainbg {
  width: 300px;
  height: 200px;
  right: 0;
  top: 0;
}
.whyus-section .container {
  position: relative;
  z-index: 2;
}
.whyus-section .shapesvg {
  height: 100%;
}
.whyus-section .shapesvg span {
  position: absolute;
  height: 100%;
}
.whyus-section .shapesvg span:nth-child(1) {
  left: 2%;
  bottom: -12%;
}
.whyus-section .shapesvg span:nth-child(2) {
  right: 5%;
  bottom: -38%;
}
.whyus-section .feature-card {
  background: #7E93AB;
  border-radius: 16px 80px 16px 80px;
  padding: 1.5rem 1rem;
  min-height: 185px;
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.whyus-section .feature-card:hover {
  background: #516D8E;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.whyus-section .feature-card .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgb(187.7746478873, 198.7183098592, 211.2253521127);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.whyus-section .feature-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6980392157);
  margin-bottom: 0;
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .whyus-section .feature-card {
    min-height: 170px;
  }
  .whyus-section .feature-card h5 {
    font-size: 1.3rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .whyus-section .feature-card {
    min-height: 160px;
    padding: 1.25rem 0.875rem;
  }
  .whyus-section .feature-card h5 {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .whyus-section::before, .whyus-section::after {
    display: none;
  }
  .whyus-section .feature-card {
    min-height: auto;
    padding: 1.25rem 1rem;
  }
  .whyus-section .feature-card h5 {
    font-size: 1.125rem;
  }
  .whyus-section .feature-card p {
    font-size: 0.6875rem;
  }
}

.video-section {
  position: relative;
  height: 700px;
  margin-top: 8rem;
}
.video-section::after {
  content: "";
  position: absolute;
  top: -10%;
  background-color: var(--bs-white);
  filter: blur(30px);
  width: 102%;
  height: 200px;
}
.video-section .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-section .video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
  transition: all 0.4s ease;
}
.video-section .video-content.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.video-section .video-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #516D8E;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .video-section {
    height: 500px;
  }
  .video-section .video-title {
    font-size: 2rem;
    padding: 0 20px;
  }
}

/* PLAY BUTTON */
.play-btn {
  width: 5rem;
  aspect-ratio: 1;
  background: #e0e1e3;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn span {
  transition: all 0.5s ease-in-out;
  width: 3rem;
  height: 3rem;
  background-color: #7E93AB;
  border-radius: var(--bs-border-radius-pill);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  font-size: 2.8rem;
}
.play-btn span i {
  padding-left: 3px;
}
.play-btn::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #7E93AB;
  border-right-color: #7E93AB;
  animation: rotateHalf 2s linear infinite;
}
@keyframes rotateHalf {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.play-btn:hover span {
  background-color: #7E93AB;
}

.watch-text {
  margin-top: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #49494A;
}

@keyframes rotateRing {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.video-content {
  transition: all 0.4s ease;
}
.video-content.hide-controls {
  opacity: 0;
  visibility: hidden;
}

.faq-section {
  background: white;
}
.faq-section .section-heading h2 .animateline {
  right: 55%;
  bottom: -14%;
  width: 108px;
  transform: rotate(4deg);
}
.faq-section .faq-accordion .accordion-item {
  border: none;
  background: rgb(252.2976923077, 249.145, 245.9923076923);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
}
.faq-section .faq-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 1.3rem 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #49494A;
  transition: all 0.3s ease;
}
.faq-section .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #49494A;
}
.faq-section .faq-accordion .accordion-button::after {
  background-image: none;
  content: "\f282";
  font-family: "bootstrap-icons";
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #7E93AB;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.35s ease;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faq-section .faq-accordion .accordion-body {
  color: #9C9C9C;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 0 1.5rem 1.5rem;
}
.faq-section .faq-accordion .accordion-collapse {
  transition: height 0.45s ease !important;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .faq-section .section-heading {
    text-align: center;
  }
  .faq-section .section-heading .faq-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .faq-section .section-heading {
    text-align: center;
  }
  .faq-section .section-heading h2 {
    font-size: 2.8rem;
  }
  .faq-section .section-heading .faq-desc {
    max-width: 100%;
  }
  .faq-section .section-heading .animateline {
    display: none;
  }
  .faq-section .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 1rem;
  }
}

.quiz-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding: 8rem 0;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.quiz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(245, 241, 236, 0.62) 0%, rgba(245, 241, 236, 0.62) 100%);
  z-index: 1;
}
.quiz-section::after {
  content: "";
  position: absolute;
  width: 26%;
  height: 62%;
  border-radius: 544px;
  background: #F5F1EC;
  filter: blur(49px);
  z-index: 1;
}
.quiz-section .section-heading .sec-tag .tag-dot {
  background: #9C8D7E;
}
.quiz-section p {
  color: #9C8D7E;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .quiz-section {
    padding: 7rem 0;
  }
  .quiz-section h2 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .quiz-section {
    min-height: auto;
    padding: 5rem 0;
  }
  .quiz-section h2 {
    font-size: 2.4rem;
    line-height: 1.15;
  }
  .quiz-section .quiz-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0 1rem;
  }
  .quiz-section .quiz-btn {
    min-width: 160px;
    height: 52px;
  }
}

.theme-btn-two {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  min-width: 180px;
  border: 1px solid rgba(156, 141, 126, 0.4);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
  color: #49494A;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.theme-btn-two span {
  position: relative;
  z-index: 2;
}
.theme-btn-two::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 46px;
  background: #F3E5D7;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 1;
}
.theme-btn-two:hover {
  color: #49494A;
  border-color: #F3E5D7;
}
.theme-btn-two:hover::before {
  transform: translateX(0);
  z-index: -1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  height: 100%;
  background: #F5F1EC;
  border-radius: 24px;
  padding: 1rem;
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-card .product-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin-bottom: 1rem;
}
.product-card .product-badge .rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #7E93AB;
  font-size: 0.75rem;
  font-family: "Manrope", sans-serif;
}
.product-card .product-badge .rating i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7E93AB;
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .product-badge .size-badge {
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
  background: #7E93AB;
  color: white;
  font-size: 0.75rem;
  font-family: "Manrope", sans-serif;
}
.product-card .product-image {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.product-card .product-image img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: 0.4s ease;
}
.product-card .product-content h4 {
  font-family: "Cormorant Garamond", serif;
  color: #49494A;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.product-card .product-content p {
  color: #9C9C9C;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.product-card .product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.product-card .product-actions .cart-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #49494A;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
}
.product-card .product-actions .cart-btn .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7E93AB;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  transition: all 0.3s ease;
  margin-bottom: 1px;
}
.product-card .product-actions .cart-btn:hover .icon {
  transform: rotate(-45deg);
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  min-width: auto;
  border: 1px solid rgba(156, 141, 126, 0.2);
  border-radius: 30px;
  background: rgba(243, 229, 215, 0.8);
  color: #49494A;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.shop-btn span {
  position: relative;
  z-index: 3;
}
.shop-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7E93AB;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.shop-btn:hover {
  color: white;
}
.shop-btn:hover::before {
  transform: translateX(0);
}

.price-wrap {
  margin-bottom: 1rem;
}
.price-wrap .old-price {
  color: #9f9f9f;
  text-decoration: line-through;
  margin-right: 0.4rem;
  font-family: "Manrope", sans-serif;
}
.price-wrap .new-price {
  color: #49494A;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Manrope", sans-serif;
}

@media (min-width: 1025px) and (max-width: 1480px) {
  .product-card .product-content h4,
  .product-card .product-content .new-price {
    font-size: 0.9rem;
  }
  .product-card .product-content p {
    font-size: 0.6875rem;
  }
  .product-card .shop-btn {
    padding: 0.6rem 0.8rem;
  }
  .product-card .shop-btn span,
  .product-card .product-actions .cart-btn {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .product-card .product-image {
    height: 170px;
  }
  .product-card .product-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.steps-section .step-card {
  position: relative;
  transition: all 0.4s ease;
  padding-inline: 2rem;
}
.steps-section .step-card .step-img {
  background: #F3E5D7;
  height: 40rem;
}
.steps-section .step-card .step-img img {
  transition: transform 0.6s ease;
}
.steps-section .step-card .step-no {
  font-size: 6rem;
  top: -5rem;
  left: 2rem;
  color: #7E93AB;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
}
.steps-section .step-card h4 {
  font-family: "Cormorant Garamond", serif;
  transition: color 0.3s ease;
}
.steps-section .step-card p {
  color: rgb(144.5323943662, 162.5154929577, 183.0676056338);
}
.steps-section .step-card .theme-button {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: #7E93AB;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
}
.steps-section .step-card .theme-button .btn-text {
  padding-right: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  transition: all 0.45s ease;
}
.steps-section .step-card .theme-button .btn-icon {
  position: absolute;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eadfd8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s linear;
}
.steps-section .step-card .theme-button .btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M15.75 20.25L22.5 13.5L15.75 6.75M22.5 13.5H10.6875M4.5 13.5H7.3125' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.steps-section .step-card .theme-button:hover .btn-icon {
  right: calc(100% - 30px);
  transform: rotate(-45deg);
}
.steps-section .step-card .theme-button:hover .btn-text {
  transform: translateX(24px);
}
.steps-section .step-card .theme-button .btn-icon {
  transition: all 0.4s ease;
}
.steps-section .step-card .theme-button .btn-icon::before {
  display: none;
}
.steps-section .step-card:hover {
  transform: translateY(-10px);
}
.steps-section .step-card:hover h4 {
  color: #7E93AB;
}
.steps-section .step-card:hover .theme-button .btn-icon {
  transform: rotate(-45deg);
}
.steps-section .shapetwobg {
  right: -5%;
  bottom: 8%;
}

.testimonial-section {
  padding-block: 5rem;
}
.testimonial-section .bgimg {
  height: 100%;
}
.testimonial-section .bgimg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(126, 147, 171, 0.6);
  z-index: 1;
}
.testimonial-section .swiper-area {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 420px;
  margin: auto;
  margin-top: 3rem;
}
.testimonial-section .card-stack-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.testimonial-section .tcard {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 700px;
  max-width: 90vw;
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateX(-50%);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.testimonial-section .tcard p {
  font-family: "Cormorant Garamond", serif;
}
.testimonial-section .qicon2 {
  transform: rotate(180deg);
  float: right;
}
.testimonial-section .user .uprofile {
  width: 40px;
  height: 40px;
}
.testimonial-section .user h4 {
  font-family: "Cormorant Garamond", serif;
}
.testimonial-section .user p {
  font-family: "Manrope", sans-serif;
  color: #49494A;
}
.testimonial-section .tcard.active {
  z-index: 30;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}
.testimonial-section .tcard.stack-1 {
  z-index: 20;
  opacity: 0.8;
  transform: translateX(-50%) translateY(-24px) scale(0.97);
}
.testimonial-section .tcard.stack-2 {
  z-index: 10;
  opacity: 0.6;
  transform: translateX(-50%) translateY(-48px) scale(0.94);
}
.testimonial-section .tcard.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
  transform: translateX(-50%) translateY(-28px) scale(0.94);
}
.testimonial-section .tcard.fly-next {
  z-index: 999 !important;
  transform: translateX(calc(-50% + 280px)) translateY(-140px) rotate(18deg) scale(0.88) !important;
  opacity: 0 !important;
}
.testimonial-section .tcard.fly-prev {
  z-index: 999 !important;
  transform: translateX(calc(-50% - 280px)) translateY(-140px) rotate(-18deg) scale(0.88) !important;
  opacity: 0 !important;
}
.testimonial-section .quote-open,
.testimonial-section .quote-close {
  color: rgba(126, 147, 171, 0.8);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1;
}
.testimonial-section .quote-open {
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.testimonial-section .quote-close {
  float: right;
  font-size: 3rem;
  margin-top: -1rem;
}
.testimonial-section .quote-text {
  margin-bottom: 2rem;
  color: #49494A;
  font-size: 1.125rem;
  line-height: 1.8;
}
.testimonial-section .author-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
}
.testimonial-section .author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.testimonial-section .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section .author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #37404B;
}
.testimonial-section .author-role {
  font-size: 0.75rem;
  color: #9C9C9C;
}
.testimonial-section .nav-btn {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  cursor: pointer;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  transition: all 0.3s ease;
}
.testimonial-section .nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.testimonial-section #prevBtn {
  left: 10%;
}
.testimonial-section #nextBtn {
  right: 10%;
}
.testimonial-section .dots {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.testimonial-section .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.testimonial-section .dot.active {
  background: white;
  transform: scale(1.3);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonial-section .swiper-area {
    height: 450px;
  }
  .testimonial-section .tcard {
    width: 90%;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .testimonial-section .swiper-area {
    height: 500px;
  }
  .testimonial-section .tcard {
    width: 100%;
    padding: 1.5rem;
  }
  .testimonial-section .quote-text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .testimonial-section .quote-open,
  .testimonial-section .quote-close {
    font-size: 2.25rem;
  }
  .testimonial-section .tcard.fly-next {
    transform: translateX(calc(-50% + 180px)) translateY(-80px) rotate(15deg) scale(0.88) !important;
  }
  .testimonial-section .tcard.fly-prev {
    transform: translateX(calc(-50% - 180px)) translateY(-80px) rotate(-15deg) scale(0.88) !important;
  }
}

.cellular-blog-section .section-heading svg {
  width: 120px !important;
}
.cellular-blog-section .article-date {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}
.cellular-blog-section .featured-card {
  height: 400px;
  min-height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.cellular-blog-section .featured-card .card-img-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0) -157%, rgba(0, 0, 0, 0.6) 100%);
}
.cellular-blog-section .featured-card .card-img-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 40%;
  top: 100%;
  background: linear-gradient(180deg, rgba(146, 130, 106, 0) 4.85%, #a9c0db 88.33%);
}
.cellular-blog-section .featured-card .card-img-overlay h2 {
  color: white;
  line-height: 1.3;
  font-family: "Manrope", sans-serif;
}
.cellular-blog-section .featured-card .card-img-overlay .card-text {
  font-weight: 300;
}
.cellular-blog-section .list-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
  scale: 0.95;
  overflow: hidden;
  padding: 0;
  border-radius: 1rem;
}
.cellular-blog-section .list-card .card-body {
  padding: 1.25rem;
  padding-left: 0;
}
.cellular-blog-section .list-card .article-date {
  color: #7E93AB;
}
.cellular-blog-section .list-card .card-title {
  font-family: "Manrope", sans-serif;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  font-size: 15px;
}
.cellular-blog-section .list-card .card-text {
  color: rgba(126, 147, 171, 0.7);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.cellular-blog-section .list-card .list-img {
  overflow: hidden;
}
.cellular-blog-section .list-card .list-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cellular-blog-section .featured-card {
    min-height: 400px;
  }
  .cellular-blog-section .list-card .list-img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .cellular-blog-section .featured-card {
    min-height: 350px;
  }
  .cellular-blog-section .list-card .list-img {
    height: 220px;
  }
  .cellular-blog-section .section-heading h2 {
    width: 100%;
  }
  .cellular-blog-section .section-heading .animatedline {
    left: 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cellular-blog-section .featured-card {
    min-height: 400px;
  }
  .cellular-blog-section .list-card .list-img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .cellular-blog-section .featured-card {
    min-height: 350px;
  }
  .cellular-blog-section .list-card .list-img {
    height: 220px;
  }
}
.cta-section {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.cta-section .bgimg1,
.cta-section .bgimg2 {
  position: absolute;
}
.cta-section .bgimg2 {
  right: 0;
  bottom: -30%;
}
.cta-section .bgimg1 {
  left: 0;
  bottom: -40%;
}
.cta-section .cta-banner-section {
  position: absolute;
  bottom: -10%;
  width: 100%;
  z-index: 11;
}
.cta-section .cta-banner-section .cta-banner {
  background: #7E93AB;
  border-radius: 3.2rem;
  overflow: hidden;
  min-height: 320px;
}
.cta-section .cta-banner-section .cta-banner .row {
  min-height: 320px;
}
.cta-section .cta-banner-section .cta-banner__left-img, .cta-section .cta-banner-section .cta-banner__right-img {
  height: 100%;
}
.cta-section .cta-banner-section .cta-banner__left-img img, .cta-section .cta-banner-section .cta-banner__right-img img {
  width: 100%;
  object-fit: cover;
}
.cta-section .cta-banner-section .cta-banner__content {
  padding: 3rem 2.5rem;
  transform: translateY(-4rem);
}
.cta-section .cta-banner-section .cta-banner__content h2 {
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 2.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cta-section .cta-banner-section .cta-banner__content p {
  color: rgba(255, 255, 255, 0.6980392157);
  max-width: 260px;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.cta-section .cta-banner-section .cta-banner__content .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 2rem;
  min-width: fit-width;
  border: 1px solid rgba(156, 141, 126, 0.4);
  border-radius: 50px;
  background: white;
  color: #49494A;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.cta-section .cta-banner-section .cta-banner__content .cta-btn span {
  position: relative;
  z-index: 3;
}
.cta-section .cta-banner-section .cta-banner__content .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F3E5D7;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.cta-section .cta-banner-section .cta-banner__content .cta-btn:hover {
  color: #49494A;
}
.cta-section .cta-banner-section .cta-banner__content .cta-btn:hover::before {
  transform: translateX(0);
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .cta-section .cta-banner-section .cta-banner {
    min-height: 280px;
  }
  .cta-section .cta-banner-section .cta-banner .row {
    min-height: 280px;
  }
  .cta-section .cta-banner-section .cta-banner__content {
    padding: 2.5rem;
    transform: translateY(-1.5rem);
  }
  .cta-section .cta-banner-section .cta-banner__content h2 {
    font-size: 3rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cta-section .cta-banner-section .cta-banner {
    border-radius: 2rem;
  }
  .cta-section .cta-banner-section .cta-banner__content {
    padding: 2rem;
    transform: none;
  }
  .cta-section .cta-banner-section .cta-banner__content h2 {
    font-size: 2.5rem;
  }
  .cta-section .cta-banner-section .cta-banner__content p {
    max-width: 100%;
  }
  .cta-section .cta-banner-section .cta-banner__left-img {
    height: 250px;
  }
  .cta-section .cta-banner-section .cta-banner__left-img img {
    height: 100%;
  }
  .cta-section .cta-banner-section .cta-banner__right-img {
    height: 335px;
  }
  .cta-section .cta-banner-section .cta-banner__right-img img {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .cta-section .cta-banner-section .cta-banner {
    border-radius: 1.5rem;
  }
  .cta-section .cta-banner-section .cta-banner .row {
    min-height: auto;
  }
  .cta-section .cta-banner-section .cta-banner__left-img, .cta-section .cta-banner-section .cta-banner__right-img {
    height: 220px;
  }
  .cta-section .cta-banner-section .cta-banner__left-img img, .cta-section .cta-banner-section .cta-banner__right-img img {
    height: 100%;
  }
  .cta-section .cta-banner-section .cta-banner__content {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .cta-section .cta-banner-section .cta-banner__content h2 {
    font-size: 2.4rem;
    line-height: 1.1;
  }
  .cta-section .cta-banner-section .cta-banner__content p {
    max-width: 100%;
    margin-inline: auto;
  }
  .cta-section .cta-banner-section .cta-banner__content .cta-btn {
    margin-inline: auto;
  }
}

.footer-section {
  position: relative;
  background: #37404B;
}
.footer-section .footer-main {
  padding-block: 4rem;
  background: #37404B;
}
.footer-section .footer-home {
  padding-block: 8rem;
}
.footer-section .footer-about .footer-logo {
  width: fit-content;
  transform: translateX(-29%);
}
.footer-section .footer-about p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  max-width: 320px;
}
.footer-section .footer-links h5 {
  color: var(--bs-white);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1.5rem;
}
.footer-section .footer-links ul {
  list-style: none;
  padding-left: 0;
}
.footer-section .footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-section .footer-links ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-section .footer-links ul li a:hover {
  color: var(--bs-white);
  padding-left: 0.3rem;
}
.footer-section .footer-newsletter h5 {
  color: var(--bs-white);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 1.5rem;
}
.footer-section .footer-newsletter form {
  background: rgb(76.5769230769, 89.1076923077, 104.4230769231);
}
.footer-section .footer-newsletter .newsletter-field {
  position: relative;
}
.footer-section .footer-newsletter .newsletter-field input {
  width: 100%;
  border: none;
  outline: none;
}
.footer-section .footer-newsletter .newsletter-field input::placeholder {
  font-size: 1.1rem;
}
.footer-section .footer-newsletter .newsletter-field button {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  font-size: 1.3rem;
  border-radius: 50%;
  background: #7E93AB;
  color: var(--bs-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  transition: all 0.3s ease;
}
.footer-section .footer-newsletter .newsletter-field button:hover {
  transform: translateY(-50%) scale(1.08);
}
.footer-section .footer-newsletter .social-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
}
.footer-section .footer-newsletter .social-wrap span {
  color: var(--bs-white);
  font-weight: 500;
}
.footer-section .footer-newsletter .social-wrap a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--bs-white);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  transition: all 0.3s ease;
}
.footer-section .footer-newsletter .social-wrap a:hover {
  background: var(--bs-white);
}
.footer-section .footer-newsletter .social-wrap a:hover svg {
  filter: invert(1);
}
.footer-section .footer-bottom {
  background: rgb(61.4730769231, 71.5323076923, 83.8269230769);
  padding: 1rem 0;
}
.footer-section .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}
.footer-section .footer-bottom p span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .footer-section .footer-about .footer-logo {
    transform: none;
  }
  .footer-section .footer-about p {
    max-width: 100%;
    text-align: center;
  }
  .footer-section .footer-home {
    padding-block: 4rem;
  }
}

.cmlogo img {
  filter: invert(1);
}

.custom-scroll {
  overflow-y: auto;
  height: 180px;
}
.custom-scroll::-webkit-scrollbar {
  width: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: #7E93AB;
  border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: rgba(156, 156, 156, 0.2);
}

.product-listing-section h3 {
  font-family: "Manrope", sans-serif;
}
.product-listing-section .products-grid {
  grid-template-columns: repeat(3, 1fr);
}
.product-listing-section .available-filter .box {
  background: rgba(242.25, 242.25, 242.25, 0.6980392157);
}
.product-listing-section .sort {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
}
.product-listing-section .sort p {
  margin: 0;
  color: #9C9C9C;
  font-size: 0.875rem;
  white-space: nowrap;
}
.product-listing-section .sort .sort-select {
  position: relative;
}
.product-listing-section .sort .sort-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%239C9C9C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.product-listing-section .sort .sort-select .form-select {
  min-width: 180px;
  height: 42px;
  padding: 0 2.5rem 0 1rem;
  border: 1px solid rgba(156, 141, 126, 0.3);
  border-radius: 30px;
  background-color: white;
  color: #49494A;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
}
.product-listing-section .sort .sort-select .form-select:focus {
  border-color: #7E93AB;
  box-shadow: none;
}
@media (max-width: 768px) {
  .product-listing-section .sort {
    width: 100%;
    justify-content: space-between;
  }
  .product-listing-section .sort .sort-select {
    width: 180px;
  }
  .product-listing-section .sort .sort-select .form-select {
    width: 100%;
  }
}

.filter-accordion .accordion-item {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
}
.filter-accordion .accordion-button {
  background: #F3E5D7;
  box-shadow: none;
  border: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #49494A;
  padding: 0.85rem 1rem;
}
.filter-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
}
.filter-accordion .accordion-button:not(.collapsed) {
  background: rgba(243, 229, 215, 0.5);
  color: #49494A;
  box-shadow: none;
}
.filter-accordion .accordion-button::after {
  width: 18px;
  height: 18px;
  background-image: none;
  content: "\f282";
  font-family: "bootstrap-icons";
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  color: #49494A;
  font-size: 1rem;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}
.filter-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.filter-accordion .accordion-body {
  background: rgba(245, 241, 236, 0.5);
  padding: 1.25rem 1rem;
  max-height: 220px;
}
.filter-accordion .accordion-body .form-check {
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0.75rem;
}
.filter-accordion .accordion-body .form-check:last-child {
  margin-bottom: 0;
}
.filter-accordion .accordion-body .form-check .form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0;
  border-radius: 0;
  border: 1px solid rgba(73, 73, 74, 0.3);
}
.filter-accordion .accordion-body .form-check .form-check-input:checked {
  background-color: #7E93AB;
  border-color: #7E93AB;
}
.filter-accordion .accordion-body .form-check .form-check-input:focus {
  box-shadow: none;
}
.filter-accordion .accordion-body .form-check .form-check-label {
  font-size: 1rem;
  color: #49494A;
  font-family: "Manrope", sans-serif;
}

.custom-pagination {
  gap: 10px;
}
.custom-pagination .page-item .page-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #212121;
  background: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: none;
}
.custom-pagination .page-item .page-link:hover {
  background: #bea68e;
  border-color: #bea68e;
  color: #fff;
}
.custom-pagination .page-item.active .page-link {
  background: #bea68e;
  border-color: #bea68e;
  color: #fff;
}
.custom-pagination .page-item.disabled .page-link {
  background: transparent;
  border: none;
  color: #999;
  pointer-events: none;
}

.prs-wrap {
  max-width: 340px;
}
.prs-wrap .prs-label {
  font-size: 1rem;
  color: #9C9C9C;
  margin-bottom: 0.85rem;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}
.prs-wrap .prs-slider {
  position: relative;
  height: 24px;
}
.prs-wrap .prs-slider .prs-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(126, 147, 171, 0.25);
  border-radius: 999px;
  transform: translateY(-50%);
}
.prs-wrap .prs-slider .prs-track-fill {
  position: absolute;
  top: 50%;
  height: 3px;
  background: #7E93AB;
  border-radius: 999px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.prs-wrap .prs-slider input[type=range] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  margin: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
}
.prs-wrap .prs-slider input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
}
.prs-wrap .prs-slider input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7E93AB;
  border: 2px solid #fff;
  margin-top: 5px;
  cursor: pointer;
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}
.prs-wrap .prs-slider input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}
.prs-wrap .prs-slider input[type=range]::-moz-range-track {
  background: transparent;
  border: none;
}
.prs-wrap .prs-slider input[type=range]::-moz-range-thumb {
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #7E93AB;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
}
.prs-wrap .price-values {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-family: "Manrope", sans-serif;
  color: #37404B;
  font-weight: 600;
}

.product-listing-section .custom-scroll {
  overflow: hidden;
  height: auto;
}
.product-listing-section .filter-accordion .custom-scroll {
  overflow-y: auto;
  height: 180px;
}

.filter-btn {
  position: fixed;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  background-color: #7E93AB;
  color: var(--bs-white);
}

.filter-actions {
  display: none;
}

@media (max-width: 767.98px) {
  .filter-panel .offcanvas-body {
    overflow-y: auto;
  }
  .filter-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    gap: 12px;
    padding: 15px;
    margin-top: 20px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .filter-actions .btn {
    flex: 1;
    height: 48px;
    border-radius: 8px;
    font-weight: 600;
  }
  .filter-actions .apply-filter {
    background: #7E93AB;
    color: #fff;
    border: 1px solid #7E93AB;
  }
  .filter-actions .apply-filter:hover {
    background: #7E93AB;
    color: #fff;
  }
}
@media (min-width: 768px) {
  .filter-panel {
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    width: 100% !important;
    height: auto !important;
  }
  .filter-panel .offcanvas-header {
    display: none;
  }
  .filter-panel .offcanvas-body {
    overflow: visible;
  }
}
.product-details {
  background: var(--bs-white);
}
.product-details .product-gallery .productMainSlider {
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
}
.product-details .product-gallery .productMainSlider img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .product-details .product-gallery .productMainSlider img {
    height: 350px;
  }
}
.product-details .product-gallery .swiper-button-next,
.product-details .product-gallery .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(73, 73, 74, 0.4);
  backdrop-filter: blur(10px);
  z-index: 10;
  pointer-events: auto;
}
.product-details .product-gallery .swiper-button-next::after,
.product-details .product-gallery .swiper-button-prev::after {
  font-size: 18px;
  color: var(--bs-white);
  font-weight: 700;
}
.product-details .product-gallery .productThumbSlider .swiper-slide {
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.product-details .product-gallery .productThumbSlider .swiper-slide img {
  width: 100%;
  object-fit: cover;
}
.product-details .product-gallery .productThumbSlider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #7E93AB;
}
.product-details .product-info .product-category {
  font-size: 0.875rem;
  color: #9C9C9C;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
}
.product-details .product-info h1 {
  font-family: "Cormorant Garamond", serif;
  color: #49494A;
}
.product-details .product-info .prod_div {
  width: 70%;
}
.product-details .product-info .rating-wrap i {
  color: #e0c644;
  font-size: 1rem;
}
.product-details .product-info .rating-wrap span {
  color: #7E93AB;
}
.product-details .product-info .share-product {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
.product-details .product-info .share-product .share-label {
  font-family: "Cormorant Garamond", serif;
  color: #49494A;
}
.product-details .product-info .share-product .share-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-details .product-info .share-product .share-list li a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(243, 229, 215, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  color: #9C8D7E;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-details .product-info .share-product .share-list li a i {
  font-size: 0.9rem;
}
.product-details .product-info .share-product .share-list li a:hover {
  background: #7E93AB;
  color: white;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .product-details .product-info .share-product {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.product-details .product-info .product-desc {
  color: #9C9C9C;
}
.product-details .product-info .size-selector {
  margin-top: 2rem;
}
.product-details .product-info .size-selector h6 {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
}
.product-details .product-info .size-selector .size-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-details .product-info .size-selector .size-options input {
  display: none;
}
.product-details .product-info .size-selector .size-options label {
  padding: 0.5rem;
  border: 1px solid #F5F1EC;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #9C9C9C;
}
.product-details .product-info .size-selector .size-options input:checked + label {
  background: #7E93AB;
  border-color: #7E93AB;
  color: var(--bs-white);
}
.product-details .product-info .product-actions {
  margin-top: 2rem;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.product-details .product-info .product-actions .quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  overflow: hidden;
}
.product-details .product-info .product-actions .quantity-box button {
  width: 35px;
  height: 35px;
  border: 1px solid #F5F1EC;
  background: transparent;
}
.product-details .product-info .product-actions .quantity-box input {
  width: 50px;
  border: none;
  text-align: center;
}
.product-details .product-info .product-actions .cart-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: #7E93AB;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white;
}
.product-details .product-info .product-actions .cart-btn .btn-text {
  padding-right: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  transition: all 0.45s ease;
}
.product-details .product-info .product-actions .cart-btn .btn-icon {
  position: absolute;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #516D8E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s linear;
}
.product-details .product-info .product-actions .cart-btn .btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M15.75 20.25L22.5 13.5L15.75 6.75M22.5 13.5H10.6875M4.5 13.5H7.3125' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.product-details .product-info .product-actions .cart-btn:hover .btn-icon {
  right: calc(100% - 30px);
  transform: rotate(-45deg);
}
.product-details .product-info .product-actions .cart-btn:hover .btn-text {
  transform: translateX(24px);
}
.product-details .product-info .product-actions .cart-btn {
  height: 45px;
}
.product-details .product-info .product-actions .cart-btn .icon {
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.product-details .product-info .product-actions .cart-btn:hover .icon {
  transform: rotate(-45deg);
}
.product-details .product-info .product-actions .theme-btn-two {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  min-width: fit-content;
  border: 1px solid rgba(156, 141, 126, 0.4);
  border-radius: 50px;
  background: #F3E5D7;
  color: #49494A;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.product-details .product-info .product-actions .theme-btn-two span {
  position: relative;
  z-index: 3;
}
.product-details .product-info .product-actions .theme-btn-two::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F5F1EC;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.product-details .product-info .product-actions .theme-btn-two:hover {
  color: #49494A;
}
.product-details .product-info .product-actions .theme-btn-two:hover::before {
  transform: translateX(0);
}
.product-details .product-info .product-actions .theme-btn-two {
  color: #4A3724;
}
.product-details .product-info .product-actions .theme-btn-two:hover {
  color: #4A3724;
}
.product-details .product-info .product-actions .theme-btn-two::before {
  z-index: -1;
}
.product-details .product-info .product-actions .wishlist-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
.product-details .product-info .product-actions .wishlist-btn i {
  font-size: 1.5rem;
  margin-top: 4px;
  color: rgba(73, 73, 74, 0.4);
}
.product-details .product-info .product-actions .wishlist-btn:hover {
  background: #7E93AB;
  color: white;
}
.product-details .product-info .product-meta {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.product-details .product-info .product-meta p {
  margin-bottom: 0.75rem;
  color: #9C9C9C;
}
.product-details .product-info .product-meta p strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--bs-black);
}

.benefits-section {
  background: rgba(243, 229, 215, 0.5);
}
.benefits-section .sec-tag .tag-dot {
  background: #7E93AB;
}
.benefits-section .key-benefits h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #49494A;
  margin-bottom: 1.5rem;
}
.benefits-section .key-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefits-section .key-benefits ul li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #9C9C9C;
  line-height: 1.7;
}
.benefits-section .key-benefits ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #7E93AB;
  border-radius: 50%;
  z-index: 2;
}
.benefits-section .key-benefits ul li::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(156, 141, 126, 0.35);
  border-radius: 50%;
}
.benefits-section .key-benefits ul li:last-child {
  margin-bottom: 0;
}

.ingredient-benefits .sec-tag .tag-dot {
  background: #7E93AB;
}
.ingredient-benefits .benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 200px;
  height: 30rem;
  background: #fff;
  transition: all 0.4s ease;
}
.ingredient-benefits .benefit-card:hover {
  transform: translateY(-8px);
}
.ingredient-benefits .benefit-card:hover img {
  transform: scale(1.08);
}
.ingredient-benefits .benefit-card .benefit-image {
  height: 100%;
}
.ingredient-benefits .benefit-card .benefit-image img {
  transition: 0.6s ease;
}
.ingredient-benefits .benefit-card .benefit-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: rgba(126, 147, 171, 0.65);
  backdrop-filter: blur(10px);
}
.ingredient-benefits .benefit-card .benefit-content h4 {
  color: white;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 0.5rem;
}
.ingredient-benefits .benefit-card .benefit-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
  font-family: "Manrope", sans-serif;
}
@media (max-width: 768px) {
  .ingredient-benefits .benefit-card {
    height: 320px;
    max-width: 260px;
    margin-inline: auto;
  }
  .ingredient-benefits .benefit-card .benefit-content h4 {
    font-size: 1.7rem;
  }
}

.keyingredients-section {
  background: #7E93AB;
  padding: 5rem 0;
}
.keyingredients-section .ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
}
.keyingredients-section .ingredient-item .ingredient-img {
  flex-shrink: 0;
  width: 15rem;
  aspect-ratio: 1/1;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #F5F1EC;
}
.keyingredients-section .ingredient-item .ingredient-img img {
  height: 100%;
  transition: all 0.4s ease;
}
.keyingredients-section .ingredient-item .ingredient-content {
  flex: 1;
}
.keyingredients-section .ingredient-item .ingredient-content h3 {
  color: var(--bs-white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.keyingredients-section .ingredient-item .ingredient-content p {
  color: var(--bs-white);
  font-size: 1rem;
  margin: 0;
}
.keyingredients-section .ingredient-item:hover .ingredient-img img {
  transform: scale(1.08);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .keyingredients-section .ingredient-item .ingredient-img {
    width: 140px;
    height: 140px;
  }
  .keyingredients-section .ingredient-item .ingredient-content h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .keyingredients-section {
    padding: 3rem 0;
  }
  .keyingredients-section .ingredient-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .keyingredients-section .ingredient-item .ingredient-img {
    width: 180px;
    height: 180px;
  }
  .keyingredients-section .ingredient-item .ingredient-content h3 {
    font-size: 1.75rem;
  }
  .keyingredients-section .ingredient-item .ingredient-content p {
    font-size: 0.875rem;
  }
}

.result-section {
  padding-block: 5rem;
}
.result-section .shapesvg {
  top: 7%;
  left: 4%;
}
.result-section .result-img {
  border-radius: 1.5rem 10rem 1.5rem 10rem;
}
.result-section .result-img img {
  border-radius: 1.5rem 10rem 1.5rem 10rem;
}
.result-section .feature-boxes .feature-card {
  flex: 0 0 calc(50% - 0px);
  margin-bottom: 2rem;
}
.result-section .feature-boxes .feature-card .icon {
  width: 50px;
  height: 50px;
  background: #7E93AB;
}
.result-section .feature-boxes .feature-card h3 {
  color: var(--bs-black);
}

.apply-section {
  background: #F5F1EC;
  padding: 70px 0;
}
.apply-section .animateline svg {
  width: 100px;
}
.apply-section .animateline svg path {
  stroke: #d0a880;
}

.apply-card {
  position: relative;
  cursor: pointer;
  z-index: 9;
  padding-inline: 1rem;
}
.apply-card .apply-image {
  height: 18rem;
  overflow: hidden;
  border-radius: 6px;
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}
.apply-card .apply-image img {
  object-fit: none;
  object-position: center 18%;
  transition: all 0.4s ease;
}
.apply-card .apply-number {
  position: absolute;
  height: 100px;
  bottom: 7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  z-index: 2;
  display: inline-block;
  transition: all 0.4s ease;
}
.apply-card .content {
  margin-top: 3rem;
}
.apply-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}
.apply-card p {
  font-family: "Manrope", sans-serif;
}
.apply-card:hover .apply-image {
  transform: perspective(600px) rotateY(-8deg) rotateX(5deg) scale(1.04);
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
}
.apply-card:hover .apply-image img {
  transform: scale(1.12);
}
.apply-card:hover .apply-number {
  transform: scale(1.18) rotate(8deg) translateY(-5px);
  color: #e0c4a9;
}
@media (max-width: 768px) {
  .apply-card .apply-image {
    height: 230px;
  }
}

.reviews-section .reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
.reviews-section .reviews-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #37404B;
}
.reviews-section .reviews-header p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #9C9C9C;
}
@media (max-width: 768px) {
  .reviews-section .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.reviews-section .sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-section .sort-box span {
  font-size: 0.875rem;
  color: #49494A;
}
.reviews-section .sort-box select {
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  padding: 10px 35px 10px 18px;
  outline: none;
  font-size: 0.875rem;
}
.reviews-section .review-card {
  width: 100%;
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
}
.reviews-section .review-card .user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-section .review-card .user-info img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.reviews-section .review-card .user-info span {
  font-size: 12px;
  color: #89939F;
}
.reviews-section .review-card .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}
.reviews-section .review-card .rating span {
  color: #f6c343;
  letter-spacing: 2px;
}
.reviews-section .review-card .rating p {
  margin: 0;
  font-size: 0.875rem;
  color: #9C9C9C;
}
.reviews-section .review-card .review-text {
  font-size: 0.875rem;
  width: 60%;
  color: #49494A;
  margin: 0;
}
.reviews-section .review-media {
  display: flex;
  gap: 1rem;
  margin-top: 25px;
}
.reviews-section .review-media a {
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 10px;
}
.reviews-section .review-media a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.reviews-section .review-media a:hover img {
  transform: scale(1.1);
}
.reviews-section .video-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}
.reviews-section .video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
}
.reviews-section .video-thumb .play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 11px solid #222;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.reviews-section .review-btn {
  margin-top: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  min-width: 180px;
  border: 1px solid rgba(156, 141, 126, 0.4);
  border-radius: 50px;
  background: #516D8E;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.reviews-section .review-btn span {
  position: relative;
  z-index: 3;
}
.reviews-section .review-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7E93AB;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.reviews-section .review-btn:hover {
  color: white;
}
.reviews-section .review-btn:hover::before {
  transform: translateX(0);
}

.glightbox-container .gclose {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  width: 45px !important;
  height: 45px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  border-radius: 50%;
  opacity: 1 !important;
  z-index: 99999 !important;
}
.glightbox-container .gclose svg {
  display: none !important;
}
.glightbox-container .gclose::before {
  content: "×";
  font-size: 34px;
  color: #222;
  line-height: 1;
}

.sort-box .custom-sort {
  position: relative;
}
.sort-box .custom-sort .sort-btn {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.75rem;
  cursor: pointer;
}
.sort-box .custom-sort .sort-menu {
  position: absolute;
  top: 45px;
  right: 0;
  width: 160px;
  background: white;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
  display: none;
  z-index: 10;
}
.sort-box .custom-sort .sort-menu li {
  list-style: none;
  padding: 10px 18px;
  font-size: 0.75rem;
  cursor: pointer;
}
.sort-box .custom-sort .sort-menu li:hover {
  background: #f5f5f5;
}
.sort-box .custom-sort.active .sort-menu {
  display: block;
}

.review-modal .modal-content {
  border: none;
  border-radius: 20px;
  padding: 10px;
}
.review-modal .modal-header {
  border: 0;
}
.review-modal .modal-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
}
.review-modal .review-form {
  padding: 20px;
}
.review-modal .review-form .input-group {
  position: relative;
  margin-bottom: 25px;
}
.review-modal .review-form .input-group input,
.review-modal .review-form .input-group textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 15px;
  outline: none;
  font-size: 0.75rem;
}
.review-modal .review-form .input-group input:focus,
.review-modal .review-form .input-group textarea:focus {
  border-color: #7E93AB;
}
.review-modal .review-form .input-group textarea {
  height: 120px;
  resize: none;
}
.review-modal .review-form .input-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #888;
  pointer-events: none;
  background: white;
  padding: 0 5px;
  transition: 0.3s;
}
.review-modal .review-form .input-group textarea + label {
  top: 20px;
}
.review-modal .review-form .input-group input:focus + label,
.review-modal .review-form .input-group textarea:focus + label,
.review-modal .review-form .input-group input:valid + label,
.review-modal .review-form .input-group textarea:valid + label {
  top: -8px;
  font-size: 10px;
  color: #7E93AB;
}
.review-modal .review-form .rating-input {
  margin-bottom: 25px;
}
.review-modal .review-form .rating-input p {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.review-modal .review-form .rating-input .stars span {
  font-size: 25px;
  color: #ddd;
  cursor: pointer;
}
.review-modal .review-form .rating-input .stars span:hover, .review-modal .review-form .rating-input .stars span.active {
  color: #f6c343;
}
.review-modal .review-form .upload-box {
  border: 1px dashed #ddd;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
}
.review-modal .review-form .upload-box input {
  width: 100%;
}
.review-modal .review-form .upload-box img,
.review-modal .review-form .upload-box video {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.review-modal .review-form .submit-review {
  width: 100%;
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  min-width: 180px;
  border: 1px solid rgba(156, 141, 126, 0.4);
  border-radius: 50px;
  background: #516D8E;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.review-modal .review-form .submit-review span {
  position: relative;
  z-index: 3;
}
.review-modal .review-form .submit-review::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #7E93AB;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.review-modal .review-form .submit-review:hover {
  color: white;
}
.review-modal .review-form .submit-review:hover::before {
  transform: translateX(0);
}

.cellular-theory-section {
  background: rgba(243, 229, 215, 0.3);
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}
.cellular-theory-section .molecule {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
}
.cellular-theory-section .molecule.molecule-left {
  top: 20px;
  left: 0;
  width: 180px;
}
.cellular-theory-section .molecule.molecule-right {
  bottom: 20px;
  right: 0;
  width: 180px;
}
.cellular-theory-section p {
  color: #9C9C9C;
}
.cellular-theory-section .theory-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  width: 280px;
  height: 280px;
  border-radius: 115px 179px;
  background: #F3E5D7;
  text-align: center;
  padding: 45px;
  transition: all 0.3s ease;
}
.cellular-theory-section .theory-card .icon {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.cellular-theory-section .theory-card .icon img {
  width: 40px;
}
.cellular-theory-section .theory-card h4 {
  font-family: "Cormorant Garamond", serif;
  color: #4A3724;
  font-size: 28px;
  margin: 0;
}
.cellular-theory-section .theory-card p {
  color: #9C9C9C;
  font-size: 0.875rem;
  margin: 0;
}
.cellular-theory-section .theory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cellular-theory-section .theory-card {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .cellular-theory-section {
    padding: 70px 0;
  }
  .cellular-theory-section .theory-card {
    width: 300px;
    height: 300px;
  }
  .cellular-theory-section .molecule {
    display: none;
  }
  .cellular-theory-section .section-title {
    font-size: 38px;
  }
}

.trusted-quality {
  overflow: hidden;
}
.trusted-quality .trusted-quality-wrapper {
  position: relative;
  margin-top: 8rem;
}
.trusted-quality .trusted-quality-wrapper::after {
  content: "";
  position: absolute;
  top: -56%;
  left: 50%;
  right: 10%;
  width: 1px;
  height: 68%;
  background: repeating-linear-gradient(to top, rgba(126, 147, 171, 0.45) 0px, rgba(126, 147, 171, 0.45) 10px, transparent 10px, transparent 15px);
  z-index: 0;
  animation: dashMoveVertical 1.2s linear infinite;
}
@media (max-width: 768px) {
  .trusted-quality .trusted-quality-wrapper::after {
    display: none;
  }
}
.trusted-quality .trusted-quality-wrapper::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(126, 147, 171, 0.45) 0, rgba(126, 147, 171, 0.45) 10px, transparent 10px, transparent 18px);
  z-index: 0;
  animation: dashMoveHorizontal 1.2s linear infinite;
}
@media (max-width: 768px) {
  .trusted-quality .trusted-quality-wrapper::before {
    display: none;
  }
}
.trusted-quality .trusted-quality-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  position: relative;
  text-align: center;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.4s ease;
}
.trusted-quality .trusted-quality-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1px;
  background: repeating-conic-gradient(rgba(126, 147, 171, 0.6) 1deg 6deg, transparent 10deg 16deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 1px), #000 0);
  animation: dashRotate 12s linear infinite;
  transform-origin: center;
  pointer-events: none;
}
.trusted-quality .trusted-quality-item:hover::before {
  animation-duration: 3s;
}
.trusted-quality .trusted-quality-item .trusted-quality-circle {
  margin-bottom: 0.7rem;
}
.trusted-quality .trusted-quality-item .trusted-quality-circle img {
  width: 34px;
  transition: all 0.3s ease;
}
.trusted-quality .trusted-quality-item h6 {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #516D8E;
  width: 80%;
  margin-inline: auto;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .trusted-quality .trusted-quality-circle {
    width: 90px;
  }
}
@media (max-width: 768px) {
  .trusted-quality .trusted-quality-wrapper {
    margin-top: 3rem;
  }
  .trusted-quality .trusted-quality-item {
    margin-bottom: 1rem;
  }
  .trusted-quality .trusted-quality-item .trusted-quality-circle {
    width: 50px;
    height: 80px;
    margin-bottom: 0;
  }
  .trusted-quality .trusted-quality-item .trusted-quality-circle img {
    width: 100%;
    height: 100%;
  }
  .trusted-quality .trusted-quality-item h6 {
    font-size: 0.875rem;
  }
}

@keyframes dashMoveHorizontal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 18px 0;
  }
}
@keyframes dashMoveVertical {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -16px;
  }
}
@keyframes dashRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.active-ingredients {
  background: rgba(243, 229, 215, 0.3);
  overflow: hidden;
}
.active-ingredients .gridbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.active-ingredients .active-ingredient-card {
  text-align: center;
  transition: all 0.4s ease;
}
.active-ingredients .active-ingredient-card .active-ingredient-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 22.6px 0 rgba(0, 0, 0, 0.03);
  margin-bottom: 1rem;
  position: relative;
}
.active-ingredients .active-ingredient-card .active-ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.active-ingredients .active-ingredient-card .active-ingredient-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(126, 147, 171, 0.08);
  opacity: 0;
  transition: all 0.3s ease;
}
.active-ingredients .active-ingredient-card h6 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #4A3724;
  margin-bottom: 0;
  font-weight: 500;
  transition: all 0.3s ease;
}
.active-ingredients .active-ingredient-card:hover .active-ingredient-img img {
  transform: scale(0.9);
}
.active-ingredients .active-ingredient-card:hover .active-ingredient-img::after {
  opacity: 1;
}
.active-ingredients .active-ingredient-card:hover h6 {
  color: #7E93AB;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .active-ingredients .active-ingredient-card h6 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .active-ingredients .row {
    row-gap: 1.5rem !important;
  }
  .active-ingredients .gridbox {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .active-ingredients .active-ingredient-card .active-ingredient-img {
    border-radius: 50px;
  }
  .active-ingredients .active-ingredient-card h6 {
    font-size: 1.4rem;
  }
}

.works-process .section-heading .sec-tag .tag-dot {
  background: #7E93AB;
}
.works-process .top-row {
  position: relative;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  transform: translate(3px, 40px);
  z-index: 11;
}
.works-process .bottom-row {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  transform: translateX(21%);
}
.works-process .svgss {
  position: relative;
  height: 150px;
  overflow: hidden;
  z-index: 0;
}
.works-process .svgss .svg-one {
  transform: translateX(56%);
}
.works-process .svgss .svg-two {
  transform: translateX(113%);
}
.works-process .svgss .svg-three {
  transform: translateX(365%);
}
.works-process .svgss svg {
  height: 150px;
}
.works-process .svgss svg path {
  stroke-dasharray: 8 8;
  /* Dash pattern */
  stroke-dashoffset: 200;
  animation: dashMove 6s linear infinite;
}
.works-process .arrow {
  position: absolute;
  z-index: 11;
}
.works-process .one {
  left: 17.5%;
  width: 20px;
  top: 45%;
}
.works-process .two {
  left: 29.4%;
  width: 20px;
  top: 20%;
  transform: rotate(-95deg);
}
.works-process .three {
  left: 50.8%;
  width: 20px;
  top: 45%;
}
.works-process .four {
  left: 58.3%;
  width: 20px;
  top: 58%;
  transform: rotate(-95deg);
}
.works-process .five {
  left: 83.5%;
  width: 20px;
  top: 45%;
}
.works-process .process-card {
  position: relative;
  width: 160px;
  aspect-ratio: 1/1;
  border-radius: 30px;
  background: linear-gradient(180deg, #7e93ab 0%, #91afd1 100%);
  box-shadow: 0 4px 17.6px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.works-process .process-card .process-icon {
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  background: rgba(245, 241, 236, 0.3);
}
.works-process .process-card .process-icon img {
  width: 40px;
}
.works-process .process-card h5 {
  font-family: "Cormorant Garamond", serif;
  color: var(--bs-white);
  font-size: 2.5rem;
  margin-bottom: 0;
}
.works-process .process-card h4 {
  position: absolute;
  bottom: -45px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .works-process .svgss svg {
    height: 138px;
  }
  .works-process .svgss .svg-one {
    transform: translateX(53%);
    padding-top: 0.5rem;
  }
  .works-process .svgss .svg-two {
    transform: translateX(95%);
    padding-top: 0.6rem;
  }
  .works-process .svgss .svg-three {
    transform: translateX(309%);
    padding-top: 0.5rem;
  }
  .works-process .one {
    top: 42%;
  }
  .works-process .two {
    left: 27.4%;
    top: 46%;
  }
  .works-process .three {
    left: 49.9%;
  }
  .works-process .four {
    left: 58.3%;
    top: 56%;
  }
  .works-process .five {
    left: 83%;
  }
  .works-process .top-row {
    transform: translate(14px, 20px);
  }
}
@media (min-width: 1481px) and (max-width: 1600px) {
  .works-process .one {
    top: 42%;
  }
  .works-process .two {
    left: 27.4%;
    top: 46%;
  }
  .works-process .three {
    left: 49.9%;
  }
  .works-process .four {
    left: 58.3%;
    top: 56%;
  }
  .works-process .five {
    left: 83%;
  }
  .works-process .top-row {
    transform: translate(14px, 20px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .works-process .top-row,
  .works-process .bottom-row {
    width: 85%;
  }
  .works-process .bottom-row {
    margin-top: 7rem;
  }
}

.team-section {
  overflow: hidden;
  padding: 100px 0;
}
.team-section .team-content {
  max-width: 320px;
}
.team-section .team-content .team-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  line-height: 1.1;
  color: #4A3724;
  margin-bottom: 1.5rem;
}
.team-section .team-content .team-description {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #9C9C9C;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.team-section .teamSwiper {
  overflow: hidden;
  padding: 40px 0;
}
.team-section .swiper-wrapper {
  align-items: center;
}
.team-section .swiper-slide {
  width: 150px;
  transition: width 0.6s ease;
  flex-shrink: 0;
}
.team-section .swiper-slide-active {
  width: 330px !important;
}
.team-section .team-card {
  position: relative;
  height: 520px;
  border-radius: 120px;
  overflow: hidden;
  transition: 0.5s ease;
}
.team-section .team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.team-section .team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.team-section .team-card .team-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.team-section .team-card .team-info h4 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  margin-bottom: 5px;
}
.team-section .team-card .team-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}
.team-section .swiper-slide-active .team-card {
  filter: grayscale(0);
  transform: scale(1);
}
.team-section .swiper-slide-active .team-card::after {
  opacity: 1;
}
.team-section .swiper-slide-active .team-card .team-info {
  opacity: 1;
  transform: translateY(0);
}
.team-section .swiper-slide:not(.swiper-slide-active) .team-card {
  filter: grayscale(100%);
  transform: scale(0.95);
}
.team-section .swiper-slide:not(.swiper-slide-active) .team-card::after {
  opacity: 0;
}
.team-section .swiper-slide:not(.swiper-slide-active) .team-card .team-info {
  opacity: 0;
  transform: translateY(20px);
}
.team-section .swiper-slide:not(.swiper-slide-active) .team-card:hover {
  filter: grayscale(0);
}
.team-section .swiper-slide:not(.swiper-slide-active) .team-card:hover img {
  transform: scale(1.05);
}
.team-section .team-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-section .team-navigation .team-nav-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #7E93AB;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team-section .team-navigation .team-nav-btn svg {
  font-size: 1.2rem;
}
.team-section .team-navigation .team-nav-btn:hover {
  background: #F3E5D7;
  transform: scale(0.9);
}
.team-section .team-navigation .team-nav-btn.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
@media (min-width: 1481px) and (max-width: 1600px) {
  .team-section .swiper-slide-active {
    width: 300px !important;
  }
  .team-section .team-card {
    height: 480px;
  }
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .team-section .swiper-slide {
    width: 130px;
  }
  .team-section .swiper-slide-active {
    width: 270px !important;
  }
  .team-section .team-card {
    height: 430px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .team-section .team-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .team-section .swiper-slide {
    width: 140px;
  }
  .team-section .swiper-slide-active {
    width: 260px !important;
  }
  .team-section .team-card {
    height: 400px;
  }
  .team-section .team-navigation {
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }
  .team-section .team-content {
    text-align: center;
  }
  .team-section .teamSwiper {
    padding: 0;
  }
  .team-section .swiper-slide-active {
    width: 75% !important;
  }
  .team-section .team-card {
    height: 380px;
    border-radius: 45px;
  }
  .team-section .team-card::after {
    opacity: 1;
  }
  .team-section .team-card .team-info {
    opacity: 1;
    transform: translateY(0);
  }
  .team-section .team-navigation {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .team-section .swiper-slide-active {
    width: 40% !important;
  }
  .team-section .team-card .team-info h4 {
    font-size: 1rem;
  }
}
.team-section .team-navigation {
  justify-content: start;
}
.team-section .team-navigation .team-nav-btn {
  width: 50px;
  height: 50px;
}

.formula-banner {
  padding-block: 8rem;
  z-index: 1;
  height: 80vh;
}
.formula-banner .bg {
  z-index: -1;
}
.formula-banner .formula-content .formula-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #4A3724;
  margin-bottom: 1rem;
}
.formula-banner .formula-content .formula-title {
  font-family: "Corinthia", cursive;
  font-size: 5rem;
  color: #c57a31;
  font-weight: 400;
}
.formula-banner .formula-content .formula-description {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: rgb(174.1636363636, 131.5, 88.8363636364);
  margin-bottom: 2.5rem;
}
.formula-banner .formula-content .formula-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  min-width: 180px;
  border: 1px solid #9C8D7E;
  border-radius: 50px;
  background: #5b3411;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease;
}
.formula-banner .formula-content .formula-btn span {
  position: relative;
  z-index: 3;
}
.formula-banner .formula-content .formula-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #9C8D7E;
  border-radius: inherit;
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
.formula-banner .formula-content .formula-btn:hover {
  color: #fff;
}
.formula-banner .formula-content .formula-btn:hover::before {
  transform: translateX(0);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .formula-banner {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .formula-banner {
    padding: 4rem 0;
    height: auto;
  }
  .formula-banner .formula-content {
    max-width: 100%;
    text-align: center;
  }
  .formula-banner .formula-content .formula-subtitle {
    font-size: 1.3rem;
  }
  .formula-banner .formula-content .formula-title {
    font-size: 3rem;
  }
  .formula-banner .formula-content .formula-description {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .formula-banner .formula-content {
    max-width: 60%;
    text-align: start;
  }
}

.glowing-reviews {
  background: linear-gradient(0deg, rgba(148, 173, 202, 0) -168.03%, #5e7793 81.26%);
}
.glowing-reviews h3 {
  font-weight: 300;
  font-family: "Cormorant Garamond", serif;
}
.glowing-reviews .apply-card {
  padding-inline: 0;
}
.glowing-reviews .apply-card .content {
  margin-top: 1rem;
  width: 75%;
}
.glowing-reviews .apply-card .apply-image {
  border-radius: 1.3rem;
  height: 20rem;
}
.glowing-reviews .apply-number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  width: 50px;
  height: 50px;
  background: var(--bs-white);
  transform: rotate(180deg);
  color: #7E93AB;
  right: 30px;
  bottom: 5.5rem;
}
.glowing-reviews .apply-number span {
  height: 100%;
  transform: translateY(-20px);
}
@media (max-width: 768px) {
  .glowing-reviews h3 {
    font-size: 1.5rem;
  }
  .glowing-reviews .apply-card .apply-image img {
    object-fit: cover !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .glowing-reviews .apply-number {
    bottom: 8rem;
  }
  .glowing-reviews .apply-card .apply-image {
    height: 15rem;
  }
}

.newslettercontainer {
  height: 200px;
}
.newslettercontainer .cta-banner-section .cta-banner {
  min-height: 200px;
  width: 90%;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  background: rgb(239.4692307692, 221.35, 203.2307692308);
  display: flex;
  align-items: center;
}
.newslettercontainer .cta-banner-section .cta-banner::after, .newslettercontainer .cta-banner-section .cta-banner::before {
  content: "";
  position: absolute;
  width: 10rem;
  height: 15rem;
  background: #F3E5D7;
  border-radius: 50%;
  transform: rotate(90deg);
}
.newslettercontainer .cta-banner-section .cta-banner::after {
  left: 0%;
  bottom: -72%;
}
.newslettercontainer .cta-banner-section .cta-banner::before {
  right: 0%;
  top: -70%;
}
.newslettercontainer .cta-banner-section .cta-banner h3 {
  font-size: 2.5rem;
}
.newslettercontainer .cta-banner-section .cta-banner h3 span {
  color: #7E93AB;
}
.newslettercontainer .cta-banner-section .cta-banner .row {
  min-height: auto;
}
.newslettercontainer .newsletter-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  background: white;
  overflow: hidden;
  max-width: 520px;
  margin-left: auto;
}
.newslettercontainer .newsletter-form .form-control {
  border: none;
  box-shadow: none;
  padding: 0.7rem 1.3rem;
  font-family: "Manrope", sans-serif;
}
.newslettercontainer .newsletter-form .form-control:focus {
  box-shadow: none;
}
.newslettercontainer .newsletter-form button {
  width: 170px;
  border: none;
  padding: 0.8rem 1.3rem;
  background: #7E93AB;
  color: white;
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
  transition: all 0.3s ease;
}
.newslettercontainer .newsletter-form button:hover {
  background: #516D8E;
}
@media (max-width: 768px) {
  .newslettercontainer .cta-banner-section .cta-banner {
    flex-direction: column;
    padding: 1.5rem;
  }
  .newslettercontainer .cta-banner-section .cta-banner h3 {
    font-size: 1.8rem;
    width: 100% !important;
  }
  .newslettercontainer .cta-banner-section .cta-banner::before {
    right: 0%;
    top: -90%;
  }
  .newslettercontainer .cta-banner-section .cta-banner::after {
    right: 0%;
    bottom: -80%;
  }
  .newslettercontainer .newsletter-form {
    position: relative;
    z-index: 1;
  }
  .newslettercontainer .newsletter-form button {
    width: 115px;
    padding: 0.8rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .newslettercontainer .cta-banner-section .cta-banner {
    flex-direction: row;
  }
  .newslettercontainer .cta-banner-section .cta-banner h3 {
    font-size: 1.8rem;
    width: 50% !important;
  }
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .newslettercontainer {
    height: 28vh !important;
  }
}

.quiz-header .cmlogo {
  filter: invert(1);
}

.quiz-hero {
  background: linear-gradient(180deg, #6E85A0 -10.74%, rgba(126, 147, 171, 0) 129.14%);
  height: auto;
}

.questionnaire-section {
  background: var(--bs-white);
}
.questionnaire-section .questionnaire-wrapper {
  background: rgba(243, 229, 215, 0.2);
  padding: 1.6rem;
}
@media (max-width: 768px) {
  .questionnaire-section .questionnaire-wrapper {
    padding: 0.9rem;
  }
}
.questionnaire-section .question-image {
  height: 40rem;
}
@media (max-width: 768px) {
  .questionnaire-section .question-image {
    height: 20rem;
  }
}
.questionnaire-section .question-content {
  padding: 1.5rem 2rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .questionnaire-section .question-content {
    padding: 25px 0;
  }
  .questionnaire-section .question-content .row {
    margin-top: 0 !important;
  }
}
.questionnaire-section .question-content h3 {
  font-family: "Cormorant Garamond", serif;
  color: #4A3724;
}
.questionnaire-section .answer-card {
  border: 1px solid rgba(156, 141, 126, 0.35);
  cursor: pointer;
  padding: 15px 18px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.questionnaire-section .answer-card input {
  display: none;
}
.questionnaire-section .answer-card .circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #9C8D7E;
  position: relative;
}
.questionnaire-section .answer-card .circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7E93AB;
  opacity: 0;
}
.questionnaire-section .answer-card span {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #49494A;
}
.questionnaire-section .answer-card:hover {
  border-color: #7E93AB;
}
.questionnaire-section .answer-card.active {
  border-color: #7E93AB;
}
.questionnaire-section .answer-card.active .circle::after {
  opacity: 1;
}
.questionnaire-section .answer-card.active .circle {
  background: rgba(126, 147, 171, 0.3);
  border: 0;
}
@media (max-width: 768px) {
  .questionnaire-section .answer-card {
    padding: 6px 1rem;
  }
  .questionnaire-section .answer-card span {
    font-size: 0.8rem;
  }
}
.questionnaire-section .question-footer {
  width: 100%;
  margin-top: 50px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: 0;
  gap: 1rem;
}
@media (max-width: 768px) {
  .questionnaire-section .question-footer {
    justify-content: space-around;
  }
}
.questionnaire-section .progress {
  width: 45%;
  height: 4px;
  background: rgba(126, 147, 171, 0.2);
}
.questionnaire-section .progress .progress-bar {
  background: #7E93AB;
  width: 20%;
  transition: 0.4s;
}
.questionnaire-section .nav-btn {
  background: none;
  border: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #4A3724;
}
.questionnaire-section .checkicon {
  background: #F3E5D7;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  animation: checkPop 0.35s ease forwards;
}
.questionnaire-section .checkicon i {
  font-size: 14px;
  padding-top: 3px;
  transition: transform 0.3s ease;
}
.questionnaire-section .checkicon:hover i {
  transform: scale(1.2) rotate(15deg);
}
@keyframes checkPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.15) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.questionnaire-section .quiz-submit {
  display: none;
  text-align: center;
  margin-top: 2rem;
}
.questionnaire-section .quiz-submit button {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: #F5F1EC;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #7E93AB;
}
.questionnaire-section .quiz-submit button .btn-text {
  padding-right: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  transition: all 0.45s ease;
}
.questionnaire-section .quiz-submit button .btn-icon {
  position: absolute;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #7E93AB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s linear;
}
.questionnaire-section .quiz-submit button .btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M15.75 20.25L22.5 13.5L15.75 6.75M22.5 13.5H10.6875M4.5 13.5H7.3125' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.questionnaire-section .quiz-submit button:hover .btn-icon {
  right: calc(100% - 30px);
  transform: rotate(-45deg);
}
.questionnaire-section .quiz-submit button:hover .btn-text {
  transform: translateX(24px);
}
.questionnaire-section .quiz-submit button {
  border: none;
  cursor: pointer;
}
.questionnaire-section .question-image img {
  transition: opacity 0.4s ease;
}
.questionnaire-section .quiz-message {
  display: none;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.questionnaire-section .quiz-message h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #4A3724;
  margin-bottom: 1.5rem;
}
.questionnaire-section .quiz-message h3 span {
  color: #7E93AB;
  font-style: italic;
}
@media (max-width: 768px) {
  .questionnaire-section .quiz-message h3 {
    font-size: 2.3rem;
  }
}
.questionnaire-section .quiz-message p {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #9C9C9C;
}
@media (max-width: 768px) {
  .questionnaire-section .quiz-message p {
    max-width: 100%;
  }
}
.questionnaire-section .quiz-message .theme-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: #F5F1EC;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #7E93AB;
}
.questionnaire-section .quiz-message .theme-btn .btn-text {
  padding-right: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  transition: all 0.45s ease;
}
.questionnaire-section .quiz-message .theme-btn .btn-icon {
  position: absolute;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #7E93AB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s linear;
}
.questionnaire-section .quiz-message .theme-btn .btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M15.75 20.25L22.5 13.5L15.75 6.75M22.5 13.5H10.6875M4.5 13.5H7.3125' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.questionnaire-section .quiz-message .theme-btn:hover .btn-icon {
  right: calc(100% - 30px);
  transform: rotate(-45deg);
}
.questionnaire-section .quiz-message .theme-btn:hover .btn-text {
  transform: translateX(24px);
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 60px 0;
  }
}
.privacy-policy .privacy-content {
  padding-right: 5rem;
}
.privacy-policy .privacy-content .updated-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #4A3724;
  margin-bottom: 25px;
}
.privacy-policy .privacy-content .intro {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #49494A;
  line-height: 1.8;
  margin-bottom: 40px;
}
.privacy-policy .privacy-content section {
  padding-block: 0;
  width: 70%;
}
.privacy-policy .privacy-content section h4 {
  font-family: "Cormorant Garamond", serif;
  color: #4A3724;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.privacy-policy .privacy-content section p {
  font-family: "Manrope", sans-serif;
  color: #49494A;
  line-height: 1.8;
  margin-bottom: 10px;
}
.privacy-policy .privacy-content section ul {
  padding-left: 18px;
}
.privacy-policy .privacy-content section ul li {
  font-family: "Manrope", sans-serif;
  color: #49494A;
}
.privacy-policy .privacy-sidebar {
  position: sticky;
  top: 30px;
  background: #fbf3ed;
  border: 1px solid rgba(156, 141, 126, 0.3);
  border-radius: 12px;
  padding: 30px;
}
@media (max-width: 768px) {
  .privacy-policy .privacy-sidebar {
    margin-top: 40px;
  }
}
.privacy-policy .privacy-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.privacy-policy .privacy-sidebar ul .sidebartitle {
  width: fit-content;
}
.privacy-policy .privacy-sidebar ul .sidebartitle a {
  font-family: "Manrope", sans-serif !important;
}
.privacy-policy .privacy-sidebar ul li:first-child {
  border-bottom: 1px solid rgba(156, 141, 126, 0.2);
}
.privacy-policy .privacy-sidebar ul li a {
  display: block;
  padding: 10px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.privacy-policy .privacy-sidebar ul li a:hover {
  color: #7E93AB;
  padding-left: 10px;
}
@media (max-width: 768px) {
  .privacy-policy .row {
    flex-direction: column-reverse;
  }
  .privacy-policy .privacy-content {
    padding-right: 0;
  }
  .privacy-policy .privacy-content section {
    width: 100%;
  }
}

.contact-section {
  padding: 100px 0;
  height: 100% !important;
}
.contact-section .bgimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #6e85a0 -10.74%, rgba(126, 147, 171, 0) 40.41%);
  z-index: 0;
}
.contact-section .contact-info::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  top: -20%;
  background: var(--bs-white);
  z-index: -1;
  filter: blur(100px);
}
.contact-section .contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: #4A3724;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact-section .contact-info h2 {
    font-size: 42px;
  }
}
.contact-section .contact-info > p {
  font-family: "Manrope", sans-serif;
  max-width: 380px;
  margin-bottom: 40px;
}
.contact-section .contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.contact-section .contact-card .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.contact-section .contact-card .icon i {
  color: #7E93AB;
  font-size: 18px;
}
.contact-section .contact-card .content {
  flex: 1;
  margin-left: 18px;
}
.contact-section .contact-card .content h5 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 5px;
}
.contact-section .contact-card .content span {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
}
.contact-section .contact-card .arrow {
  color: #7E93AB;
  font-size: 20px;
}
.contact-section .contact-card:hover {
  transform: translateY(-4px);
}
.contact-section .contact-form {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  padding: 35px;
}
@media (max-width: 768px) {
  .contact-section .contact-form {
    padding: 25px;
  }
}
.contact-section .contact-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
  color: #4A3724;
}
.contact-section .contact-form .form-control {
  height: 50px;
  border: none;
  border-radius: 10px;
  background: var(--bs-white);
  font-family: "Manrope", sans-serif;
  color: #49494A;
  box-shadow: none;
}
.contact-section .contact-form .form-control::placeholder {
  color: #b2b2b2;
}
.contact-section .contact-form textarea.form-control {
  height: 140px;
  resize: none;
  padding-top: 15px;
}
.contact-section .contact-form .theme-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 100px;
  background: #F5F1EC;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #7E93AB;
}
.contact-section .contact-form .theme-btn .btn-text {
  padding-right: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  transition: all 0.45s ease;
}
.contact-section .contact-form .theme-btn .btn-icon {
  position: absolute;
  right: -8px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #7E93AB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.45s linear;
}
.contact-section .contact-form .theme-btn .btn-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 27' fill='none'%3E%3Cpath d='M15.75 20.25L22.5 13.5L15.75 6.75M22.5 13.5H10.6875M4.5 13.5H7.3125' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.contact-section .contact-form .theme-btn:hover .btn-icon {
  right: calc(100% - 30px);
  transform: rotate(-45deg);
}
.contact-section .contact-form .theme-btn:hover .btn-text {
  transform: translateX(24px);
}

.cta-a {
  background: rgb(246.5307692308, 236.65, 226.7692307692);
  border: 1px solid hsl(30, 53.8461538462%, 115.8039215686%);
}
.cta-a p {
  color: #9C9C9C;
}
.cta-a h3 span {
  color: #7E93AB;
}

.ctaboxright {
  position: relative;
  width: 100%;
  height: 26rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ctaboxright .shape {
  position: absolute;
  top: -39%;
  left: 27%;
  width: 622px;
  height: 566px;
  background: #F3E5D7;
  border-radius: 50%;
  z-index: 1;
}
.ctaboxright img {
  position: relative;
  z-index: 2;
  width: 633px;
  height: 566px;
  object-fit: cover;
  border-radius: 50%;
  top: -22%;
  right: -16%;
}
.ctaboxright h2 span {
  color: #7E93AB !important;
}
@media (max-width: 768px) {
  .ctaboxright {
    height: 15rem;
  }
  .ctaboxright img {
    position: relative;
    z-index: 2;
    width: 633px;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    top: 0;
    right: 0;
  }
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .ctaboxright .shape {
    left: 13%;
  }
}
@media (min-width: 1481px) and (max-width: 1600px) {
  .ctaboxright .shape {
    left: 27%;
  }
}

@media (min-width: 320px) and (max-width: 640px) {
  .hero-content {
    text-align: center;
  }
  .section-heading {
    text-align: center;
  }
  .section-heading .sec-tag {
    justify-content: center;
  }
  .section-heading h2 {
    width: 100% !important;
  }
  .section-heading p {
    text-align: center;
  }
  .ingredients-section .section-heading h2 .animateline {
    right: 38% !important;
  }
  .ingredients-section .section-heading h2 .animateline svg {
    width: 100px;
  }
}
@media (max-width: 768px) {
  .cursor-circle {
    display: none;
  }
  .navbar-brand {
    width: 14rem;
  }
  .mobile-menu .theme-button {
    font-size: 1rem;
    color: var(--bs-black);
  }
  .hero-section {
    height: auto;
    padding-bottom: 3rem;
  }
  .hero-content p {
    font-size: 0.875rem;
  }
  .btn-div {
    text-align: center;
  }
  .ingredients-section .section-heading h2 .animateline {
    right: 24%;
    bottom: -24%;
  }
  .ingredients-section .card-front h4 {
    font-size: 1rem;
  }
  .ingredients-section .card-front p {
    font-size: 0.75rem;
  }
  .ingredients-section .card-front .img-box {
    height: 80px;
  }
  .whyus-section .feature-card {
    padding: 1.25rem 1.3rem;
  }
  .whyus-section .feature-card p {
    font-size: 0.75rem;
  }
  .product-card .product-badge .size-badge {
    white-space: nowrap;
    padding-inline: 0.5rem;
  }
  .steps-section .section-heading {
    padding-top: 3rem;
  }
  .cta-section {
    height: 100%;
    margin-top: 0 !important;
  }
  .cta-section .cta-banner-section {
    position: relative;
  }
  .cta-section .cta-banner-section .cta-banner__left-img img {
    height: 250px;
  }
  .cta-section .cta-banner-section .cta-banner__right-img img {
    height: 335px;
  }
  .cta-section .cta-banner-section .cta-banner__content {
    transform: none;
    padding: 1rem;
    text-align: start;
  }
  .cta-section .cta-banner-section .cta-banner__content h2 {
    font-size: 1.7rem;
    text-align: start;
  }
  .cta-section .cta-banner-section .cta-banner__content p {
    margin-bottom: 1rem;
  }
  .cellular-blog-section .section-heading {
    text-align: center;
    justify-content: center !important;
  }
  .cellular-blog-section .section-heading h2 {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
  }
  .testimonial-section .swiper-area {
    height: 400px;
  }
  .testimonial-section .tcard {
    height: auto;
  }
  .hero-content {
    padding-top: 60px;
  }
  .product-section .section-heading {
    align-items: center !important;
  }
  #filterOffcanvas {
    height: 380px;
  }
  .about_section .brand-badge {
    width: 175px;
  }
  .about_section .abimg {
    width: 100%;
  }
  .about_section .abimg_hover {
    width: 140px;
    height: 140px;
    right: -3px;
  }
  .about_section .right {
    margin-top: 3rem;
  }
  .common-hero-section .bgimg1 {
    width: 9rem;
  }
  .about_section .bubblebg {
    z-index: -1;
    width: 150px;
  }
  .about_section .feature-boxes .feature-card::after {
    display: none;
  }
  .about_section .feature-boxes .feature-card {
    width: 100%;
    justify-content: flex-start !important;
  }
  .about_section .feature-boxes .feature-card .icon {
    margin: 0;
  }
  .ingredient-card {
    aspect-ratio: auto;
  }
  .card-front {
    position: initial;
  }
  .card-front .img-box {
    width: 100%;
    height: 100px;
  }
  .video-section {
    margin-top: 5rem;
    height: 300px;
  }
  .video-section .video-title {
    font-size: 1.5rem;
  }
  .video-section::after {
    top: -20%;
    height: 150px;
  }
  .steps-section {
    text-align: center;
  }
  .steps-section h2 .animateline {
    right: 39%;
    bottom: -25%;
  }
  .steps-section h2 .animateline svg {
    width: 100px;
  }
  .steps-section .content {
    width: 100% !important;
  }
  .steps-section .step-card .step-img {
    height: 28rem;
  }
  .nav-btns {
    position: relative;
    margin-top: 3rem;
  }
  .nav-btns #nextBtn {
    right: 30%;
  }
  .nav-btns #prevBtn {
    left: 30%;
  }
  .faq-section .section-heading h2,
  .faq-section .section-heading .sec-tag {
    width: 100% !important;
    justify-content: center !important;
  }
  .quiz-section {
    padding-block: 3rem !important;
  }
  .quiz-section::after {
    filter: blur(23px);
  }
  .quiz-section .chainbg {
    width: 100%;
    height: 100%;
  }
  .quiz-section .quiz-desc {
    width: 100% !important;
  }
  .product-listing-section .products-grid {
    grid-template-columns: 1fr;
  }
  .custom-pagination .page-item .page-link {
    width: 30px;
    height: 30px;
  }
  .product-details .product-info .prod_div {
    width: 100%;
  }
  .product-details .product-info .product-category {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .benefits-section .section-heading .sec-tag {
    justify-content: center;
  }
  .benefits-section .right {
    text-align: center;
  }
  .benefits-section h2 {
    width: 100% !important;
  }
  .benefits-section .content {
    width: 100% !important;
  }
  .benefits-section .key-benefits {
    margin-top: 3rem;
    padding-inline: 1rem;
  }
  .benefits-section .key-benefits ul li {
    text-align: start;
  }
  .ingredient-benefits .section-heading {
    text-align: center;
  }
  .ingredient-benefits .benefit-card {
    height: 400px;
    max-width: 300px;
    margin-inline: auto;
  }
  .ingredient-benefits .benefit-card .benefit-content {
    padding-inline: 2rem;
  }
  .result-section .section-heading {
    width: 100% !important;
    text-align: center;
    margin-top: 3rem;
  }
  .result-section .result-img img {
    border-radius: 1.5rem 7rem 1.5rem 7rem;
  }
  .reviews-section .review-card {
    padding: 1rem;
    box-shadow: 0 4px 17.6px 0 rgba(0, 0, 0, 0.19);
  }
  .reviews-section .review-card .review-text {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .about_section .prodinfobx .box {
    flex: 0 0 calc(50% - 10px);
  }
  .product-listing-section .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 100%;
  }
  .desktop-menu {
    gap: 20px;
  }
  .navbar-brand {
    width: 16rem;
  }
  .mobile-menu .theme-button {
    font-size: 1rem;
    color: var(--bs-black);
  }
  .shop-btn {
    white-space: nowrap;
  }
  .steps-section .shapetwobg {
    right: -56%;
  }
  .steps-section .shapetwobg svg {
    width: 50%;
  }
  .steps-section .step-card {
    padding-inline: 1rem;
  }
  .steps-section .step-card .step-img {
    height: 100%;
  }
  .steps-section .step-card .content {
    width: 100% !important;
  }
  .testimonial-section #nextBtn {
    right: -1%;
  }
  .testimonial-section #prevBtn {
    left: -1%;
  }
  .quiz-section {
    min-height: 100%;
    padding-block: 3rem !important;
  }
  .quiz-section::after {
    content: "";
    width: 32%;
    height: 91%;
    border-radius: 233px;
    filter: blur(18px);
  }
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .steps-section .step-card .step-img {
    height: 100%;
  }
  .whyus-section .feature-card {
    width: 108%;
    height: 210px;
  }
  .faq-section .section-heading h2 .animateline {
    bottom: -16%;
    right: 50%;
  }
  .faq-section .section-heading h2 .animateline svg {
    width: 130px !important;
  }
  .faq-section .faq-accordion .accordion-button {
    padding: 0.8rem;
    font-size: 0.875rem;
  }
  .cellular-blog-section .list-card .card-title {
    font-size: 0.875rem;
  }
  .cellular-blog-section .list-card .card-text {
    font-size: 0.75rem;
  }
  .cellular-blog-section .theme-button .btn-text {
    font-size: 10px;
  }
  .footer-section .footer-about .footer-logo {
    width: 265px;
  }
  .footer-section .footer-newsletter h5 {
    font-size: 1rem !important;
  }
  .footer-section .footer-newsletter form {
    width: 80%;
  }
  .footer-section .footer-newsletter form .newsletter-field button {
    width: 30px;
    height: 30px;
  }
  .footer-section .footer-newsletter form .newsletter-field input {
    padding: 10px !important;
    padding-left: 1.5rem !important;
  }
  .footer-section .footer-newsletter form .newsletter-field input::placeholder {
    font-size: 0.75rem;
  }
  .cta-section {
    height: 60vh;
  }
  .cta-section .cta-banner-section .cta-banner__right-img img {
    height: 335px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .about_section .abimg {
    width: 22rem;
  }
  .about_section .abimg_hover {
    width: 180px;
    height: 180px;
  }
  .steps-section .shapetwobg {
    right: -44% !important;
    bottom: 4%;
  }
  .faq-section .section-heading {
    text-align: start !important;
  }
  .faq-section .section-heading h2 {
    width: 100% !important;
  }
}
@media (min-width: 992px) and (max-width: 1280px) {
  .cta-section {
    height: 50vh;
  }
}
@media (min-width: 800px) and (max-width: 1080px) {
  .cta-section {
    height: 40vh;
  }
  .cta-section .cta-banner-section .cta-banner__right-img {
    height: 410px !important;
  }
  .cta-section .cta-banner-section .cta-banner__left-img {
    height: 315px;
  }
}
@media (min-width: 1481px) and (max-width: 1600px) {
  .desktop-menu {
    gap: 20px;
  }
  .steps-section .shapetwobg svg {
    width: 300px;
  }
}

/*# sourceMappingURL=main.css.map */
