/* =========================================================
   TOTAL DIET CONTROL
   ROOT VARIABLES
========================================================= */

:root {

  --tdc-primary: #314a25;
  --tdc-primary-dark: #17321f;
  --tdc-primary-deep: #0d2719;

  --tdc-secondary: #667455;

  --tdc-olive: #a5ac86;
  --tdc-olive-light: #c1c5a3;

  --tdc-cream: #f4f1e5;

  --tdc-white: #ffffff;
  --tdc-black: #11150f;

  --tdc-gold: #c8b873;
  --tdc-lime: #d8eb76;

  --tdc-muted: #6d7565;

  --tdc-font-body: "DM Sans", sans-serif;
  --tdc-font-display: "Playfair Display", serif;

  --tdc-transition:
      all 0.45s cubic-bezier(0.22, 1, 0.36, 1);

}


/* =========================================================
 RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: var(--tdc-font-body);
  background: var(--tdc-cream);
  color: var(--tdc-black);
  overflow-x: hidden;
}


a {
  text-decoration: none;
}


button {
  font-family: inherit;
}


/* =========================================================
 HERO
========================================================= */

.tdc-hero {

  position: relative;

  width: 100%;
  height: 100vh;

  min-height: 700px;

  overflow: hidden;

  background: var(--tdc-olive);

}


/* =========================================================
 SWIPER
========================================================= */

.tdcHeroSwiper {

  width: 100%;
  height: 100%;

}


.tdcHeroSwiper .swiper-wrapper {

  height: 100%;

}


.tdcHeroSwiper .swiper-slide {

  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

}


/* =========================================================
 SLIDE BACKGROUND
========================================================= */

.tdc-slide-background {

  position: absolute;

  inset: 0;

  display: grid;

  grid-template-columns: 50% 50%;

  z-index: 0;

}


.tdc-slide-left {

  height: 100%;

  background:
      linear-gradient(
          135deg,
          #adb18e 0%,
          #a3a984 100%
      );

}


.tdc-slide-right {

  position: relative;

  height: 100%;

  overflow: hidden;

  background: var(--tdc-primary-dark);

}


.tdc-slide-bg-image {

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transform: scale(1.05);

  transition:
      transform 8s ease;

}


/* Active slide background animation */

.tdcHeroSwiper .swiper-slide-active
.tdc-slide-bg-image {

  transform: scale(1.12);

}


/* =========================================================
 HEADER
========================================================= */

.tdc-header {

position: relative;

top: 0;

left: 0;

width: 100%;

z-index: 50;
}


.tdc-navbar {

/* min-height: 64px!important;

 position: absolute!important; */

padding: 0 15px!important;

border-radius: 0px;

background: rgba(9, 38, 25, 0.97)!important;

backdrop-filter: blur(12px);
}


/* =========================================================
 BRAND
========================================================= */

.tdc-brand {

display: inline-flex!important;

align-items: center;

padding: 0px !important;
}

.tdc-brand img{
  width: 200px;
}


/* =========================================================
 NAVIGATION
========================================================= */

.tdc-main-menu {

gap: 4px;
}


.tdc-main-menu .nav-link {

display: flex;

align-items: center;

gap: 5px;

padding:
      10px 14px !important;

color:
      rgba(255,255,255,0.72);

font-size: 14px;

font-weight: 500;

text-transform: uppercase;

letter-spacing: 0.7px;

transition: var(--tdc-transition);
}


.tdc-main-menu .nav-link i {

  font-size: 8px;

}


.tdc-main-menu .nav-link:hover,
.tdc-main-menu .nav-link.active {

  color: var(--tdc-white);

}


/* =========================================================
 NAV RIGHT
========================================================= */

.tdc-nav-right {

display: flex;

align-items: center;

gap: 10px;

background: transparent!important;
}


.tdc-search-text {

  color:
      rgba(255,255,255,0.55);

  font-size: 10px;

}


.tdc-nav-icon {

position: relative!important;

display: flex!important;

align-items: center;

justify-content: center;

width: 40px!important;

height: 40px;

border: 0!important;

padding: 0;

background: transparent!important;

color: var(--tdc-white)!important;

cursor: pointer!important;
}


.tdc-nav-icon:hover {

  color: var(--tdc-lime);

}


.tdc-cart-count {

position: absolute;

top: -4px;

right: 0px;

display: flex;

align-items: center;

justify-content: center;

width: 20px;

height: 20px;

border-radius: 50%;

background: var(--tdc-lime);

color: var(--tdc-primary-dark);

font-size: 14px;

font-weight: 700;
}


/* =========================================================
 MOBILE MENU BUTTON
========================================================= */

.tdc-menu-toggle {

width: 40px!important;

height: 38px;

padding: 7px!important;

border: 0;

/* display: none!important; */

box-shadow: none !important;
}


.tdc-menu-toggle span {

  display: block;

  width: 22px;
  height: 1px;

  margin: 5px auto;

  background: var(--tdc-white);

}


/* =========================================================
 HERO CONTAINER
========================================================= */

.tdc-hero-container {

  position: relative;

  z-index: 5;

  width: 100%;
  height: 100%;

}


/* =========================================================
 HERO CONTENT
========================================================= */

.tdc-hero-content {

  position: relative;

  z-index: 10;

  max-width: 650px;

  padding-left:
      clamp(40px, 8vw, 125px);

  padding-top: 100px;

}


.tdc-hero-eyebrow {

display: block;

margin-bottom: 18px;

color:
      rgba(20, 42, 24, 0.72);

font-size: 13px;

font-weight: 600;

letter-spacing: 2.5px;

text-transform: uppercase;
}


