:root {
  --primary1: 1, 87, 159;
  /* #01579F */
  --primary2: 42, 158, 255;
  /* #2A9EFF */
  --primary3: 228, 228, 176;
  /* #E4E4B0 */
  --color_base: 37, 37, 34;
  /* #252522 */
  --color_gray: 244, 244, 244;
  /* #F4F4F4 */
  --color_black: 0, 0, 0;
  --color_white: 255, 255, 255;
  --baseFont: "Inter", sans-serif;
  --imgBase: invert(8%) sepia(4%) saturate(1432%) hue-rotate(22deg) brightness(96%) contrast(83%);
  --imgPrimary1: invert(19%) sepia(49%) saturate(4859%) hue-rotate(194deg) brightness(88%) contrast(99%);
  --imgPrimary2: invert(74%) sepia(61%) saturate(6537%) hue-rotate(186deg) brightness(102%) contrast(103%);
  --imgPrimary3: invert(98%) sepia(6%) saturate(1469%) hue-rotate(2deg) brightness(92%) contrast(96%);

  --imgGray: invert(98%) sepia(1%) saturate(266%) hue-rotate(50deg) brightness(119%) contrast(91%);
  --imgWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(13deg) brightness(103%) contrast(102%);
  --imgBlack: invert(0%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(93%) contrast(103%);
  --padding: clamp(1.875rem, 1.2rem + 3.375vw, 5.25rem);
  --paddingSm: clamp(1.25rem, 0.8929rem + 1.7857vw, 2.5rem);
  --radius: 20px;
  --bs-breadcrumb-divider: '/';
}

html {
  scrollbar-color: rgb(var(--primary1)) rgba(var(--color_base), 0.05);
  scrollbar-width: thin;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: var(--baseFont);
  color: rgb(var(--color_base));
  font-weight: 400;
}

a:hover,
a:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-decoration: none;
  color: rgb(var(--primary1));
}

button:focus {
  outline: none;
}

a {
  color: rgb(var(--color_base));
}

.transition {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

::selection {
  color: rgb(var(--color_white));
  background: rgb(var(--primary1));
}

.radius {
  border-radius: var(--radius);
}

.clr-1 {
  color: rgb(var(--primary1)) !important;
}

.clr-2 {
  color: rgb(var(--primary2)) !important;
}

.clr-3 {
  color: rgb(var(--primary3)) !important;
}

.bg-clr-1 {
  background-color: rgb(var(--primary1)) !important;
}

.bg-clr-2 {
  background-color: rgb(var(--primary2)) !important;
}

.bg-clr-3 {
  background-color: rgb(var(--primary3)) !important;
}



.clr-gray {
  color: rgb(var(--color_gray)) !important;
}

.bg-gray {
  background-color: rgb(var(--color_gray)) !important;
}


.link-effect {
  position: relative;
  display: inline-block;
}

.link-effect::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(var(--primary2));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .7s cubic-bezier(.19, 1, .22, 1) .2s;
}

.link-effect:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}


/* button custom */
.btn-custom {
  position: relative;
  background: transparent;
  color: rgb(var(--color_base));
  font-weight: 500;
  overflow: hidden;
  border: 1px solid rgb(var(--color_base));
  transition: all .3s linear;
  border-radius: 50px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.375rem;
}

.btn-custom .has-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  margin-left: 0.5rem;
}

.btn-custom .has-arrow::after {
  content: "";
  background-image: url('../images/arrow.png');
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline-block;
  transition: all .3s linear;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  background: rgb(var(--primary1)) !important;
  color: rgb(var(--color_white)) !important;
}

.btn-custom:hover .has-arrow::after,
.btn-custom:focus .has-arrow::after,
.btn-custom:active .has-arrow::after {
  filter: var(--imgWhite);
  transform: rotate(45deg);
}

.btn-custom.bg-clr-4 {
  color: rgb(var(--primary1));
}

/* owl-carousel */
.owl-flex .owl-stage {
  display: flex;
}

.owl-carousel.arrow-style .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.owl-carousel.arrow-style .owl-nav button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
}

.owl-carousel.arrow-style .owl-nav button:before {
  content: '';
  background: url('../images/arrow.png') center center no-repeat;
  filter: var(--imgGray);
  width: 20px;
  height: 20px;
  background-size: cover;
}

.owl-carousel.arrow-style .owl-nav button.owl-prev:before {
  transform: rotate(180deg);
}

.owl-carousel.arrow-style .owl-nav [class^='owl-'].disabled {
  cursor: default;
}

.owl-carousel.arrow-style .owl-nav.disabled {
  display: none;
}

.owl-carousel .item:not(:first-child) {
  display: none;
}

