body {
  overflow-x: hidden;
}
h3.tdg-shop-banner-title {
  font-size: 18px;
  color: #e5ff24 !important;
  font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  top: 70px;
}
.tdg-shop-arrow-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  right: 15px;
  bottom: 50px;
}
.tdg-submenu-title h4 {
  color: #fff !important;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 0px 0;
}
.tdg-submenu .tdg-submenu-list-wrap ul li.tdg-submenu-title {
  border-bottom: none;
}
.tdg-submenu-subtitle {
}
.tdg-arrow-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  right: 0px;
  bottom: 6px;
}
.tdg-submenu-subtitle a {
  font-size: 13px;
  display: flex;
  justify-content: center;
  margin: 10px 0px;
  color: #fff;
}
svg#tdg-arrow-menu {
  width: 50px;
  margin: 0px 10px;
}
/* Block scrolling when mobile menu is open */
body.tdg-menu-open {
  overflow: hidden;

  width: 100%;
}

.tdg-mnm-children {
  margin-top: 8px;
  padding: 8px;
  background-color: #f8f8f8;

  border-left: 3px solid var(--blue-gray);
}

.tdg-mnm-label {
  font-size: 12px;
  font-weight: bold;
  color: var(--blue-gray);
  margin-bottom: 4px;
}

.tdg-mnm-child-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-size: 12px;
  line-height: 1.2em;
  padding-bottom: 4px;
  color: var(--blue-gray);
}

.tdg-mnm-child-name {
  flex: 1;
  font-weight: 500;
}

.tdg-mnm-child-size {
  color: #888;
  margin: 0 5px;
}

.tdg-mnm-child-qty {
  font-weight: bold;
  color: var(--blue-gray);
}

/* Cart Item Bottom Wrapper */
.tdg-cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tdg-menu-wrapper {
  position: relative;
  z-index: 1000;
}

.tdg-container {
  max-width: 1660px;
  margin: 0 auto;
  width: 80%;
}