.tdc-hero-title {

margin: 0;

color: var(--tdc-primary-dark);

font-family:
      var(--tdc-font-display);

font-size: 81px;

line-height: 0.96;

font-weight: 400;

letter-spacing: -3px;
}


.tdc-hero-title span {

  font-style: normal;

}


.tdc-hero-title em {

  display: inline-block;

  font-style: italic;

  font-weight: 400;

}


.tdc-hero-description {

max-width: 455px;

margin-top: 28px;

margin-bottom: 30px;

color:
      rgba(20, 40, 24, 0.72);

font-size: 18px;

line-height: 1.75;
}


/* =========================================================
 CTA
========================================================= */

.tdc-primary-btn {

display: inline-flex;

align-items: center;

gap: 15px;

/* min-height: 48px; */

border: none;

padding: 10px 30px;

border-radius: 15px;

background:
      var(--tdc-primary-dark);

color: var(--tdc-white);

font-size: 16px;

font-weight: 600;

transition: var(--tdc-transition);
}


.tdc-primary-btn:hover {

  color: var(--tdc-white);

  background:
      var(--tdc-primary);

  transform: translateY(-3px);

  box-shadow:
      0 12px 30px
      rgba(13,39,25,0.22);

}


.tdc-btn-arrow {

  display: flex;

  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: var(--tdc-lime);

  color: var(--tdc-primary-dark);

  transition: var(--tdc-transition);

}


.tdc-primary-btn:hover
.tdc-btn-arrow {

  transform: rotate(45deg);

}


/* =========================================================
 HERO PRODUCT
========================================================= */

.tdc-hero-visual {

  position: relative;

  width: 100%;
  height: 100%;

}


.tdc-hero-product {

  position: absolute;

  left: -8%;

  bottom: -30px;

  z-index: 5;

  width:
      min(480px, 45vw);

}


.tdc-hero-product img {

  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  filter:
      drop-shadow(
          15px 25px 25px
          rgba(0,0,0,0.20)
      );

}


/* =========================================================
 SLIDE CONTENT ANIMATION
========================================================= */

.tdcHeroSwiper
.swiper-slide
.tdc-hero-content {

  opacity: 0;

  transform:
      translateY(35px);

  transition:
      opacity 0.8s ease 0.15s,
      transform 0.8s
      cubic-bezier(0.22,1,0.36,1);

}


.tdcHeroSwiper
.swiper-slide-active
.tdc-hero-content {

  opacity: 1;

  transform:
      translateY(0);

}


.tdcHeroSwiper
.swiper-slide
.tdc-hero-product {

  opacity: 0;

  transform:
      translateY(50px);

  transition:
      opacity 0.9s ease 0.25s,
      transform 0.9s
      cubic-bezier(0.22,1,0.36,1);

}


.tdcHeroSwiper
.swiper-slide-active
.tdc-hero-product {

  opacity: 1;

  transform:
      translateY(0);

}


/* =========================================================
 HERO BOTTOM
========================================================= */

.tdc-hero-bottom {

position: absolute;

z-index: 30;

left: 9%;

bottom: 115px;

display: flex;

align-items: center;

gap: 25px;
}


/* =========================================================
 COUNTER
========================================================= */

.tdc-slide-counter {

display: flex;

align-items: center;

gap: 10px;

color:
      rgba(20,42,24,0.65);

font-size: 15px;

letter-spacing: 1px;
}


.tdc-slide-progress {

  position: relative;

  width: 60px;
  height: 1px;

  overflow: hidden;

  background:
      rgba(20,42,24,0.2);

}


.tdc-slide-progress span {

  display: block;

  width: 33.333%;

  height: 100%;

  background:
      var(--tdc-primary-dark);

  transition:
      width 0.5s ease;

}


/* =========================================================
 SWIPER NAVIGATION
========================================================= */

.tdc-swiper-navigation {

  display: flex;

  gap: 7px;

}


.tdc-swiper-btn {

  position: relative !important;

  left: auto !important;
  right: auto !important;
  top: auto !important;

  margin: 0 !important;

  width: 35px !important;
  height: 35px !important;

  display: flex !important;

  align-items: center;
  justify-content: center;

  border:
      1px solid
      rgba(20,42,24,0.3);

  border-radius: 50%;

  background: transparent;

  color:
      var(--tdc-primary-dark);

  transition:
      var(--tdc-transition);

}


.tdc-swiper-btn::after {

  display: none !important;

}


.tdc-swiper-btn:hover {

  background:
      var(--tdc-primary-dark);

  border-color:
      var(--tdc-primary-dark);

  color:
      var(--tdc-white);

}


/* =========================================================
 SWIPER PAGINATION
========================================================= */

.tdc-swiper-pagination {

  display: none;

}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 1199px) {

  .tdc-main-menu .nav-link {

      padding-left: 8px !important;
      padding-right: 8px !important;

  }


  .tdc-search-text {

      display: none;

  }


  .tdc-hero-content {

      padding-left: 7vw;

  }


  .tdc-hero-title {

      font-size:
          clamp(48px, 5.5vw, 68px);

  }


  .tdc-hero-product {

      width: 400px;

      left: -10%;

  }

}


/* =========================================================
 TABLET PORTRAIT
========================================================= */