.owl-carousel.arrow-style .owl-nav button:hover:before {
  filter: var(--imgPrimary1);
}

.owl-carousel.dot-style .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.owl-carousel.dot-style .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgb(var(--color_gray));
  margin: 0 5px;
  display: inline-block;
  transition: all .3s linear;
}

.owl-carousel.dot-style .owl-dot.active {
  background-color: rgb(var(--primary1));
}

/* header */
.custom-header {
  width: 100%;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0 auto;
  transition: all 0.3s;
  z-index: 99 !important;
  position: fixed;
}

a:focus-visible {
  box-shadow: none !important;
}

.custom-header .menu-wrap {
  background-color: rgb(var(--color_white));
  border-radius: 100px;
  padding: 0 24px;
  width: calc(100% - 24px);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03), 0 10px 25px rgba(0, 0, 0, 0.08), 0 30px 60px rgba(0, 0, 0, 0.04);
}

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

.custom-header .navbar {
  transition: all 0.3s linear;
  z-index: 10;
}


.custom-header .navbar .navbar-nav li {
  padding: 0 1.5rem;
}

.custom-header .navbar .navbar-nav .nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(var(--color_base));
  position: relative;
  padding: 1.60rem 0;
  font-size: 1.063rem;
}

.custom-header .navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  background-color: rgb(var(--primary1));
  transform-origin: center center;
  transition: all .3s linear;
  transform: scaleX(0);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
}

.custom-header .navbar .navbar-nav .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

.custom-header .navbar .navbar-nav .nav-item:hover>.nav-link {
  color: rgb(var(--primary1));
}

/*.custom-header .dropdown-menu {
  width: auto;
  border: 0;
  left: 0;
  right: 0;
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transition: all .3s linear;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  background-color: rgb(var(--primary1));
}

.custom-header .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid rgb(var(--primary1));
  top: -15px;
  left: 50px;
  position: absolute;
}

.custom-header .dropdown:hover>.dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
  margin: 0;
}

.custom-header .dropdown-menu .dropdown-item:focus,
.custom-header .dropdown-menu .dropdown-item:hover {
  background-color: rgb(var(--primary2));
}


*/

.custom-header .dropdown-menu li {
  margin: 0;
  padding: 0;
}
.custom-header .dropdown-menu li a{
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
}

.custom-header .dropdown-item {
  white-space: normal;
  padding: 0.5rem 1.5rem;
}

.custom-header.fixed {
  transform: translateY(-20px);
  padding: 0;
}

.custom-header.fixed .navbar img {
  filter: none
}

.custom-header.fixed .navbar .navbar-nav .nav-link {
  color: rgb(var(--color_base));
}

.custom-header.fixed .navbar .navbar-nav .nav-item:hover>.nav-link {
  color: rgb(var(--primary1)) !important;
}

.custom-header.fixed .link img {
  filter: var(--imgPrimary1);
}

/* Right Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: 1rem;
}

.header-actions a {
  padding: 0;
  line-height: normal;
  text-decoration: none;
}

.header-actions a:hover img {
  filter: var(--imgPrimary1);
}

.header-actions a:hover,
.header-actions a:focus,
.header-actions a:active {
  color: rgb(var(--primary1));
}

.navbar-toggler {
  border: none;
  margin-left: 10px;
}

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

.navbar-toggler-icon {
  filter: var(--imgPrimary1);
}

/* product */
#product-video {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) * 1.75);
}

/* Typography */
.padding {
  padding: var(--padding) 0;
}

.paddingSm {
  padding: var(--paddingSm) 0;
}

h2.title {
  font-size: clamp(1.875rem, 1.625rem + 1.25vw, 3.125rem);
  margin-bottom: 12px;
  line-height: normal;
  font-weight: 300;
  text-transform: capitalize;
}

h2.title span {
  font-weight: 500;
}

h2.title.sm {
  font-size: clamp(1.125rem, 0.85rem + 1.375vw, 2.5rem);
}

.element {
  position: absolute;
  z-index: -1;
}
.balance-nutrition .logo-overlay{
  position: absolute;
  bottom: 60px;
  right: 40px;
  width: 80px;
}
.balance-nutrition .element01 {
  top: 0;
  right: 0;
}

.balance-nutrition .element02 {
  bottom: 0;
  right: 0;
}

.dimensions-section .element03 {
  top: 0;
  left: 0;
}

.dimensions-section .element04 {
  bottom: 0;
  left: 0;
}

/* pic */
.pic {
  overflow: hidden;
  display: block;
  border-radius: calc(var(--radius) * 2.5);
}