/* Top Bar */
.tdg-top-text-middle {
  margin: 0px 20px;
  color: #c9e020;
}
.tdg-top-bar {
  background-color: var(--accent-green);
  color: var(--blue-gray);
  padding: 5px 0;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.tdg-containerd {
  overflow: hidden;
  width: 100%;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.tdg-top-text,
.tdg-top-text-mobile {
  font-size: 13px;
  display: flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 40s linear infinite;
}

.tdg-top-text span,
.tdg-top-text-mobile span {
  display: inline-block;

  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
@media (min-width: 981px) {
  .tdg-top-text-mobile {
    display: none;
  }
}
@media (max-width: 980px) {
  .tdg-top-text {
    display: none;
  }
}
/* Main Menu */
.tdg-main-menu {
  background-color: #0d1d27;
  color: #fff;
  padding: 15px 0;
  position: relative;
}

.tdg-menu-content {
  display: flex;
  align-items: center;
  gap: 100px;
}

.tdg-logo {
  position: relative;
  z-index: 1003;
}

.tdg-logo img {
  height: auto;
  width: 120px;
  display: block;
}

/* Desktop Navigation */
.tdg-nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  position: relative;
}

.tdg-menu-item {
}

.tdg-menu-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  padding-bottom: 40px;
  transition: color 0.3s ease;
}

.tdg-menu-link:hover {
  color: var(--accent-green);
}

.tdg-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(30px) !important;
  background: var(--blue-gray);
  min-width: 1350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 22px 22px 22px;
  padding: 50px 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.tdg-has-submenu:hover .tdg-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Subscribe Menu */
.tdg-subscribe-menu {
  display: flex;
  gap: 40px;
}

.tdg-submenu-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tdg-submenu-left li {
  margin-bottom: 15px;
}

.tdg-submenu-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.tdg-submenu-left a:hover {
  color: var(--accent-green);
}

.tdg-icons-row {
  display: flex;
  gap: 20px;
}

.tdg-icon-item {
  width: 60px;
  height: 60px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}
.tdg-subscribe-steps-container {
  background: #263a48;
  padding: 50px 30px;
  border-radius: 20px;
  position: relative;
}
.tdg-menu-icons-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.tdg-submenu-right {
  flex-grow: 1;
}
.tdg-subscribe-step {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* text-align: center; */
  flex-grow: 1;
  min-width: 140px;
}

.tdg-step-icon {
  width: 70px;
  max-height: 65px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.tdg-subscribe-step h4 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 5px;
}

.tdg-subscribe-step p {
  margin: 0;
  color: #ccc;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 400;
  text-align: center;
  display: none;
}

.tdg-step-arrow {
  width: 25px;
  /* height: 20px; */
  opacity: 1;
  /* margin-left: -15px; */
  /* margin-right: 15px; */
}

/* Shop Menu */
.tdg-shop-menu {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.tdg-shop-column {
  /* flex: 1; */
}

.tdg-shop-column h4 {
  color: #fff !important;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
  text-align: center;
}

.tdg-shop-brands {
  display: flex;
  gap: 23px;
  margin-bottom: 20px;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
.tdg-brand-item:after {
  content: "";
  background: hwb(203.08deg 5.1% 84.71% / 80%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  z-index: 1;
}
.tdg-shop-brand {
  display: block;
  /* flex: 1; */
  /* flex-grow: 1; */
  width: 50%;
  max-width: calc(50% - 12px);
  width: 100%;
}

.tdg-shop-brand img {
  width: 100%;
  max-width: 100px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  align-items: center;
  display: block;
  margin: auto;
}

.tdg-shop-brand:hover img {
  transform: scale(1.05);
}

.tdg-shop-all-btn {
  background: var(--accent-green);
  color: var(--blue-gray);
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
  margin: auto;
  display: block;
  max-width: max-content;
}

.tdg-shop-all-btn:hover {
  background: #0d1d27;
  color: var(--accent-green);
}

.tdg-potency-options {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.tdg-potency-option {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 20px;
  background: #273b4b;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease;
  flex-direction: column-reverse;
  max-width: 230px;
}

.tdg-potency-option:hover {
  background: #273b4b;
}

.tdg-potency-option img {
  width: 100%;
  max-width: 80px;
}

.tdg-potency-option span {
  font-weight: 600;
  font-size: 14px;
}

.tdg-shop-banner img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.tdg-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.tdg-icons-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tdg-featured-image {
  width: 200px;
  height: 150px;
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.tdg-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brands Menu */
.tdg-brand-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tdg-brand-item {
  max-height: 300px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  background: #f0f0f0;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: normal;
  box-shadow: 0px 6px 17px -10px #00000094;
}

.tdg-brand-item:hover {
  /* transform: translateY(-5px); */
}

.tdg-brand-bg {
  background: #0d1d27;
  position: absolute;
  width: 100%;
  display: none;
}

.tdg-brand-logo {
  width: 100%;
  max-width: 150px !important;
  z-index: 99;
  margin-top: auto;
}

.tdg-brand-btn {
  background: var(--accent-green);
  color: var(--blue-gray);
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700 !important;
  line-height: 1.2em;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
  margin-top: auto;
  z-index: 99;
}

.tdg-brand-btn:hover {
  background: #0d1d27;
  color: var(--accent-green);
}

.tdg-rewards-menu {
  display: flex;
  gap: 40px;
}

.tdg-submenu-right h4 {
  color: #fff !important;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
  text-align: center;
}

.tdg-rewards-steps {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.tdg-rewards-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-direction: column;
}

.tdg-rewards-icon {
  width: 60px;
  height: 60px;
}

.tdg-rewards-content h5 {
  color: #fff !important;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 0;
  margin: 0 0 5px 0;
}

.tdg-rewards-content p {
  color: #ccc;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.tdg-rewards-arrow {
  width: 30px;

  flex-shrink: 0;
}

.tdg-icons-horizontal {
  display: flex;
  gap: 30px;
}

.tdg-icon-with-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tdg-icon-with-text .tdg-icon {
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
}

.tdg-icon-with-text span {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

.tdg-learn-menu {
  display: flex;
  gap: 50px;
  align-items: center;
}

.tdg-learn-columns {
  display: flex;
  gap: 0px;
}

.tdg-learn-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tdg-learn-col li {
  margin-bottom: 12px;
}

.tdg-learn-icons {
  display: flex;
  gap: 15px;
  flex: 1;
  align-items: center;
}

.tdg-learn-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 1;
}

.tdg-learn-icon {
  width: 75px;
  height: 70px;
}

.tdg-learn-icon-item span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.tdg-menu-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.tdg-account-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.tdg-account-link:hover {
  color: var(--accent-green);
}

.tdg-cart-btn {
  background: none;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 14px;
}

.tdg-cart-btn:hover {
  color: var(--accent-green);
}

.tdg-cart-icon {
  width: 28px;
  height: 28px;
}

.tdg-account-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Toggle */
.tdg-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 1003;
  margin-left: 0;
}

.tdg-hamburger {
  display: flex;
  flex-direction: column;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}

.tdg-hamburger span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
.tdg-submenu .tdg-submenu-list-wrap ul {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  padding: 0 30px;
  padding-right: 5px;
  list-style: none;
}
.tdg-submenu .tdg-learn-columns ul {
  padding-right: 0;
}
.tdg-submenu .tdg-submenu-list-wrap {
  display: flex;
}

.tdg-submenu .tdg-submenu-list-wrap ul li {
  border-bottom: 1px solid #3a586c;
  padding-bottom: 15px;
  min-width: 150px;
}

.tdg-submenu .tdg-submenu-list-wrap ul li:last-of-type {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.tdg-mobile-toggle.active .tdg-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.tdg-mobile-toggle.active .tdg-hamburger span:nth-child(2) {
  opacity: 0;
}

.tdg-mobile-toggle.active .tdg-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.tdg-learn-icon-item span {
  text-transform: uppercase;
  max-width: 95px;
  font-weight: 700;
}
.tdg-mobile-menu {
  position: fixed;
  top: -120vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--blue-gray);
  z-index: 1002;
  transition: top 0.6s ease;
  overflow-y: auto;
}

.tdg-mobile-menu.active {
  top: 0;
}

.tdg-mobile-menu-content {
  padding: 20px;
}

.tdg-mobile-menu-header {
  display: none;
}

.tdg-mobile-logo img {
  height: auto;
  width: 80px;
}

.tdg-mobile-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tdg-mobile-nav {
  display: flex;
  flex-direction: column;
}
div#tdg-mobile-menu {
  display: flex;
  padding-top: 150px;
  padding-bottom: 100px;
}
.tdg-mobile-menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.tdg-mobile-menu-item:last-of-type {
  border: none;
}
.tdg-mobile-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 0;
  font-weight: 400;
  font-size: 18px;
}

.tdg-mobile-arrow {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tdg-mobile-arrow svg {
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}
.tdg-mobile-menu-link-wrapper {
  display: flex;
  justify-content: space-between;
}
.tdg-mobile-arrow.rotated svg {
  transform: rotate(180deg);
}

.tdg-mobile-submenu {
  display: none;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.tdg-mobile-submenu a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 15px 0;
  font-size: 16px;
}

/* Side Cart */
.tdg-side-cart {
  position: fixed;
  top: 0;
  right: -600px;
  width: 600px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1003;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 99999999;
}

.tdg-side-cart.active {
  right: 0;
}

.tdg-side-cart-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.tdg-side-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.tdg-side-cart-header h3 {
  margin: 0;
  color: var(--blue-gray);
  font-size: 24px;
}

.tdg-side-cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #666;
  background: transparent;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.tdg-side-cart-close:hover {
  background-color: var(--blue-gray);
  color: #fff;
}
.tdg-cart-ad {
  background: var(--blue-gray);
  color: #fff;
  padding: 0px 20px;
  padding-bottom: 10px;
  text-align: left;
  font-weight: 500;
  /* max-width: 90%; */
  margin: 0 30px;
  /* margin: auto; */
  border-radius: 20px;
}

.tdg-cart-items {
  flex: 1;
  padding: 10px 30px;
  color: #666;
  text-align: center;
}

.tdg-cart-footer {
  padding: 20px 30px;
  /* border-top: 1px solid #eee; */
  padding-top: 0;
  padding-bottom: 0;
}

.tdg-subtotal,
.tdg-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--blue-gray);
}

.tdg-total {
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.tdg-side-cart-content .tdg-checkout-btn {
  width: 100%;
  background: var(--accent-green);
  color: var(--blue-gray);
  /* color: #fff; */
  display: block;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 5px;
  text-align: center;
  transition: background 0.3s ease;
}

.tdg-side-cart-content .tdg-checkout-btn:hover {
  background: var(--blue-gray);
  color: #fff;
}

.tdg-payment-icons {
  text-align: center;
  margin-bottom: 15px;
  color: #666;
}

.tdg-payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.tdg-payment-methods span {
  background: #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.tdg-shipping-notice {
  text-align: center;
  color: var(--blue-gray);
  font-size: 16px;
  margin-bottom: 20px !important;
}
.tdg-shop-column.tdg-shop-product {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
h4.menu-title {
  color: #fff !important;
}

/* Cart Count Badge */
.tdg-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-green);
  color: var(--blue-gray);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.tdg-cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

.tdg-cart-btn {
  position: relative;
}

.tdg-cart-items-list {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 0px;
  margin-right: -10px;
  padding-right: 20px;
}

.tdg-cart-items-list::-webkit-scrollbar {
  width: 8px;
}

.tdg-cart-items-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.tdg-cart-items-list::-webkit-scrollbar-thumb {
  background: var(--blue-gray);
  border-radius: 4px;
  border: 0px solid var(--blue-gray);
}

.tdg-cart-items-list::-webkit-scrollbar-thumb:hover {
  background: var(--blue-gray);
  border: 1px solid var(--accent-green);
}

.tdg-cart-item {
  display: flex;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #dfe0e0;
  gap: 25px;
}

.tdg-cart-item:last-child {
  border-bottom: none;
}

.tdg-cart-item-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  align-self: baseline;
}

.tdg-cart-item-image {
  /* width: 60px; */
  /* height: 60px; */
  flex-shrink: 0;
}

.tdg-cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  max-width: 100px;
  display: block;
  object-fit: unset;
  height: auto;
  max-height: 150px;
}

.tdg-cart-item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: left;
  line-height: 1.2em;
  height: 100%;
}