@media (max-width: 991px) {

  .tdc-hero {

      height: 900px;

  }


  .tdc-slide-background {

      grid-template-columns: 100%;

      grid-template-rows: 55% 45%;

  }


  .tdc-slide-left {

      height: 100%;

  }


  .tdc-slide-right {

      height: 100%;

  }


  .tdc-hero-content {

      padding:
          150px 8vw 0;

  }


  .tdc-hero-title {

      font-size:
          clamp(55px, 9vw, 78px);

  }


  .tdc-hero-description {

      max-width: 500px;

  }


  .tdc-hero-visual {

      height: 420px;

  }


  .tdc-hero-product {

      left: 50%;

      bottom: -80px;

      width:
          min(390px, 60vw);

      transform:
          translateX(-50%) !important;

  }


  .tdcHeroSwiper
  .swiper-slide-active
  .tdc-hero-product {

      transform:
          translateX(-50%) !important;

  }


  .tdc-hero-bottom {

      left: 8%;

      bottom: 25px;

  }

}


/* =========================================================
 MOBILE LANDSCAPE
========================================================= */

@media (max-width: 767px) and (orientation: landscape) {

  .tdc-hero {

      height: 650px;

      min-height: 650px;

  }


  .tdc-slide-background {

      grid-template-columns: 50% 50%;

      grid-template-rows: 100%;

  }


  .tdc-hero-content {

      padding:
          115px 20px 0 7vw;

  }


  .tdc-hero-title {

      font-size:
          clamp(38px, 7vw, 54px);

      letter-spacing: -2px;

  }



  .tdc-hero-description {

      margin-top: 15px;
      margin-bottom: 18px;

      max-width: 350px;

      font-size: 11px;

      line-height: 1.5;

  }


  .tdc-hero-eyebrow {

      margin-bottom: 10px;

  }


  .tdc-hero-visual {

      height: 650px;

  }


  .tdc-hero-product {

      width:
          min(300px, 45vw);

      left: -5%;

      bottom: -20px;

  }


  .tdc-hero-bottom {

      bottom: 15px;

  }

}


/* =========================================================
 MOBILE PORTRAIT
========================================================= */

@media (max-width: 575px) {

  .tdc-hero {

      height: 533px;

      min-height: 533px;

  }


  .tdc-slide-background {

      grid-template-columns: 100%;

      grid-template-rows: 62% 38%;

  }


  .tdc-navbar {

      min-height: 48px;

  }


  .tdc-brand {

      font-size: 21px;

  }


  .tdc-hero-content {

      padding:
          85px 25px 0;

  }


  .tdc-hero-eyebrow {

      font-size: 8px;

      letter-spacing: 2px;

      margin-bottom: 14px;

  }


  .tdc-hero-title {

      font-size:
          clamp(48px, 14vw, 68px);

      line-height: 0.92;

      letter-spacing: -2.5px;

  }


  .tdc-hero-description {

      max-width: 330px;

      margin-top: 20px;

      font-size: 12px;

      line-height: 1.65;

  }


  .tdc-primary-btn {

      min-height: 44px;

      padding-left: 18px;

      font-size: 10px;

  }


  .tdc-btn-arrow {

      width: 32px;
      height: 32px;

  }


  .tdc-hero-visual {

      height: 300px;

  }


  .tdc-hero-product {

      width:
          330px;

      max-width: 80vw;

      left: 50%;

      bottom: -65px;

  }


  .tdcHeroSwiper
  .swiper-slide-active
  .tdc-hero-product {

      transform:
          translateX(-50%) !important;

  }


  .tdc-hero-bottom {

      left: 25px;

      bottom: 18px;

      gap: 15px;

  }


  .tdc-slide-progress {

      width: 45px;

  }


  .tdc-swiper-btn {

      width: 30px !important;
      height: 30px !important;

      font-size: 11px;

  }

}


/* =========================================================
 EXTRA SMALL
========================================================= */

@media (max-width: 380px) {

  .tdc-hero {

      height: 780px;

  }


  .tdc-hero-content {

      padding-left: 20px;
      padding-right: 20px;

  }


  .tdc-hero-title {

      font-size: 46px;

  }


  .tdc-hero-description {

      font-size: 11px;

  }


  .tdc-hero-product {

      width: 290px;

  }

}


/* =========================================================
 ABOUT US SECTION
========================================================= */

.tdc-about-section {

  position: relative;

  padding: 70px 0;

  overflow: hidden;

  background: var(--tdc-cream);

}


/* =========================================================
 ABOUT CONTENT
========================================================= */

.tdc-about-content {

  max-width: 560px;

  padding-right: 45px;

}


.tdc-about-title {

font-size: 72px;

line-height: 1;

margin-bottom: 0;
}


.tdc-about-description {

  margin-top: 28px;

  margin-bottom: 18px;

  max-width: 510px;

}


.tdc-about-text {

  max-width: 510px;

  margin-bottom: 28px;

  color:
      rgba(20, 42, 24, 0.68);

  font-size: 18px;

  line-height: 1.8;

}


/* =========================================================
 ABOUT VISUAL
========================================================= */

.tdc-about-visual {

  position: relative;

  width: 100%;

  min-height: 600px;

}


/* =========================================================
 BACK IMAGE
========================================================= */

.tdc-about-image-back {

position: absolute;

top: 0;

left: 0;

width: 70%;

height: 100%;

border-radius: 15px;

overflow: hidden;

/* background: var(--tdc-olive); */
}


.tdc-about-image-back img {

width: 100%;

height: 100%;

border-radius: 15px;

display: block;

object-fit: cover;

transition:
      transform 0.8s
      cubic-bezier(0.22, 1, 0.36, 1);
}


.tdc-about-visual:hover
.tdc-about-image-back img {

  transform: scale(1.05);

}