.pic img {
  transition: 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pic:hover img {
  transform: scale(1.08);
}

.totop {
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  position: fixed;
  right: -60px;
  z-index: 10;
  background-color: rgb(var(--primary1));
  text-align: center;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 0px 10px 29.7px 3.3px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

.totop img {
  transform: rotate(-90deg);
  width: 16px;
  filter: var(--imgWhite);
}

.totop:hover {
  background-color: rgb(var(--primary1));
}

.content p {
  font-size: 1.125rem;
}

.content p:last-child {
  margin-bottom: 0;
}

/* Trigger shake animation on hover */
.shake-element:hover .toast-product-img {
  animation: shakeEffect 0.5s ease-in-out;
  /* Hardware acceleration to prevent layout flickering */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Keyframes for the side-to-side movement */
@keyframes shakeEffect {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}


/* ==========================================
   VITACORE 57 CUSTOM STYLES
   ========================================== */

/* Hero Section */
.vitacore-hero {
  position: relative;
  min-height: 825px;
  display: flex;
  align-items: center;
  padding: 120px 0 0 0;
  background: #edebc0 url('../images/banner-bg.webp') no-repeat center right;
  background-size: cover;
  z-index: 6;
}

.vitacore-why-section {
  position: relative;
}

.gradient-bg {
  position: relative;
}

.gradient-bg::before {
  content: "";
  background: url('../images/banner-bg.webp') no-repeat center bottom;
  background-size: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  z-index: 0;
}

.vitacore-hero .banner-slider .item img {
  width: auto;
}

.vitacore-hero .banner-slider .item .banner-text {
  font-weight: 400;
  background-image: linear-gradient(to right, rgb(var(--primary1)), rgb(var(--primary2)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: capitalize;
  line-height: 1.1;
  font-size: clamp(1.875rem, 1.625rem + 1.25vw, 3.125rem);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.vitacore-hero .banner-slider .item .banner-text span {
  font-weight: 500;
}

.vitacore-hero .banner-slider .item .banner-content {
  padding-left: 5rem;
  padding-bottom: 3rem;
}

.vitacore-hero .banner-slider .item .banner-content .vital-text {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.vitacore-hero .banner-slider .item .banner-content .sub-text {
  font-weight: 400;
  background-image: linear-gradient(to right, rgb(var(--primary1)), rgb(var(--primary2)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.vitacore-hero .banner-slider .item .banner-content .sub-text span {
  font-weight: 500;
}

.vitacore-hero .banner-slider .item .banner-content p {
  font-size: 1.125rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.vitacore-hero .banner-slider .item .banner-content p span {
  font-weight: 500;
}

.vitacore-hero .banner-slider .item .banner-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Staggered entrance animations for text elements in the active slide item */
.vitacore-hero .banner-slider .owl-item.active .item .banner-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.vitacore-hero .banner-slider .owl-item.active .item .banner-content .vital-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.vitacore-hero .banner-slider .owl-item.active .item .banner-content .sub-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.vitacore-hero .banner-slider .owl-item.active .item .banner-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.vitacore-hero .banner-slider .owl-item.active .item .banner-content .btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.banner-pic img {
  position: relative;
  z-index: 1;
  bottom: -155px;  
}

.slider-buttons {
  z-index: 11;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all .1s linear;
}

.slider-buttons .next-button,
.slider-buttons .prev-button {
  border: 1px solid rgb(var(--color_base));
  width: 53px;
  height: 43px;
  margin-left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s linear;
}

.slider-buttons .prev-button {
  border-radius: 10px 0 0 10px;
}

.slider-buttons .next-button {
  border-radius: 0 10px 10px 0;
  margin-left: -1px;
}

.slider-buttons .next-button,
.slider-buttons .prev-button {
  font-size: 1.5rem;
}

.slider-buttons .next-button:hover,
.slider-buttons .prev-button:hover {
  background: rgb(var(--primary1));
  border-color: rgb(var(--primary1));
}

.slider-buttons .next-button:hover i,
.slider-buttons .prev-button:hover i {
  filter: var(--imgWhite);
}


/* Why Section */
.vitacore-why-section {
  position: relative;
  border-radius: var(--padding);
  background-size: cover;
  z-index: 5;
  background-color: #f8f8f8;
}


.badge-wrapper {
  margin-bottom: 1rem;
}

.badge-wrapper span {
  background: linear-gradient(to right, #ffffb2 0%, #dff2ff 100%);
  padding: 0.4rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: calc(var(--radius) / 2);
  display: inline-block;
}

.vitacore-why-title {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 50px;
}


/* Accordion Custom - Bootstrap 5 Rework */
.vitacore-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: none;
}

.vitacore-accordion-item {
  background: rgb(var(--color_white));
  border-radius: var(--radius) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  margin-bottom: 0;
}

/* Hover & Active Lift States */
.vitacore-accordion-item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary2), 0.2) !important;
  box-shadow: 0 10px 25px rgba(var(--primary1), 0.05);
}

.vitacore-accordion-item:has(.show) {
  border-color: rgba(var(--primary2), 0.3) !important;
  background: linear-gradient(180deg,
      rgb(var(--color_white)) 0%,
      rgba(var(--primary2), 0.02) 100%) !important;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(var(--primary2), 0.3);
}

.vitacore-accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 18px 24px !important;
  color: rgb(var(--color_base)) !important;
  transition: all 0.3s ease;
}

.vitacore-accordion-button:not(.collapsed) {
  color: rgb(var(--primary1)) !important;
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
}

.accordion-icon-box {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background-color: rgba(var(--primary1), 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
}

.vitacore-accordion-button:hover .accordion-icon-box {
  transform: scale(1.06);
  background-color: rgba(var(--primary1), 0.08);
}

.vitacore-accordion-button:not(.collapsed) .accordion-icon-box {
  transform: scale(1.06);
  background-color: rgba(var(--primary2), 0.08);
}

.accordion-header-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(var(--primary2));
  transition: color 0.3s ease;
  text-align: left;
}

/* Custom Circular Toggle Button (+/-) overriding Bootstrap */
.vitacore-accordion-button::after {
  content: "+";
  font-family: var(--baseFont);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #E5E5B1;
  color: rgb(var(--color_base));
  font-size: 1.5rem;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: none !important;
  transform: none !important;
  flex-shrink: 0;
  filter: none;
}

.vitacore-accordion-button:not(.collapsed)::after {
  content: "-";
  background-color: #E5E5B1 !important;
  color: rgb(var(--color_base));
  transform: rotate(180deg) !important;
}

.vitacore-accordion-body {
  padding: 0 24px 24px 108px !important;
}

.accordion-content-text {
  margin: 0;
}



/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Benefits Section Styles */
.benefits {
  position: relative;
  z-index: 10;
  border-radius: var(--padding);
  padding-bottom: 0;
}

.benefits-content-row {
  margin-top: 2rem;
}

.benefits-showcase-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.benefits-bottle-img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: 0 auto;
}

.runner-woman-img {
  max-height: 520px;
  object-fit: contain;
}

.runner-man-img {
  max-height: 520px;
  object-fit: contain;
}

/* Floating Capsule Styling */
.benefit-capsule {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgb(var(--color_white));
  border-radius: 50px;
  padding: 6px 14px 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  user-select: none;
  max-width: 220px;
}

.benefit-capsule:hover {
  transform: scale(1.05) translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary1), 0.05);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.benefit-capsule:hover .benefit-icon {
  transform: rotate(15deg);
}

.benefit-text {
  font-size: 1.125rem;
  color: rgb(var(--primary2));
  font-weight: 500;
  text-align: left;
  line-height: normal;
}

.benefit-arrow {
  color: rgb(var(--primary2));
  transition: transform 0.3s ease;
}

.benefit-capsule:hover .benefit-arrow {
  transform: translate(2px, -2px);
}

/* Tooltip / Hover Card Design matching 004.png */
.benefit-hover-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  width: 410px;
  background: linear-gradient(135deg, #FBFBFB 0%, #FEFED4 100%);
  border: 1px solid rgba(229, 229, 177, 0.6);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
  text-align: left;
}

/* Tooltip Arrow */
.benefit-hover-card::after {
  content: "";
  position: absolute;
  border-width: 10px;
  border-style: solid;
}

/* Floating animations for mockup items */
.floating-item {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Floating positions on Desktop */
/* 1. 10 Amino Acids (Left, middle-high) */
.benefit-capsule-01 {
  left: -70px;
  top: 15%;
}

/* 2. 14 Natural Extracts (Left, middle-low) */
.benefit-capsule-02 {
  left: -60px;
  top: 45%;
}

/* 3. 16 Essential Vitamins (Right, high) */
.benefit-capsule-03 {
  right: 0px;
  top: 0;
}

/* 4. 16 Essential Minerals (Right, middle) */
.benefit-capsule-04 {
  right: -40px;
  top: 35%;
}

/* 5. 1 Probiotic (Right, low) */
.benefit-capsule-05 {
  right: 0px;
  top: 65%;
}

/* Tooltip positioning styles */
.benefit-capsule.hover-above .benefit-hover-card {
  bottom: 125%;
}

.benefit-capsule.hover-above .benefit-hover-card::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: #ffffe6 transparent transparent transparent;
}

.benefit-capsule.hover-below .benefit-hover-card {
  top: 125%;
}

.benefit-capsule.hover-below .benefit-hover-card::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-color: transparent transparent rgb(var(--color_white)) transparent;
}

/* Trigger Popover on Hover */
.benefit-capsule:hover .benefit-hover-card,
.benefit-capsule:focus .benefit-hover-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.benefit-hover-title {
  font-weight: 700;
  color: rgb(var(--primary1));
  font-size: 1.1rem;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(var(--primary1), 0.1);
  padding-bottom: 4px;
}

.benefit-hover-content {
  line-height: 1.5;
  font-size: 0.85rem;
}

/* Adjustments for wider hover cards on large lists */
.float-vitamins .benefit-hover-card,
.float-minerals .benefit-hover-card {
  width: 360px;
}


/* Dimensions Section Styles */
.dimensions-section {
  position: relative;
  z-index: 10;
}

.dimensions-section h2.title {
  text-transform: none;
}

.dimension-card {
  border: 1.5px solid rgb(var(--primary2));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 90px;
  transition: all .3s linear;
  background-color: rgba(var(--primary2),0.001);
  height: 100%;
}

.dimension-card:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--primary2)) !important;
  box-shadow: 0 15px 35px rgba(var(--primary1), 0.08);
  background: rgb(var(--primary2));
}

.dimension-card:hover .dimension-text {
  color: rgb(var(--color_white))
}

.dimension-icon-wrap {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

}

.dimension-card:hover .dimension-icon-wrap {
  transform: scale(1.02);
  
}

.dimension-text {
  padding: 16px 24px;
  font-weight: 300;
  text-align: left;
  line-height: 1.4;
}

.woman-pill-wrap {
  position: relative;
  display: inline-block;
}

.woman-pill-img {
  max-height: 600px;
  object-fit: contain;
  display: block;
}



.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: var(--padding);
}