.tdg-cart-item-name {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.tdg-cart-item-name a {
  color: #333;
  text-decoration: none;
}

.tdg-cart-item-name a:hover {
  color: #007cba;
}

.tdg-cart-item-acf-quantity {
  font-size: 14px;
  color: var(--blue-gray);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.tdg-cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #007cba;
  margin-bottom: 0px;
}

.tdg-cart-item-quantity {
  font-size: 14px;
  color: var(--blue-gray);
  display: flex;
  align-items: center;
  gap: 10px;

  justify-content: end;
}

.tdg-quantity-input {
  max-width: 65px;
  padding: 2px 5px !important;
  border: 1px solid var(--blue-gray) !important;
  border-radius: 50px;
  font-size: 16px;
  text-align: center;
  background: #f9f9f9;
}

.tdg-remove-cart-item {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--blue-gray);
  font-size: 14px;
  text-align: left;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.tdg-remove-cart-item:hover {
  color: #dc3545;
}

.tdg-empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-style: italic;
}

.tdg-cart-totals {
  padding: 15px 0;

  margin-bottom: 5px;
}

.tdg-cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tdg-summary-line {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: justify;
  width: 100%;
  line-height: 1.4em;
  font-weight: 800;
}

.tdg-summary-line:after {
  content: "";
  flex: 1;
  height: 1px;
  background: transparent;
  margin: 0 8px;
}