/* =========================================================
 FRONT IMAGE
========================================================= */

.tdc-about-image-front {

border-radius: 15px;

position: absolute;

right: 0;

bottom: -45px;

width: 55%;

height: 38%;

z-index: 3;

overflow: hidden;

border: 6px solid #d8eb76;
}


.tdc-about-image-front img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
      transform 0.8s
      cubic-bezier(0.22, 1, 0.36, 1);

}


.tdc-about-visual:hover
.tdc-about-image-front img {

  transform: scale(1.04);

}


/* =========================================================
 IMAGE TAG
========================================================= */

.tdc-about-image-tag {

  position: absolute;

  left: 5%;

  bottom: 5%;

  z-index: 5;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 12px 16px;

  background:
      rgba(244, 241, 229, 0.94);

  backdrop-filter: blur(8px);

}


.tdc-about-image-tag span {

  display: flex;

  align-items: center;
  justify-content: center;

  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: var(--tdc-primary-dark);

  color: var(--tdc-white);

  font-size: 9px;

}


.tdc-about-image-tag p {

  margin: 0;

  color: var(--tdc-primary-dark);

  font-size: 8px;

  font-weight: 600;

  line-height: 1.4;

  letter-spacing: 1.5px;

}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 991px) {

  .tdc-about-section {

      padding: 100px 0;

  }


  .tdc-about-content {

      max-width: 100%;

      padding-right: 20px;

  }


  .tdc-about-visual {

      min-height: 560px;

      max-width: 650px;

      margin: 0 auto;

  }


  .tdc-about-image-back {

      right: 15%;

      width: 52%;

      height: 72%;

  }


  .tdc-about-image-front {

      width: 65%;

      height: 66%;

  }

}


/* =========================================================
 MOBILE LANDSCAPE
========================================================= */

@media (max-width: 767px) and (orientation: landscape) {

  .tdc-about-section {

      padding: 80px 0;

  }


  .tdc-about-content {

      padding-right: 0;

  }


  .tdc-about-title {

      font-size: 48px;

  }


  .tdc-about-description {

      margin-top: 20px;

  }


  .tdc-about-visual {

      min-height: 470px;

  }

}


/* =========================================================
 MOBILE PORTRAIT
========================================================= */

@media (max-width: 575px) {

  .tdc-about-section {

      padding: 75px 0;

  }


  .tdc-about-content {

      padding: 0 5px;

  }


  .tdc-about-title {

      font-size:
          clamp(44px, 13vw, 62px);

      letter-spacing: -2px;

  }


  .tdc-about-description {

      margin-top: 22px;

      font-size: 12px;

      line-height: 1.7;

  }


  .tdc-about-text {

      font-size: 12px;

      line-height: 1.75;

  }


  .tdc-about-visual {

      min-height: 470px;

      margin-top: 15px;

  }


  .tdc-about-image-back {

      top: 0;

      right: 18%;

      width: 62%;

      height: 68%;

  }


  .tdc-about-image-front {

      right: 0;

      bottom: 0;

      width: 72%;

      height: 65%;

      border-width: 5px;

  }


  .tdc-about-image-tag {

      left: 0;

      bottom: 2%;

      padding: 9px 12px;

  }


  .tdc-about-image-tag span {

      width: 30px;

      height: 30px;

  }


  .tdc-about-visual::before {

      display: none;

  }

}


/* =========================================================
 SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .tdc-about-visual {

      min-height: 400px;

  }


  .tdc-about-image-back {

      width: 65%;

  }


  .tdc-about-image-front {

      width: 75%;

      height: 64%;

  }


  .tdc-about-image-tag {

      transform: scale(0.85);

      transform-origin: left bottom;

  }

}


/* =====================================================
 BENEFITS SECTION
===================================================== */

.tdc-benefits-section {
  position: relative;
  padding: 70px 0;
  background: var(--tdc-cream);
  overflow: hidden;
}


/* =====================================================
 SECTION INTRO
===================================================== */

.tdc-benefits-intro {
  margin: 0 auto 50px;
  padding: 0 20px;
}

.tdc-section-tag {
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--tdc-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tdc-secondary);
}

.tdc-section-title {
  margin: 0;
  font-family: var(--tdc-font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--tdc-primary-dark);
}

.tdc-section-title span {
  display: block;
  font-style: italic;
  color: var(--tdc-primary);
}

.tdc-section-text {
  max-width: 600px;
  margin: 22px auto 0;
  font-family: var(--tdc-font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--tdc-muted);
}


/* =====================================================
 BENEFITS GRID
===================================================== */

.tdc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 100%;
  min-height: 620px;
}


/* =====================================================
 BENEFIT CARD
===================================================== */

.tdc-benefit-card {
  position: relative;

  min-height: 620px;

  background-size: cover;
  background-position: center;

  overflow: hidden;

  cursor: pointer;

  transition: var(--tdc-transition);
}


/* Image zoom */
.tdc-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: inherit;
  background-size: cover;
  background-position: center;

  transform: scale(1);

  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);

  z-index: 0;
}


/* =====================================================
 OVERLAY
===================================================== */

.tdc-benefit-overlay {
  position: absolute;
  inset: 0;

  background:
      linear-gradient(
          to top,
          rgba(13, 39, 25, 0.95) 0%,
          rgba(23, 50, 31, 0.45) 42%,
          rgba(23, 50, 31, 0.05) 75%
      );

  transition: var(--tdc-transition);

  z-index: 1;
}


/* =====================================================
 CARD CONTENT
===================================================== */