.dimension-grid .grid-item01 {
  grid-column: span 2 / span 2;
  grid-column-start: 2;
}

.dimension-grid .grid-item02 {
  grid-column: span 2 / span 2;
  grid-row-start: 2;
}

.dimension-grid .grid-item03 {
  grid-column: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 2;
}

.dimension-grid .grid-item04 {
  grid-column: span 2 / span 2;
  grid-row-start: 3;
}

.dimension-grid .grid-item05 {
  grid-column: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3;
}




/* Comparison Section Styles */
.comparison-section {
  background-color: #F9F9F9;
  position: relative;
  z-index: 10;
  border-radius: var(--padding);
  padding-bottom: calc(var(--padding)/2);
}

.comparison-bottle-wrap {
  margin-top: 2rem;
}

.comparison-bottle-img {
  display: block;
  transition: transform 0.5s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}




.comparison-table thead tr th {
  background: rgb(var(--primary2));
  color: rgb(var(--color_white));
  font-size: 1.15rem;
  padding: 8px 16px;
  border: none;
  vertical-align: middle;
  font-weight: 500;
}

.comparison-table thead tr th.col-parameter {
  width: 25%;
}

.comparison-table thead tr th.col-vitacore {
  width: 45%;
}

.comparison-table thead tr th.col-ordinary {
  width: 30%;
  color: #96DCFF;
}