.tdg-side-cart-content .tdg-summary-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 5px 0;
}

.tdg-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  padding-top: 0px;
  line-height: 1em;
}

.tdg-summary-total:after {
  content: "";
  flex: 1;
  height: 1px;
  background: transparent;
  margin: 0 8px;
}
.tdg-payment-icons img {
  max-width: 150px;
}
.tdg-payment-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue-gray);
  font-size: 14px;
}

.tdg-shipping-notice p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tdg-shipping-notice {
  padding: 5px;
  border-radius: 100px;
  max-width: 90%;
  margin: auto;
}
.tdg-cart-ad {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tdg-ad-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4em;
  margin-top: 10px;
}

.tdg-ad-image {
  max-width: 270px;
}

.tdg-ad-text p {
  padding: 0;
  color: white;
}

.tdg-ad-subscribe {
  color: var(--accent-green);
  font-weight: bold;
}

.tdg-ad-bonus {
  color: var(--accent-green);
  font-weight: bold;
}

.link-to-shop {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.link-to-shop a {
  text-decoration: underline;
}

.tdg-side-cart-header h3 {
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 0;
}

h4.tdg-cart-item-name {
  padding: 0;
}

h4.tdg-cart-item-name a {
  color: var(--blue-gray);
  font-size: 20px;
}

.tdg-cart-item-price {
  color: var(--blue-gray);
  font-size: 20px;
  font-weight: 700;
}

.tdg-summary-line span,
.tdg-summary-total span {
  width: 100%;
}

.tdg-summary-line span:last-of-type,
.tdg-summary-total span:last-of-type {
  text-align: right;
}

.tdg-summary-total {
}

.tdg-checkout-btn:hover {
  background: var(--blue-gray);
  color: var(--accent-green);
}
a.edit_container_in_cart_text.edit_in_cart_text.tdg-edit-selection-btn {
  display: block;
  color: var(--blue-gray);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  max-width: max-content;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 10px;
}
.tdg-menu-item.tdg-menu-shop.active > a:before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  background: var(--accent-green);
  bottom: 30px;
}