.tdc-benefit-content {
  position: absolute;
  inset: 0;

  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  z-index: 2;
}


/* =====================================================
 NUMBER
===================================================== */

.tdc-benefit-number {
  margin-bottom: 18px;

  font-family: var(--tdc-font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;

  color: var(--tdc-white);

  transition: var(--tdc-transition);
}


/* =====================================================
 BENEFIT INFO
===================================================== */

.tdc-benefit-info {
  transform: translateY(65px);

  transition:
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tdc-benefit-label {
  display: block;
  margin-bottom: 9px;

  font-family: var(--tdc-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;

  color: var(--tdc-white);
}

.tdc-benefit-info h3 {
  max-width: 250px;

  margin: 0;

  font-family: var(--tdc-font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;

  color: var(--tdc-white);
}

.tdc-benefit-info p {
  max-width: 280px;

  margin: 18px 0 0;

  font-family: var(--tdc-font-body);
  font-size: 14px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.82);

  opacity: 0;

  transform: translateY(20px);

  transition:
      opacity 0.5s ease 0.1s,
      transform 0.5s ease 0.1s;
}


/* =====================================================
 HOVER
===================================================== */

.tdc-benefit-card:hover {
  z-index: 5;
}

.tdc-benefit-card:hover::before {
  transform: scale(1.08);
}

.tdc-benefit-card:hover .tdc-benefit-overlay {
  background:
      linear-gradient(
          to top,
          rgba(13, 39, 25, 0.98) 0%,
          rgba(23, 50, 31, 0.78) 48%,
          rgba(23, 50, 31, 0.28) 100%
      );
}

.tdc-benefit-card:hover .tdc-benefit-info {
  transform: translateY(0);
}

.tdc-benefit-card:hover .tdc-benefit-info p {
  opacity: 1;
  transform: translateY(0);
}

.tdc-benefit-card:hover .tdc-benefit-number {
  color: var(--tdc-lime);
}


/* =====================================================
 BOTTOM BORDER
===================================================== */

.tdc-benefit-card::after {
  content: "";

  position: absolute;
  left: 35px;
  right: 35px;
  bottom: 25px;

  height: 1px;

  background: rgba(255, 255, 255, 0.35);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.6s ease;

  z-index: 3;
}

.tdc-benefit-card:hover::after {
  transform: scaleX(1);
}


/* =====================================================
 RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

  .tdc-benefits-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .tdc-benefit-card {
      min-height: 560px;
  }

}


@media (max-width: 767px) {

  .tdc-benefits-section {
      padding-top: 75px;
  }

  .tdc-slide-right {
    display: none !important;
}


  .tdc-benefits-intro {
      margin-bottom: 40px;
  }

  .tdc-section-title {
      font-size: 42px;
  }

  .tdc-benefits-grid {
      grid-template-columns: 1fr;
  }

  .tdc-benefit-card {
      min-height: 520px;
  }

  /*
     On mobile make information visible
     because hover doesn't exist naturally.
  */

  .tdc-benefit-info {
      transform: translateY(0);
  }

  .tdc-benefit-info p {
      opacity: 1;
      transform: translateY(0);
  }

  .tdc-benefit-overlay {
      background:
          linear-gradient(
              to top,
              rgba(13, 39, 25, 0.96),
              rgba(23, 50, 31, 0.2)
          );
  }

}


/* =========================================================
 PRODUCTS SECTION
========================================================= */

.tdc-products-section {
  position: relative;
  padding: 70px 0;

  background: var(--tdc-cream);
  overflow: hidden;
}


/* =========================================================
 HEADER
========================================================= */

.tdc-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 65px;
}

.tdc-products-heading {
  max-width: 650px;
}

.tdc-products-heading .tdc-section-title {
  margin: 0;
}


.tdc-products-description {
  max-width: 360px;
}

.tdc-products-description p {
  margin: 0 0 22px;
  font-family: var(--tdc-font-body);
  font-size: 18px;
  line-height: 1.8;
  color: var(--tdc-muted);
}



/* =========================================================
 PRODUCT CARD
========================================================= */

.tdc-product-card {
  border-radius: 10px;
  position: relative;
  height: 100%;
  background: var(--tdc-white);
  transition: var(--tdc-transition);
  padding: 0 !important;
}

.tdc-product-card:hover {
  transform: translateY(-8px);
}


/* =========================================================
 PRODUCT IMAGE
========================================================= */

.tdc-product-image {
  border-radius: 10px 10px 0 0;
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background:
      linear-gradient(
          145deg,
          var(--tdc-olive-light),
          var(--tdc-cream)
      );
  overflow: hidden;
}



/* Product image */

.tdc-product-image img {
  position: relative;
  z-index: 2;
  /* max-width: 111%; */
  /* max-height: 310px; */
  object-fit: contain;
  transition:
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tdc-product-card:hover
.tdc-product-image img {
  transform: scale(1.06) translateY(-5px);
}




/* =========================================================
 WISHLIST
========================================================= */

.tdc-wishlist-btn {
  position: absolute;

  top: 18px;
  right: 18px;

  z-index: 5;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(49, 74, 37, 0.18);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.7);

  color: var(--tdc-primary);

  backdrop-filter: blur(8px);

  cursor: pointer;

  transition: var(--tdc-transition);
}

.tdc-wishlist-btn:hover {
  background: var(--tdc-primary);
  border-color: var(--tdc-primary);

  color: var(--tdc-white);

  transform: rotate(-8deg);
}


/* =========================================================
 VIEW PRODUCT OVERLAY
========================================================= */

.tdc-product-view {
  border: 0;
  border-radius: 10px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  background: var(--tdc-primary-dark);
  color: var(--tdc-white);
  text-decoration: none;
  font-family: var(--tdc-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(15px);
  transition: var(--tdc-transition);
}

.tdc-product-card:hover
.tdc-product-view {
  opacity: 1;
  transform: translateY(0);
}

.tdc-product-view i {
  font-size: 15px;

  transition: var(--tdc-transition);
}

.tdc-product-view:hover i {
  transform: translate(3px, -3px);
}


/* =========================================================
 PRODUCT DETAILS
========================================================= */

.tdc-product-details {
  padding: 25px 22px 22px;
}


/* =========================================================
 PRODUCT NAME + PRICE
========================================================= */

.tdc-product-top{
  display: flex;
  justify-content: start;
  align-items: center;
}

.tdc-product-name {
  margin: 0;
  max-width: 180px;
  font-family: var(--tdc-font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--tdc-primary-dark);
}

.tdc-product-price {
  white-space: nowrap;

  font-family: var(--tdc-font-body);
  font-size: 16px;
  font-weight: 600;

  color: var(--tdc-primary);
}


/* =========================================================
 BOTTLE SELECTOR
========================================================= */

/* =========================================================
 BOTTLE SELECTOR
========================================================= */

.tdc-bottle-selector {
  padding-top: 18px;
  border-top: 1px solid rgba(49, 74, 37, 0.12);
}

.tdc-bottle-label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--tdc-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tdc-muted);
}