/* Holistic Section Styles */
.holistic-section {
  background: linear-gradient(180deg, rgba(var(--primary3), 0.15) 0%, rgba(var(--primary3), 0.35) 100%);
  position: relative;
  z-index: 10;
  border-radius: 0 0 var(--padding) var(--padding);
  padding-top: calc(var(--padding) * 2);
  margin-top: calc(var(--padding) * -1);
  z-index: 0;
}

.holistic-section h2 {
  text-transform: none;
}

.holistic-section h3 {
  font-weight: 400;
}

.holistic-section h3 span {
  font-weight: 500;
}

.holistic-showcase-container {
  display: inline-block;
  width: 100%;
  max-width: 900px;
  top: -30px;
  margin-bottom: -50px;
}

.holistic-people-img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* Floating bubbles styling */
.holistic-bubble {
  position: absolute;
  background-color: rgb(var(--primary2));
  color: rgb(var(--color_white));
  padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) /2);
  font-size: 1rem;
  font-weight: 300;
  line-height: normal;
  box-shadow: 0 8px 25px rgba(var(--primary2), 0.25);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  white-space: normal;
  max-width: 430px;
  text-align: center;
  z-index: 20;
}

.holistic-bubble:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 15px 30px rgba(var(--primary1), 0.4);
  background-color: rgb(var(--primary1));
}

/* Absolute positions on Desktop */
/* 1. A vegetarian */
.bubble-vegetarian {
  left: -5%;
  top: 42%;
}

/* 2. Conscious about everyday wellness */
.bubble-conscious {
  left: -9%;
  top: 66%;
}