.tdg-menu-item.tdg-menu-shop.active > a {
  position: relative;
}
.tdg-mobile-menu-content {
  margin-left: 20px;
  width: 100%;
  margin-right: 20px;
}
nav.tdg-mobile-nav .tdg-mobile-submenu {
  padding-top: 5px;
  padding-bottom: 0%;
}

nav.tdg-mobile-nav .tdg-mobile-submenu a {
  padding: 0;
}

.tdg-mobile-submenu-section {
  margin-bottom: 20px;
}

.tdg-mobile-submenu-section:last-child {
  margin-bottom: 0;
}

.tdg-mobile-submenu-section .tdg-mobile-submenu-header {
  color: var(--accent-green);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.tdg-shop-all-mobile {
  background: var(--accent-green);
  color: var(--blue-gray) !important;
  padding: 10px 15px !important;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  display: inline-block;
  max-width: max-content;
  transition: background 0.3s ease;
}

.tdg-shop-all-mobile:hover {
  background: #fff;
  color: var(--blue-gray) !important;
}
span.tdg-top-text {
  text-transform: uppercase;
}
.tdg-mobile-menu-item.tdg-has-mobile-submenu.active > a {
}
p.tdg-empty-cart a {
  display: block;
  background: var(--accent-green);
  max-width: max-content;
  padding: 10px 35px;
  display: block;
  margin: auto;
  margin-top: 30px;
  font-style: initial;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-gray);
  border-radius: 12px;
}
.tdg-cart-item[data-product-id="1127"] .tdg-cart-item-quantity {
  display: none;
}
.tdg-cart-item[data-product-id="1127"] a {
  pointer-events: none !important;
}
.tdg-ad-subscribe-subtitle {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-green);
  margin-top: 15px;
  font-size: 12px;
  margin-bottom: 5px;
}