/* =========================================================
 CUSTOM DROPDOWN
========================================================= */

.tdc-bottle-dropdown {
  position: relative;
  width: 100%;
}


/* =========================================================
 SELECT
========================================================= */

.tdc-bottle-options {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(49, 74, 37, 0.18);
  border-radius: 10px;
  outline: none;
  background: var(--tdc-white);
  font-family: var(--tdc-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--tdc-primary-dark);
  cursor: pointer;
  transition: var(--tdc-transition);
}


/* Hover */

.tdc-bottle-options:hover {
  border-color: var(--tdc-primary);
}


/* Focus */

.tdc-bottle-options:focus {
  border-color: var(--tdc-primary);

  box-shadow:
      0 0 0 3px rgba(49, 74, 37, 0.08);
}


/* =========================================================
 DROPDOWN ICON
========================================================= */

.tdc-dropdown-icon {
  position: relative;

  top: 50%;
  right: 17px;

  transform: translateY(-50%);

  font-size: 14px;

  color: var(--tdc-primary);

  pointer-events: none;

  transition: var(--tdc-transition);
}


/* Rotate icon when select focused */

.tdc-bottle-dropdown:focus-within
.tdc-dropdown-icon {
  transform: translateY(-50%) rotate(180deg);
}


/* =========================================================
 OPTIONS
========================================================= */

.tdc-bottle-options option {
  padding: 10px;

  background: var(--tdc-white);

  color: var(--tdc-primary-dark);

  font-family: var(--tdc-font-body);
}


/* =========================================================
 ADD TO BAG
========================================================= */

.tdc-add-cart-btn {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 17px;
  padding: 14px 17px;

  border: 1px solid var(--tdc-primary);

  background: transparent;

  font-family: var(--tdc-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: var(--tdc-primary);

  cursor: pointer;

  transition: var(--tdc-transition);
}

.tdc-add-cart-btn i {
  font-size: 15px;

  transition: var(--tdc-transition);
}

.tdc-add-cart-btn:hover {
  background: var(--tdc-primary);
  color: var(--tdc-white);
}

.tdc-add-cart-btn:hover i {
  transform: translateX(5px);
}



/* =========================================================
 BOTTLE OPTION
========================================================= */

.tdc-bottle-option {
  flex: 1;

  height: 38px;

  border: 1px solid rgba(49, 74, 37, 0.18);

  background: transparent;

  font-family: var(--tdc-font-body);
  font-size: 12px;
  font-weight: 600;

  color: var(--tdc-primary);

  cursor: pointer;

  transition: var(--tdc-transition);
}

.tdc-bottle-option:hover {
  border-color: var(--tdc-primary);

  background: var(--tdc-olive-light);
}


/* ACTIVE */

.tdc-bottle-option.active {
  background: var(--tdc-primary);
  border-color: var(--tdc-primary);

  color: var(--tdc-white);
}


/* =========================================================
 ADD TO BAG
========================================================= */

.tdc-add-cart-btn {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 17px;
  padding: 14px 17px;

  border: 1px solid var(--tdc-primary);

  background: transparent;

  font-family: var(--tdc-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: var(--tdc-primary);

  cursor: pointer;

  transition: var(--tdc-transition);
}

.tdc-add-cart-btn i {
  font-size: 15px;

  transition: var(--tdc-transition);
}

.tdc-add-cart-btn:hover {
  background: var(--tdc-primary);

  color: var(--tdc-white);
}

.tdc-add-cart-btn:hover i {
  transform: translateX(5px);
}


/* =========================================================
 RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .tdc-products-section {
      padding: 90px 0;
  }

  .tdc-products-header {
      align-items: flex-start;
      flex-direction: column;

      margin-bottom: 45px;
  }

  .tdc-products-description {
      max-width: 500px;
  }

}


@media (max-width: 767px) {

  .tdc-products-section {
      padding: 70px 0;
  }

  .tdc-section-title {
      font-size: 42px;
  }

  .tdc-product-image {
      height: 350px;
  }

  .tdc-product-view {
      opacity: 1;
      transform: translateY(0);
  }

}


@media (max-width: 575px) {

  .tdc-product-image {
      height: 380px;
  }

  .tdc-product-details {
      padding: 22px 18px 20px;
  }

}

/* =========================================================
 FAQ SECTION
========================================================= */

.tdc-faq-section {
  position: relative;

  padding: 70px 0;

  background: var(--tdc-cream);

  overflow: hidden;
}


/* =========================================================
 LEFT CONTENT
========================================================= */

.tdc-faq-content {
  padding-right: 45px;
}

.tdc-faq-content .tdc-section-title {
  margin-bottom: 22px;
}

.tdc-faq-content .tdc-section-text {
  margin: 0 0 32px;
  max-width: 450px;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--tdc-muted);
}


/* =========================================================
 FAQ IMAGE
========================================================= */

.tdc-faq-image {
  position: relative;

  width: 100%;
  height: 230px;

  margin: 30px 0 28px;

  overflow: hidden;

  background: var(--tdc-olive);
}

.tdc-faq-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.tdc-faq-image:hover img {
  transform: scale(1.06);
}


/* =========================================================
 CONTACT BUTTON
========================================================= */

.tdc-faq-contact {
  margin-top: 2px;
}


/* =========================================================
 FAQ ACCORDION
========================================================= */

.tdc-faq-accordion {
  padding-left: 20px;
}


/* Remove Bootstrap default */

.tdc-faq-accordion .accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
}