/* 3. Above 35 years of age */
.bubble-above35 {
  right: -22%;
  top: 45%;
}

/* 4. Looking for a holistic daily nutritional support */
.bubble-holistic {
  right: -11%;
  top: 68%;
  max-width: 370px;
}
.nutrition-naming {
    max-width: 370px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 4%;
}


/* Testimonials Section Styles */
.testimonial-section {
  background-color: rgb(var(--color_white));
  position: relative;
  z-index: 10;
}

.testimonial-section h2 {
  text-transform: none;
}

.testimonial-nav {
  margin-top: 1.5rem;
}

.testimonial-slider-wrap {
  padding-right: 4rem;
}

.decorative-quote {
  position: absolute;
  left: 40%;
  bottom: 0;
  opacity: 0.75;
}

.testimonial-quote {
  font-weight: 300;
  line-height: normal;
  color: rgb(var(--color_base));
  margin-bottom: 3.5rem;
}

.author-img-wrap {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-name {
  color: rgb(var(--primary1));
  font-size: 1.15rem;
  font-weight: 500;
}

.author-role {
  color: rgb(var(--color_base));
}

.testimonial-nav .next-testimonial,
.testimonial-nav .prev-testimonial {
  background-color: transparent;
  border: 1px solid rgb(var(--color_base));
  width: 53px;
  height: 43px;
  margin-left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s linear;
}

.testimonial-nav .prev-testimonial {
  border-radius: 10px 0 0 10px;
}

.testimonial-nav .next-testimonial {
  border-radius: 0 10px 10px 0;
  margin-left: -1px;
}

.testimonial-nav .next-testimonial,
.testimonial-nav .prev-testimonial {
  font-size: 1.5rem;
}

.testimonial-nav .next-testimonial:hover,
.testimonial-nav .prev-testimonial:hover {
  background: rgb(var(--primary1));
  border-color: rgb(var(--primary1));
}

.testimonial-nav .next-testimonial:hover i,
.testimonial-nav .prev-testimonial:hover i {
  filter: var(--imgWhite);
}

/* Call To Action Section */
.cta-section {
  background-color: rgb(var(--color_white));
  position: relative;
  z-index: 10;
}

.cta-banner-card {
  background: linear-gradient(to right, #ffffb2 0%, #dff2ff 100%);
  border-radius: calc(var(--radius) * 1.5);
  padding: 40px 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.cta-banner-card h2.title {
  text-transform: none;
  font-weight: 300;
}

.cta-banner-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: rgb(var(--primary1));
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Footer Section */
.footer-section {
  background-color1: rgb(var(--color_white));
  position: relative;
  z-index: 10;
  font-size: 1.05rem;
}

.footer-link-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgb(var(--primary1));
}

.footer-link-list li {
  margin-bottom: 0.6rem;
}

.footer-link-list li a {
  font-size: 1.125rem;
  color: rgb(var(--color_black));
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link-list li a:hover {
  color: rgb(var(--primary2));
  padding-left: 4px;
}

.saffron-logo-wrap {
  display: inline-block;
}

.saffron-logo-img {
  transition: transform 0.4s ease;
}

.saffron-logo-wrap:hover .saffron-logo-img {
  transform: scale(1.08) rotate(2deg);
}

.copyright {
  border-top: 1px solid #D3EBFF;
}

.copyright-text {
  color: #5C6574;
}

.designer-link {
  color: #5C6574;
  font-weight: 600;
}

.designer-link:hover {
  color: rgb(var(--primary1));
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgb(var(--color_base));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: rgb(var(--primary2));
  color: rgb(var(--color_white));
  transform: translateY(-2px);
}

.social-icon:hover img{
  filter: brightness(0) invert(1);
}



/*table  */
.table-cust table {
  width: 100%;
  text-align: left;
  border-spacing: 0;
  border-collapse: collapse;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.table-cust table th,
.table-cust table td {
  font-family: inherit;
  font-size: .875em;
  line-height: 1.45;
  color: #444;
  vertical-align: middle;
  padding: 1em;
}

.table-cust table th {
  font-weight: 600;
}

.table-cust table colgroup:nth-child(1) {
  border: 0 none;
}

.table-cust table colgroup:nth-child(2) {
  border: 5px solid #59c7fb;
}

.table-cust table colgroup:nth-child(3) {
  border: 1px solid #ccc;
}


/* Tablehead */

.table-cust table thead th {
  background: #def4fe;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(to bottom, rgb(var(--color_white)) 0%, rgb(var(--color_gray)) 100%);
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
  color: rgb(var(--color_base));
}

.table-cust table thead th:nth-child(1) {
  width: 24%;
}

.table-cust table thead th:nth-child(2) {
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgb(var(--primary2));
}

/* Tablebody */

.table-cust table tbody th {
  background: rgb(var(--color_white));
  border: none;
}

.table-cust table tbody td {
  background: rgb(var(--color_white));
}

.table-cust table tbody tr:nth-child(even) th,
.table-cust table tbody tr:nth-child(even) td {
  background: linear-gradient(to right, #ffffb2 0%, #dff2ff 100%);
}

.table-cust table tbody tr td:nth-child(2) {
  color: rgb(var(--color_base));
  background: rgba(var(--primary2), 0.4);
}

.table-cust table tbody tr {
  transition: all .3s linear;
}

.table-cust table tbody tr td {
  border: 1px solid rgba(var(--primary1), 0.2);
}

.table-cust table tbody tr th {
  border: 1px solid rgba(var(--primary1), 0.2);
}

/* ==========================================
   STICKY PROMO TOAST WIDGET
   ========================================== */
.vitacore-toast-widget {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 9999;
  pointer-events: auto;
}

/* State 1: Full Card */
.vitacore-toast-widget .toast-full-card {
  width: 200px;
  background: rgb(var(--color_white));
  border-radius: calc(var(--radius) / 1.7) 0 0 calc(var(--radius) / 1.7);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: block;
}

/* Toggle Collapse/Expand States */
.vitacore-toast-widget.is-collapsed .toast-full-card {
  display: none;
}

.vitacore-toast-widget.is-collapsed .toast-collapsed-card {
  display: block;
}

/* State 2: Collapsed Card */
.vitacore-toast-widget .toast-collapsed-card {
  display: none;
  width: 90px;
  height: 105px;
  position: relative;
  cursor: pointer;
  background: rgb(var(--color_white));
  border-radius: calc(var(--radius) / 1.7) 0 0 calc(var(--radius) / 1.7);
  transition: all 0.3s ease-in-out;
  padding: 0.7rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.vitacore-toast-widget .toast-collapsed-card:hover {
  transform: translateY(-5px);
}

/* Collapsed card bottle image styling */
.vitacore-toast-widget .toast-collapsed-img {
  width: 45px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

/* Expanded state button (+) styling */
.vitacore-toast-widget .toast-expand-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  background-color: #e5eac3;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 10;
}

.vitacore-toast-widget .toast-expand-btn:hover {
  background-color: #dce3a5;
  transform: scale(1.1);
}

/* Close Button (X) */
.vitacore-toast-widget .toast-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  background-color: #e5eac3;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.7rem;
  font-weight: 300;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
  line-height: 1;
}

.vitacore-toast-widget .toast-close-btn:hover {
  background-color: #dce3a5;
  transform: scale(1.1);
}

/* Image container */
.vitacore-toast-widget .toast-img-container {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  padding: 0;
}

.vitacore-toast-widget .toast-product-img {
  max-height: 124px;
  width: auto;
}

.vitacore-toast-widget .toast-badge {
  background-color: #E9E9E9;
  color: rgb(var(--color_base));
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: calc(var(--radius) / 3);
  position: absolute;
  left: 90px;
  bottom: 10px;
}

/* Link/text styling */
.vitacore-toast-widget .toast-title {
  display: block;
  font-size: 1.125rem;
  line-height: normal;
  background-image: linear-gradient(to top, rgb(var(--primary1)), rgb(var(--primary2)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 300;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.vitacore-toast-widget .toast-title:hover {
  color: #0056a0;
}

.vitacore-toast-widget .toast-title .highlight {
  font-weight: 700;
}

.vitacore-toast-widget .toast-divider {
  border: 0;
  border-top: 1px solid #ebebeb;
  margin: 7px 0;
  opacity: 1;
}

.vitacore-toast-widget .toast-action {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: rgb(var(--color_base));
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s ease;
}

.vitacore-toast-widget .toast-action .has-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  margin-left: 0.5rem;
}

.vitacore-toast-widget .toast-action .has-arrow::after {
  content: "";
  background-image: url('../images/arrow.png');
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline-block;
  transition: all .3s linear;
}


.vitacore-toast-widget .toast-action:hover .has-arrow::after,
.vitacore-toast-widget .toast-action:focus .has-arrow::after,
.vitacore-toast-widget .toast-action:active .has-arrow::after {
  transform: rotate(45deg);
}

.wishlist {position: absolute; top: 0.75rem; right: 0.75rem; width: 2.25rem; height: 2.25rem; border: none; background: rgba(var(--primary1),0.05); color: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: background 0.2s, color 0.2s; z-index: 1;}
.wishlist:hover {background: rgba(var(--primary1),0.05);  color: rgb(var(--primary1));}
.best-sellers .name {color: #1a1a1a; text-decoration: none; margin-bottom: 0.35rem; display: block;}
.best-sellers .name:hover {color: rgba(var(--primary1));}
.best-sellers .price {color: #747474; margin: 0 0 0.75rem 0;}
.best-sellers__btn {letter-spacing: 0.05em; text-transform: uppercase; color: #fff; background: #1a1a1a; padding: 0.65rem 1rem; cursor: pointer; position: absolute; left: 0; right: 0; bottom: 0; text-decoration: none; text-align: center; transform: translateY(100%); transition: 0.4s;}
.best-sellers__btn:hover {background: rgba(var(--primary1));}
.best-sellers__card:hover .best-sellers__btn {transform: translateY(0);}

.about-formulation{
  border-radius: var(--padding);
  background-color: rgb(var(--primary3));
  padding: calc(var(--padding)/1.3);
}

.padding-top {
    background-color: rgb(var(--color_gray));
    border-radius: 0 0 var(--padding) var(--padding);
}

.nutrition-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.nutrition-list .nutrition-item{
  display: flex;
  align-items: center;
  background-color: rgb(var(--primary2));
  border-radius: calc(var(--radius) * 1.75);
  padding: 0.3rem 1.5rem 0.3rem 0.3rem;
  text-transform: capitalize;
  margin: 0 0.7rem 1rem 0;
  transition: all .3s linear;

}
.nutrition-list .nutrition-item .icon{
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nutrition-list .nutrition-item:hover .icon {
    transform: rotate(5deg);
}
.nutrition-list .nutrition-item:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.radius-35{
  border-radius: calc(var(--radius) * 1.75);
}

/* Quality & Manufacturing Section */
.quality-card {
  position: relative;
  background-color: rgb(var(--primary2)); /* Fallback for older browsers or if image fails to load */
  border-radius: var(--padding);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .quality-card::before {
    content: "";
    background: url('../images/quality-pic.jpg') no-repeat right center;
    background-size: contain;
    position: absolute;
    width:  832px;
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
  }
}

.quality-text-col {
  background-color: rgb(var(--primary2));
  color: rgb(var(--color_white));
  padding: calc(var(--padding) / 1.5);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.quality-text-col .badge-wrapper{
  color: rgb(var(--color_black));
}

@media (min-width: 992px) {
  .quality-text-col {
    border-radius: var(--padding);    
  }
}

.quality-content {
  width: 100%;
}

.quality-badge {
  background-color: #fff;
  color: #1a1a1a;
  padding: 0.5rem 1.25rem;
  font-size: clamp(0.875rem, 0.8rem + 0.3vw, 1.05rem);
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.quality-title {
  font-family: 'Plus Jakarta Sans', var(--baseFont);
  font-size: clamp(1.8rem, 1.5rem + 2vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.quality-title strong {
  font-weight: 700;
}

.quality-desc {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem) !important;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
}

.quality-desc:last-child {
  margin-bottom: 0;
}

.quality-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.quality-img-col {
  min-height: 350px;
  background: url('../images/quality-pic.jpg') no-repeat 72% center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .quality-img-col {
    background: none;
    min-height: auto;
  }
}

.general-content h2,.general-content h3,.general-content h4,.general-content h5,.general-content h6{
  color: rgb(var(--primary1));
  margin-bottom: 1rem;
  font-weight: normal;
}
.general-content ul,.general-content ol{
  margin: 0.8rem;
}
.general-content ul li,.general-content ol li{
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.general-content a{
  color: rgb(var(--primary1));
}

.wappicon {position: fixed; width: 50px; height: 50px; bottom: 20px; right: 40px; display: flex; align-items: center; justify-content: center; background-color: #25d366; color: rgb(var(--color_white)) !important; border-radius: 50px; box-shadow: 1px 1px 4px rgba(60, 60, 60, 0.4); transition: box-shadow 0.2s; font-size: 42px; z-index: 100; transition: all 0.4s;}
.wappicon img {width: 28px; filter: var(--imgWhite);}
/* .wappicon:hover, .wappicon:focus {text-decoration: none; background-color: rgb(var(--color_white)); color: #25d366;} */
.wappicon:before, .wappicon:after {content: ''; display: block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; border: 1px solid rgb(37 211 102 / 63%); border-radius: 50%; z-index: -1;}
.wappicon:before {animation: btn_ring_anim 2s linear infinite;}
.wappicon:after {animation: btn_ring_anim 2s linear 1s infinite;}
@keyframes btn_ring_anim {
    0% {transform: scale(1); opacity: 0.1;}
    50% {transform: scale(1.3); opacity: 1;}
    100% {transform: scale(1.6); opacity: 0;}
}