.tdg-ad-subscribe-title {
  font-family: "Philosopher", Helvetica, Arial, Lucida, sans-serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tdg-ad-image {
  margin-right: -40px;
  margin-top: 30px;
  margin-bottom: -30px;
}

.tdg-ad-text {
  margin-top: 0;
  margin-right: -25px;
  z-index: 999;
}

p.tdg-ad-text {
  margin-bottom: 10px;
  font-size: 12px;
}

p.tdg-ad-text-dynamic {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

a.ad-gs-btn {
  background: var(--accent-green);
  padding: 8px 18px;
  font-size: 14px;
  text-decoration: none;
  color: var(--blue-gray);
  border-radius: 10px;
  transition: all ease 0.3s;
}

a.ad-gs-btn:hover {
  background: #10191e;
  color: var(--green-accent);
}

.link-to-shop {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

a.ad-hit-btn {
  color: #fff;
  text-underline-offset: 4px;
  font-weight: 500;
}

a.ad-hit-btn:after {
  content: "$";
  color: #e5ff24;
  line-height: inherit;
  font-size: inherit !important;
  opacity: 1;
  margin-left: 0.3em;
  left: auto;
  font-family: ETmodules !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  position: absolute;
}
.tdg-submenu.tdg-rewards-menu .tdg-subscribe-steps-container {
}
.tdg-submenu.tdg-rewards-menu .tdg-submenu-left.tdg-submenu-list-wrap {
  flex-direction: column;
  min-width: 225px;
}

.tdg-submenu.tdg-rewards-menu .tdg-submenu-left.tdg-submenu-list-wrap h4 {
  color: #fff !important;
  font-size: 24px;
  padding-left: 30px;
  margin-bottom: 30px;
  font-weight: 700;
}
.tdg-submenu.tdg-learn-menu .tdg-subscribe-steps-container {
  padding-top: 30px;
  padding-bottom: 70px;
}

.tdg-submenu.tdg-learn-menu > div > h4 {
  text-align: center;
  color: #fff !important;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
.tdg-submenu.tdg-subscribe-menu .tdg-submenu-left.tdg-submenu-list-wrap {
  min-width: 310px;
}
.tdg-subscribe-steps.tdg-menu-icons-wrap h4 {
  font-size: 18px;
}
.tdg-submenu-title {
  font-size: 20px !important;
}
.tdg-shop-brands a {
  padding: 20px 20px;
  background: #273b4b;
  display: flex;
  border-radius: 12px;
}

.tdg-shop-brands.shop-products {
  align-items: unset;
  max-width: 500px;
}
.tdg-submenu.tdg-shop-menu {
  justify-content: center;
}
.tdg-rewards-content {
  text-align: center;
  max-width: 200px;
}

.tdg-submenu.tdg-rewards-menu .tdg-subscribe-steps-container {
  width: 100%;
}

.tdg-menu-icons-wrap div {
  width: 100%;
}
.tdg-shop-banner img {
  max-height: 362px;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  max-width: 100%;
  display: block;
}

.tdg-shop-banner {
  width: 100%;
  display: block;
}
.tdg-mobile-submenu-section .tdg-shop-brands.shop-products {
  max-width: 100%;
}

.tdg-mobile-submenu-section .tdg-shop-brands a {
  min-height: 100px;
}

.tdg-mobile-submenu-section .tdg-shop-column.tdg-shop-product {
  margin-left: -20px;
  margin-top: 20px;
}
.tdg-mobile-submenu-section .tdg-shop-all-btn {
  background: var(--accent-green);
  color: var(--blue-gray);
  padding: 10px 35px !important;
  border-radius: 12px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease;
  margin: auto;
  display: block;
  max-width: max-content;
}
.tdg-potency-option span {
    display: block;
    line-height: 1.2em;
}

span.tdg-potency-value {
    font-weight: 400;
    font-size: 12px;
}

.tdg-potency-option {
    flex-direction: column;
}

.tdg-potency-option img {
    margin-top: 8px;
}
@media (max-width: 1400px) and (min-width: 981px) {
  .tdg-menu-content {
    gap: 30px;
  }

  .tdg-container {
    width: 100%;
    max-width: 95%;
  }
}

@media (max-width: 1650px) {
  .tdg-submenu {
    left: -30%;
  }
}
@media (max-width: 1400px) {
  .tdg-submenu {
    left: -15%;
  }
}
@media (max-width: 1330px) {
  .tdg-submenu {
    width: 100vw;
    min-width: unset;
    left: calc(-50vw + 50% + 47px);
    border-radius: 0 0 20px 20px;
  }

  .tdg-subscribe-steps.tdg-menu-icons-wrap {
    width: auto;
    padding: 40px 15px;
  }

  .tdg-subscribe-step {
    max-width: 135px;
    min-width: unset;
    width: 100%;
  }

  .tdg-submenu .tdg-submenu-list-wrap ul {
    padding: 0 15px;
  }

  .tdg-submenu.tdg-subscribe-menu {
    gap: 20px;
  }

  .tdg-submenu-right h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .tdg-subscribe-step p {
    text-align: center;
  }

  .tdg-shop-brands.shop-products {
    max-width: 300px;
    flex-wrap: wrap;
    /* flex: 1 1 50%; */
  }

  a.tdg-shop-brand {
    flex: 1 1 45%;
  }

  .tdg-submenu.tdg-shop-menu {
    gap: 20px;
  }

  .tdg-shop-column.tdg-shop-product {
    gap: 20px;
  }

  .tdg-brand-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .tdg-submenu.tdg-rewards-menu {
    gap: 20px;
  }

  .tdg-menu-icons-wrap {
    padding: 40px 20px;
  }

  .tdg-rewards-steps {
    gap: 10px;
  }

  .tdg-submenu.tdg-learn-menu {
    gap: 20px;
  }

  img.tdg-learn-icon {
    max-width: 50px;
  }

  .tdg-menu-icons-wrap {
    width: 100%;
  }

  .tdg-learn-icons {
    flex-wrap: wrap;
    width: 100%;
  }

  .tdg-learn-icon-item:nth-child(1) {
    width: 50%;
    flex: unset;
  }
  .tdg-learn-icon-item:nth-child(2) {
    width: 47%;
    flex: unset;
  }
  .tdg-submenu.tdg-learn-menu .tdg-submenu-right {
    max-width: unset;
  }

  .tdg-learn-icon-item span {
    max-width: unset;
  }
}
@media (min-width: 981px) {
  .tdg-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 980px) {
  span.tdg-top-text-mobile span {
    font-size: 14px;
    line-height: 1.3em;
    text-align: left;
  }
  .tdg-top-text span {
    display: block;
    font-size: 15px;
    line-height: 1.8em;
  }
  .tdg-menu-content {
    gap: 0;
  }
  .tdg-cart-item-right {
    gap: 0;
  }
  .tdg-nav-desktop {
    display: none;
  }

  .tdg-mobile-toggle {
    display: block;
  }

  .tdg-menu-right .tdg-account-link {
    display: none;
  }

  .tdg-cart-btn {
    font-size: 0;
  }

  .tdg-cart-btn .tdg-cart-icon {
    margin-right: 0;
  }

  .tdg-side-cart {
    width: 100%;
    right: -100%;
  }

  .tdg-cart-items {
    padding: 10px 20px;
  }
  .tdg-top-text {
    font-size: 12px;
  }
  .tdg-menu-content {
    min-height: 60px;
  }

  .tdg-logo {
    order: 2;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    /* display: block; */
    text-align: center;
    max-width: max-content;
  }

  button#tdg-mobile-toggle {
    order: 1;
  }

  .tdg-menu-right {
    order: 3;
  }

  .tdg-hamburger {
    width: 36px;
    height: 19px;
  }
}
@media (max-width: 980px) {
  .tdg-container {
    width: 90%;
  }
  .tdg-mobile-menu-item.my-account a {
    justify-content: flex-start;
    gap: 16px;
    background: #293f4e;
    max-width: max-content;
    padding: 10px 30px;
    border-radius: 50px;
    margin-top: 50px;
    font-size: 15px;
    text-transform: none;
  }
  button#tdg-cart-toggle {
    margin-right: 0px;
    z-index: 99999999;
  }
  .tdg-cart-item {
    gap: 15px;
  }

  .tdg-cart-item-image {
    width: 50px;
    height: 50px;
  }

  .tdg-cart-item-name {
    font-size: 14px;
  }

  .tdg-cart-item-quantity,
  .tdg-cart-item-price,
  .tdg-cart-item-acf-quantity {
    font-size: 14px;
  }

  .tdg-summary-line,
  .tdg-summary-total {
    font-size: 14px;
  }

  .tdg-quantity-input {
  }
  .tdg-ad-image {
    max-width: 200px;
    margin-right: -35px;
    margin-left: -15px;
  }

  .link-to-shop a {
    line-height: 1.2em;
  }

  .link-to-shop {
    gap: 18px;
    margin-top: 20px;
  }

  .tdg-cart-ad {
    margin: 0;
    padding: 20px 10px;
    border-radius: 0;
  }
}

.tdg-free-shipping-progress {
  background: #eee;
  padding: 10px;
  margin: 15px 30px;

  border-radius: 20px;
}

.tdg-shipping-message {
  margin-bottom: 5px;
  text-align: center;
}

.tdg-shipping-text {
  font-size: 14px;
  color: var(--blue-gray);
  font-weight: 500;
}

#tdg-amount-remaining {
  font-weight: 700;
}

.tdg-progress-bar {
  width: 95%;
  height: 7px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin: 5px auto;
  position: relative;
  /*border: 0.5px solid var(--blue-gray);*/
}

.tdg-progress-fill {
  height: 100%;
  background: var(--blue-gray);
  border-radius: 4px;
  transition: width 0.3s ease-in-out;
  position: relative;
  /*border: 0.5px solid var(--blue-gray);*/
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .tdg-free-shipping-progress {
    padding: 8px;
    margin: 10px 0;
  }
  .tdg-shipping-notice {
    font-size: 12px !important;
  }
  .tdg-shipping-text,
  .tdg-shipping-qualified {
    font-size: 13px;
  }

  .tdg-progress-bar {
    height: 6px;
  }
}
span#tdg-shipping-success {
  font-size: 14px;
  font-weight: 700;
}

#tdg-cart-consent span {
  font-size: 14px;
  line-height: 1.5em;
  padding-bottom: 5px;
  display: inline-block;
}
#tdg-cart-consent span a {
  color: #424242;
  text-decoration: underline;
}
label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* margin-top: 10px; */
}
input#tdg_cart_consent {
  margin-right: 10px;
  margin-top: 5px;
  transform: scale(1.5);
}
.tdg-cart-consent-error {
  font-size: 14px;
  line-height: 1.2em;
  padding-left: 27px;
  display: inline-block;
  color: #f51e26;
  font-weight: 600;
}

.tdg-summary-line.tdg-discount-line {
  color: #e91e1e;
  font-size: 16px;
  font-weight: 600;
}

.tdg-summary-consent {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 20px 15px;
  margin-top: 10px;
}
a.tdg-checkout-btn.disabled {
  opacity: 0.5;
  background: var(--blue-gray);
  color: var(--accent-green);
  color: #fff;
}