/* =========================================================
 ACCORDION ITEM
========================================================= */

.tdc-faq-accordion .accordion-item {
  border: 0;

  border-bottom: 1px solid
      rgba(49, 74, 37, 0.18);

  background: transparent;
}


/* =========================================================
 ACCORDION BUTTON
========================================================= */

.tdc-faq-accordion .accordion-button {
  position: relative;

  display: flex;
  align-items: center;

  gap: 22px;

  padding: 27px 5px 27px 0;

  background: transparent !important;

  box-shadow: none !important;

  font-family: var(--tdc-font-body);

  color: var(--tdc-primary-dark);

  transition: var(--tdc-transition);
}


/* Remove Bootstrap arrow */

.tdc-faq-accordion .accordion-button::after {
  width: 32px;
  height: 32px;

  margin-left: auto;

  border: 1px solid
      rgba(49, 74, 37, 0.2);

  border-radius: 50%;

  background-image: none;

  content: "+";

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: var(--tdc-font-body);
  font-size: 18px;
  font-weight: 300;

  color: var(--tdc-primary);

  transform: none;

  transition: var(--tdc-transition);
}


/* Active icon */

.tdc-faq-accordion
.accordion-button:not(.collapsed)::after {

  content: "-";

  background: var(--tdc-primary);

  border-color: var(--tdc-primary);

  color: var(--tdc-white);

  transform: none;
}


/* =========================================================
 FAQ NUMBER
========================================================= */

.tdc-faq-number {
  flex: 0 0 35px;
  font-family: var(--tdc-font-display);
  font-size: 25px;
  font-weight: 400;
  color: var(--tdc-secondary);
  transition: var(--tdc-transition);
}

.tdc-faq-accordion
.accordion-button:not(.collapsed)
.tdc-faq-number {
  color: var(--tdc-gold);
}


/* =========================================================
 FAQ QUESTION
========================================================= */

.tdc-faq-question {
  padding-right: 10px;

  font-family: var(--tdc-font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;

  color: var(--tdc-primary-dark);
}

.tdc-faq-accordion
.accordion-button:not(.collapsed)
.tdc-faq-question {
  color: var(--tdc-primary);
}


/* =========================================================
 ACCORDION BODY
========================================================= */

.tdc-faq-accordion .accordion-body {
  max-width: 650px;
  padding: 0 60px 28px 57px;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--tdc-muted);
}


/* =========================================================
 HOVER
========================================================= */

.tdc-faq-accordion
.accordion-button:hover
.tdc-faq-question {
  color: var(--tdc-primary);
}

.tdc-faq-accordion
.accordion-button:hover
.tdc-faq-number {
  color: var(--tdc-gold);
}


/* =========================================================
 RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .tdc-faq-section {
      padding: 90px 0;
  }

  .tdc-faq-content {
      padding-right: 0;
  }

  .tdc-faq-accordion {
      padding-left: 0;
      margin-top: 30px;
  }

}


@media (max-width: 767px) {

  .tdc-faq-section {
      padding: 70px 0;
  }

  .tdc-faq-content .tdc-section-title {
      font-size: 42px;
  }

  .tdc-faq-image {
      height: 210px;
  }

  .tdc-faq-accordion
  .accordion-button {
      gap: 14px;
      padding: 22px 0;
  }

  .tdc-faq-number {
      flex-basis: 28px;
  }

  .tdc-faq-question {
      font-size: 18px;
  }

  .tdc-faq-accordion
  .accordion-body {
      padding:
          0
          45px
          24px
          42px;

      font-size: 13px;
  }

}


@media (max-width: 575px) {

  .tdc-faq-image {
      height: 190px;
  }

  .tdc-faq-accordion
  .accordion-button::after {
      width: 28px;
      height: 28px;

      font-size: 16px;
  }

  .tdc-faq-question {
      font-size: 17px;
  }

}

/* =========================================================
 FOOTER
========================================================= */

.tdc-footer {
  position: relative;

  padding: 90px 0 0;

  background: var(--tdc-cream);

  border-top: 1px solid
      rgba(49, 74, 37, 0.12);

  overflow: hidden;
}


/* =========================================================
 FOOTER MAIN
========================================================= */

.tdc-footer-main {
  padding-bottom: 65px;
}


/* =========================================================
 LOGO
========================================================= */

.tdc-footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;

  margin-bottom: 22px;

  font-family: var(--tdc-font-display);
  font-size: 30px;
  font-weight: 500;

  line-height: 1;

  color: var(--tdc-primary-dark);

  text-decoration: none;

  transition: var(--tdc-transition);
}

.tdc-footer-logo span {
  font-style: italic;
  color: var(--tdc-primary);
}

.tdc-footer-logo:hover {
  color: var(--tdc-primary);
}


/* =========================================================
 DESCRIPTION
========================================================= */

.tdc-footer-description {
  max-width: 380px;
  margin: 0 0 22px;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--tdc-muted);
}



/* =========================================================
 FOOTER HEADING
========================================================= */

.tdc-footer-heading {
  margin: 5px 0 25px;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tdc-primary-dark);
}


/* =========================================================
 FOOTER LINKS
========================================================= */

.tdc-footer-links {
  padding: 0;
  margin: 0;

  list-style: none;
}

.tdc-footer-links li {
  margin-bottom: 14px;
}

.tdc-footer-links a {
  position: relative;
  display: inline-block;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tdc-muted);
  text-decoration: none;
  transition: var(--tdc-transition);
}

.tdc-footer-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 0;
  height: 1px;

  background: var(--tdc-primary);

  transition: var(--tdc-transition);
}

.tdc-footer-links a:hover {
  color: var(--tdc-primary);
}

.tdc-footer-links a:hover::after {
  width: 100%;
}


/* =========================================================
 CONTACT
========================================================= */

.tdc-footer-contact-list {
  display: flex;
  flex-direction: column;

  gap: 17px;
}

.tdc-footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tdc-primary-dark);
  text-decoration: none;
  transition: var(--tdc-transition);
}

.tdc-footer-contact:hover {
  color: var(--tdc-primary);
}


/* Contact icon */

.tdc-contact-icon {
  flex: 0 0 38px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid
      rgba(49, 74, 37, 0.16);

  border-radius: 50%;

  color: var(--tdc-primary);

  transition: var(--tdc-transition);
}

.tdc-footer-contact:hover
.tdc-contact-icon {
  background: var(--tdc-primary);
  border-color: var(--tdc-primary);

  color: var(--tdc-white);
}


/* Contact small label */

.tdc-footer-contact small {
  display: block;

  margin-bottom: 3px;

  font-family: var(--tdc-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: var(--tdc-secondary);
}


/* =========================================================
 FDA DISCLAIMER
========================================================= */

.tdc-fda-disclaimer {
  display: flex;
  align-items: flex-start;

  gap: 18px;

  padding: 25px 28px;

  border-top: 1px solid
      rgba(49, 74, 37, 0.14);

  border-bottom: 1px solid
      rgba(49, 74, 37, 0.14);

  background: rgba(255, 255, 255, 0.35);
}


/* FDA icon */

.tdc-fda-icon {
  flex: 0 0 42px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid
      rgba(49, 74, 37, 0.18);

  border-radius: 50%;

  color: var(--tdc-primary);

  font-size: 18px;
}


/* FDA heading */

.tdc-fda-disclaimer h3 {
  margin: 0 0 7px;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--tdc-primary-dark);
}


/* FDA text */

.tdc-fda-disclaimer p {
  max-width: 1050px;
  margin: 0;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--tdc-muted);
}


/* =========================================================
 FOOTER BOTTOM
========================================================= */

.tdc-footer-bottom {
  min-height: 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


/* Copyright */

.tdc-footer-bottom p {
  margin: 0;
  font-family: var(--tdc-font-body);
  font-size: 16px;
  color: var(--tdc-muted);
}


/* =========================================================
 LEGAL LINKS
========================================================= */

.tdc-footer-legal {
  display: flex;
  align-items: center;

  gap: 15px;
}

.tdc-footer-legal a {
  font-family: var(--tdc-font-body);
  font-size: 16px;
  color: var(--tdc-muted);
  text-decoration: none;
  transition: var(--tdc-transition);
}

.tdc-footer-legal a:hover {
  color: var(--tdc-primary);
}


/* Separator */

.tdc-footer-legal span {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--tdc-olive);
}


/* =========================================================
 RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .tdc-footer {
      padding-top: 75px;
  }

  .tdc-footer-main {
      padding-bottom: 50px;
  }

}


@media (max-width: 767px) {

  .tdc-footer {
      padding-top: 65px;
  }

  .tdc-footer-main {
      padding-bottom: 40px;
  }

  .tdc-footer-description {
      max-width: 500px;
  }

  .tdc-footer-heading {
      margin-top: 15px;
  }

  .tdc-fda-disclaimer {
      padding: 22px 20px;
  }

  .tdc-footer-bottom {
      min-height: auto;

      flex-direction: column;
      align-items: flex-start;

      padding: 25px 0;
  }

}


@media (max-width: 575px) {

  .tdc-footer {
      padding-top: 55px;
  }

  .tdc-footer-logo {
      font-size: 27px;
  }

  .tdc-fda-disclaimer {
      flex-direction: column;
  }

  .tdc-footer-legal {
      flex-wrap: wrap;
      gap: 10px;
  }

}

.navbar:not(.cart-navbar){
  position: unset!important;
}

.w-40{
  width: 40% !important;
  justify-content: center;
}
.product-content-wrapper{
  margin-top: 50px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-toggler {
      display: none !important;
  }
}