@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  box-shadow: none;
  font-family: "Work Sans", sans-serif;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}

:root {
  --font-bebas: "Bebas Neue", sans-serif;
  --body-bg: #fff;

  --primary-color: #f5a623;
  --primary-dark-variant: #d98e1a;
  --soft-gold: #ffd166;
  --burnt-orange: #c56a1a;

  --text-color: #1c2128;
  --text-color2: #1c2128;
  --light-border-color: #d4d4d4;
  --light-border-color2: #ebebeb;
  --light-border-color3: #d4d4d4;

  --redis-color: #cd3535;
  --light-primary-bg: #eaf5f1;

  --yellowish-bg: #f5f5ed;
  --dark-bg: #d6d3d36d;
  --off-dark-bg: #63636387;

  --barrel-bg: #292f2226;
  --barrel-border: #3a3d3533;
  --fill-color: #4a5c1e;
  --fill-line: #b8f048;
  --plunger-bg: #222;
  --plunger-border: #3a3d3533;
  --tik-color: #0c0c0c38;
}

[data-theme="dark"] {
  --body-bg: #030609;
  --text-color: #fff;

  --dark-border-color: #030609;
  --light-border-color2: #cccccc32;
  --light-border-color3: #cccccc32;

  --dark-bg: #161616;

  --barrel-bg: #1c1e1a;
  --barrel-border: #3a3d35;
  --plunger-border: #444;
  --tik-color: rgba(255, 255, 255, 0.22);
}

body {
  background: var(--body-bg);
  color: var(--text-color);
}

/* Navbar */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.nav-bar.active {
  background-color: var(--body-bg);
  border-bottom: 1px solid var(--light-border-color2);
}

[data-theme="dark"] .nav-bar.active {
  border-bottom: 1px solid var(--dark-border-color);
}

.logo {
  width: 180px;
}

.logo-dark {
  display: none;
}

[data-theme="dark"] .logo-light {
  display: none;
}

[data-theme="dark"] .logo-dark {
  display: inline-block;
}

.nav-link {
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  padding: 0px !important;
  &:hover {
    color: var(--text-color) !important;
  }
}

[data-theme="dark"] .nav-link {
  color: white !important;
}

.nav-link.active {
  border-bottom: 3px solid var(--primary-color) !important;
}

.explore-btn {
  background-color: var(--primary-color) !important;
  color: var(--text-color) !important;
  padding: 7px 20px !important;
  border-radius: 5px;
}

.theme-btn {
  background-color: transparent;
  padding: 5px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-border-color2) !important;

  &:hover {
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
  }
}

[data-theme="dark"] .theme-btn {
  color: white;
  &:hover {
    color: var(--primary-color);
  }
}

[data-theme="dark"] .navbar-toggler {
  background-color: white;
}

.menu-dropdown.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.menu-dropdown.dropdown-menu .dropdown-item.active,
.menu-dropdown.dropdown-menu .dropdown-item:active {
  background-color: var(--primary-color);
  color: var(--text-color);
}

.menu-dropdown.dropdown-menu li a 
{
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-dropdown.dropdown-menu li a img 
{
  width: 20px;
}


@media (max-width: 575px) {
  .logo {
    width: 120px;
  }
}

@media (max-width: 991px) {
  .nav-bar {
    background-color: var(--body-bg);
  }
}

/* Hero Section */
.hero {
  padding-top: 140px;
  padding-bottom: 40px;
  background-color: #fbfbfb;

  background:
    /* Top gradient (menu area) */
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 15%,
      rgba(255, 255, 255, 0) 35%
    ),
    /* Left gradient (text area) */
    linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 25%,
        rgba(255, 255, 255, 1) 45%,
        rgba(255, 255, 255, 0.7) 60%,
        rgba(255, 255, 255, 0) 85%
      ),
    url("../images/hero-img.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

[data-theme="dark"] .hero {
  background:
    /* Top gradient */
    linear-gradient(
      to bottom,
      rgba(3, 6, 9, 1) 0%,
      rgba(3, 6, 9, 1) 15%,
      rgba(3, 6, 9, 0) 35%
    ),
    /* Left gradient */
    linear-gradient(
        to right,
        rgba(3, 6, 9, 1) 0%,
        rgba(3, 6, 9, 1) 25%,
        rgba(3, 6, 9, 0.9) 45%,
        rgba(3, 6, 9, 0.6) 60%,
        rgba(3, 6, 9, 0) 85%
      ),
    url("../images/hero-img.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero h2 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
}

.hero h1 {
  font-size: 80px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--font-bebas);
  line-height: 100%;
  margin: 15px 0 0 0;
  color: var(--text-color);
}

.hero h1 span {
  font-family: inherit;
  color: var(--primary-color);
}

.hero p {
  max-width: 500px;
  width: 100%;
  margin: 15px 0 0 0;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
  color: var(--text-color);
}

.hero-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0 0 0;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-color2);
  border: 1px solid var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;

  &:hover {
    background-color: var(--soft-gold);
    border: 1px solid var(--soft-gold);
  }
}

.primary-outline-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;
  width: fit-content;

  &:hover {
    color: var(--text-color2);
    background-color: var(--soft-gold);
    border: 1px solid var(--soft-gold);
  }
}

[data-theme="dark"] .primary-outline-btn {
  background-color: transparent;

  &:hover {
    color: var(--text-color2);
    background-color: var(--soft-gold);
    border: 1px solid var(--soft-gold);
  }
}

.secondary-btn {
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-transform: uppercase;

  &:hover {
    background-color: var(--soft-gold);
    color: var(--text-color2);
    border: 1px solid var(--soft-gold);
  }
}

[data-theme="dark"] .secondary-btn {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;

  &:hover {
    background-color: var(--soft-gold);
    color: var(--text-color2);
    border: 1px solid var(--soft-gold);
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 60px;
  }
}

/* Featured Section */
.featured {
  padding: 20px 0;
  border-top: 2px solid var(--light-border-color2);
  border-bottom: 2px solid var(--light-border-color2);
  background-color: var(--body-bg);
}

.featured .row > * {
  padding: 0 !important;
}

.featured-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 20px;
  border-right: 2px solid var(--light-border-color2);
}

.row > div:last-child .featured-item {
  border-right: none;
}

.featured-item > i {
  font-size: 50px;
  color: var(--primary-color);
}

.featured-item h1 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

[data-theme="dark"] .featured-item h1 {
  color: var(--primary-color);
}

.featured-item p {
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: var(--text-color);
}

@media (max-width: 575px) {
  .featured-item {
    border-right: none;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .row > div:nth-child(even) .featured-item {
    border-right: none;
  }
}

/* What are peptide */
.what-are-peptide {
  padding: 40px 0;
  background-color: var(--body-bg);
}

.what-are-peptide-left,
.what-are-peptide-right {
  margin: 10px 0;
}

.what-are-peptide-left img {
  width: 100%;
}

.img-dark {
  display: none;
}

[data-theme="dark"] .img-dark {
  display: block;
}

[data-theme="dark"] .img-light {
  display: none;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-title-wrap h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0;
}

.section-title-wrap h1 {
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-bebas);
  color: var(--text-color);
}

.section-title-wrap .divider-line {
  height: 3px;
  width: 100px;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.what-are-peptide-right p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 0;
  color: var(--text-color);
}

/*  Explore Peptides */
.explore-peptides {
  border-top: 2px solid var(--light-border-color2);
  padding: 40px 0;
  background-color: var(--body-bg);
}

.explore-peptides .row > div {
  margin: 10px 0;
}

.explore-peptide-item {
  border-top: 2px solid var(--light-border-color2);
  border: 1px solid var(--light-border-color2);
  padding: 30px 20px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;

  display: grid;
  grid-template-columns: 80px auto;
  gap: 30px;
  border-radius: 10px;
}

[data-theme="dark"] .explore-peptide-item {
  background-color: transparent;
  border-top: 2px solid var(--primary-color);
  border: 1px solid var(--primary-color);
}

.explore-peptide-item > i {
  font-size: 70px;
  color: var(--primary-color);
  margin: 0 auto;
}

.explore-peptide-item > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.explore-peptide-item h1 {
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  color: var(--text-color);
}

.explore-peptide-item p {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 20px 0;
  color: var(--text-color);
}

.explore-peptide-item a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
  }
}

.explore-peptide-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.explore-peptide-item ul li {
  font-size: 16px;
  font-weight: 400;
  margin: 2px 0;
  color: var(--text-color);
}

@media (max-width: 767px) {
  .explore-peptide-item {
    grid-template-columns: 100%;
  }

  .explore-peptide-item > div {
    text-align: center;
  }

  .explore-peptide-item a {
    justify-content: center;
  }
}

/* Awareness */
.awareness {
  border-top: 2px solid var(--light-border-color2);
  padding: 40px 0;
  background-color: var(--body-bg);
}

.awareness .row > * {
  padding: 0 !important;
}

.awareness-item {
  margin: 10px 0;
  display: flex;
  gap: 30px;
  padding: 20px 20px;
  border-right: 2px solid var(--light-border-color2);
}

.row > div:last-child .awareness-item {
  border-right: none;
}

.awareness-item > i {
  font-size: 50px;
  color: var(--primary-color);
}

.awareness-item h1 {
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
  font-family: var(--font-bebas);
  color: var(--text-color);
}

.awareness-item p {
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0 20px 0;
  color: var(--text-color);
}

.awareness-item a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;

  &:hover {
    text-decoration: underline;
  }
}

@media (max-width: 575px) {
  .awareness-item {
    border-right: none;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .row > div:nth-child(even) .awareness-item {
    border-right: none;
  }
}

/* Footer */
.footer {
  border-top: 2px solid var(--light-border-color2);
  padding: 20px;
  background-color: var(--body-bg);
}

.footer-item {
  margin: 10px 0;
  border-right: 2px solid var(--light-border-color2);
  height: 100%;
}

.footer-item:first-child {
  padding-right: 10px;
}

.row > div:last-child .footer-item {
  border-right: none;
}

.footer-item p {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
  color: var(--text-color);
}

.footer-item h1 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-bebas);
  margin: 0 0 10px 0;
  color: var(--text-color);
}

.footer-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-item ul li {
  margin: 10px 0;
}

.footer-item ul li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.8;

  &:hover {
    opacity: 1;
  }
}

[data-theme="dark"] .footer-item ul li a:hover {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .footer-item {
    border-right: none;
  }
}

/* Copyright */

.copyright-footer {
  padding: 20px 0;
  border-top: 2px solid var(--light-border-color2);
  background-color: var(--body-bg);
}

.copyright-footer p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--text-color);
}

.copyright-footer h2 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--text-color);
  text-transform: uppercase;
}

/* To Top */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  z-index: 2;

  &:hover {
    background-color: var(--primary-color);
    color: var(--text-color2);
  }
}

/* Popup Info */
.popup-info {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
}

.popup-in {
  max-width: 500px;
  width: 96%;
  padding: 30px 15px;
  border-radius: 10px;
  background-color: var(--body-bg);
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.popup-in::-webkit-scrollbar {
  display: none;
}

.popup-in > i {
  color: var(--primary-color);
  font-size: 50px;
}

.popup-in h1 {
  font-family: var(--font-bebas);
  font-size: 50px;
  font-weight: 500;
  margin: 10px 0 0 0;
}

.popup-in p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.popup-in button {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 15px;
}

/*  Case Studies */
.case-studies {
  padding: 40px 0;
  background-color: var(--body-bg);
  border-top: 2px solid var(--light-border-color2);
}

.case-studies .row > div {
  margin: 10px 0;
}

.case-studies-item {
  border-top: 2px solid var(--light-border-color2);
  border: 1px solid var(--light-border-color2);
  padding: 30px 20px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 100%;

  display: flex;
  gap: 20px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.case-studies-item .img-wrapper {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 5px;
  border: 1px solid var(--light-border-color2);
  padding: 2px;
}

[data-theme="dark"] .case-studies-item .img-wrapper {
  border: 1px solid var(--primary-color);
}

.case-studies-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.case-studies-item h1 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.case-studies-item p {
  margin: 10px 0 0 0;
  font-size: 16px;
  font-weight: 400;
}

[data-theme="dark"] .case-studies-item {
  background-color: transparent;
  border-top: 2px solid var(--primary-color);
  border: 1px solid var(--primary-color);
}

@media (max-width: 767px) {
  .case-studies-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Library Section */

.library-section {
  padding: 120px 0 40px 0;
  background-color: var(--body-bg);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.section-header h1 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}

.section-header p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--text-color-muted);
  max-width: 800px;
  width: 100%;
}

.library-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.category-btn {
  background-color: white;
  border: 1px solid var(--light-border-color2);
  color: var(--text-color);
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
}

[data-theme="dark"] .category-btn {
  color: var(--text-color-white);
}

.category-btn.active {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
}

@media (max-width: 575px) {
  .library-header h1 {
    font-size: 35px;
  }

  .category-btn {
    font-size: 14px;
  }
}

.products-wrapper {
  margin-top: 20px;
}

.product-item {
  margin: 10px 0;
  background-color: white;
  border: 1px solid var(--light-border-color2);
  padding: 20px;
  border-radius: 10px;
}

[data-theme="dark"] .product-item {
  background-color: transparent;
  border: 1px solid var(--primary-color);
}

.product-img {
  background-color: var(--yellowish-bg);
  border-radius: 5px;
}

.product-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.product-content {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-category {
  padding: 5px 10px;
  color: var(--text-color2);
  background-color: var(--primary-color);
  width: fit-content;
  font-size: 12px;
  font-weight: 500;
  border-radius: 30px;
}

.product-content h1 {
  font-size: 24px;
  margin: 0;
  font-family: var(--font-bebas);
  color: var(--text-color);
}

.product-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-color);
}

.product-content a {
  color: var(--text-color2);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);

  &:hover {
    border: 1px solid var(--soft-gold);
    background-color: var(--soft-gold);
  }
}

/* Faq */
.faq {
  padding: 40px 0;
  border-top: 2px solid var(--light-border-color2);
  background-color: var(--body-bg);
}

.faq-wrapper .accordion-item {
  margin-bottom: 15px;
  border-radius: 5px !important;
  overflow: hidden;
}

.faq-wrapper .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-wrapper .accordion-item button {
  font-size: 16px;
  font-weight: 500;
}

.faq-wrapper .accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: white !important;
}

.faq-wrapper .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-wrapper .accordion-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-wrapper .accordion-body p {
  margin: 0;
}

/* Contact */
.contact {
  padding: 40px 0;
  border-top: 2px solid var(--light-border-color2);
  background-color: var(--body-bg);
}

.form-wrapper {
  padding: 20px 40px;
  border-radius: 10px;
  background-color: var(--yellowish-bg);
}

[data-theme="dark"] .form-wrapper {
  background-color: white;
}

.input-wrapper {
  margin: 10px 0;
}

.input-wrapper label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.input-wrapper input,
.input-wrapper textarea {
  height: 50px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid var(--light-border-color);
}

.input-wrapper textarea {
  height: 100px;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border: 1px solid var(--primary-color);
  outline: none;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color2);
  background-color: var(--primary-color);
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;

  &:hover {
    background-color: var(--soft-gold);
  }
}

@media (max-width: 575px) {
  .form-wrapper {
    padding: 20px;
  }
}

/* Product details */
.product-details {
  padding: 120px 0 40px 0;
  background-color: var(--body-bg);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
}

.breadcrumbs a {
  color: var(--text-color-muted);
  text-decoration: none;
}

[data-theme="dark"] .breadcrumbs a {
  color: var(--text-color);
}

.breadcrumbs i {
  color: var(--text-color-muted);
  font-size: 12px;
}

[data-theme="dark"] .breadcrumbs i {
  color: var(--text-color);
}

.breadcrumbs span {
  color: var(--primary-color);
}

.product-det-left,
.product-det-right {
  margin: 10px 0;
}

.product-det-left {
  border: 1px solid var(--light-border-color2);
  border-radius: 10px;
  height: 100%;
}

.product-det-left .owl-stage {
  display: flex !important;
  align-items: stretch !important;
  margin: 10px 0;
}

.product-det-left .owl-theme .owl-dots .owl-dot.active span,
.product-det-left .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primary-color);
}

.product-det-left .owl-item {
  display: flex !important;
  align-items: stretch !important;
}

.product-det-left .owl-item .item {
  width: 100%;
}

.product-det-item {
  height: 100%;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  border: 1px solid var(--light-border-color);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-det-item img,
.product-det-item video {
  height: 400px;
  width: 100%;
  object-fit: contain;
}

.product-category-white {
  padding: 5px 10px;
  color: var(--text-color2);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
}

.product-det-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-det-right h1 {
  font-size: 45px;
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-bebas);
}

.product-det-right h4 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  color: var(--text-color);
}

.product-det-right > p {
  font-size: 16px;
  color: var(--text-color);
}

.product-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  border-bottom: 1px solid #ccc;
}

.product-point-item .icon {
  height: 40px;
  width: 40px;
  min-width: 40px;
  background-color: var(--light-primary-bg);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.product-point-item .icon img {
  width: 20px;
}

.product-point-item p b {
  font-weight: 500;
  color: var(--text-color);
}

.product-point-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

.product-formate-item {
  margin-top: 10px;
  background-color: var(--body-bg);
  border: 1px solid var(--light-border-color2);
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-formate-item i {
  font-size: 16px;
  color: var(--primary-color);
}

.product-formate-item p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}

.coa-btn {
  padding: 14px 20px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--text-color2);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  text-decoration: none;
  width: 100%;
  margin-top: 20px;

  &:hover {
    background-color: var(--soft-gold);
  }
}

@media (max-width: 575px) {
  .product-det-item img,
  .product-det-item video {
    height: auto;
  }
}

/* Lab Report  */
.lab-report {
  padding: 40px 0;
  background-color: var(--body-bg);
  border-top: 2px solid var(--light-border-color2);
}

.lab-report > .container > .row > div {
  margin: 10px 0;
}

.lab-report-left,
.lab-report-right {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--body-bg);
  border: 1px solid var(--light-border-color2);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.lab-report-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-border-color2);
  color: var(--text-color);
}

.chemical-report-wrapper {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-border-color2);
}

.chemical-report-box {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chemical-report-box .icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cccccc68;
  border: 1px solid var(--light-border-color2);
  border-radius: 5px;
  color: var(--primary-color);
}

[data-theme="dark"] .chemical-report-box .icon {
  border: 1px solid var(--primary-color);
}

.chemical-report-box h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  text-transform: uppercase;
}

.chemical-report-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
}

.chemical-structure-img-wrapper img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.chemical-structure-img-wrapper h3 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  text-align: center;
}

.lab-report-purity {
  padding: 10px;
  border: 1px solid var(--primary-color);
  background-color: var(--light-primary-bg);
  color: var(--primary-color);
  border-radius: 5px;
  margin: 10px 0;
}

[data-theme="dark"] .lab-report-purity {
  background-color: transparent;
}

.lab-report-purity h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.lab-report-purity h2 {
  margin: 10px 0 0 0;
  font-size: 25px;
  font-weight: 600;
}

.endoxin-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--light-border-color2);
}

.endoxin-report h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  text-transform: uppercase;
}

.endoxin-report h2 {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
}

.endoxin-report img {
  width: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.previous-batch h1 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--text-color);
  margin: 0;
  text-transform: uppercase;
}

.prev-batch-list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-border-color2);
}

.prev-batch-list h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.prev-batch-list p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

/* Product Description */
.product-desc {
  padding: 40px 0 0 0;
}

.product-desc-in {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

.product-desc-in h1 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.product-desc-in p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color-muted);
  margin: 10px 0 0 0;
}

/* Research use only */
.research-use {
  padding: 40px 0 0 0;
  background-color: var(--body-bg);
  border-top: 2px solid var(--light-border-color2);
}

.research-use-in {
  border: 2px solid #f1c40f;
  background-color: #f1c40f10;
  padding: 20px;
  border-radius: 10px;
}

.research-use-in p {
  margin: 10px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}

/* Disclaimer */
.disclaimer {
  padding: 40px 0;
  background-color: var(--body-bg);
}

.disclaimer-in {
  border: 2px solid var(--redis-color);
  background-color: var(--body-bg);
  padding: 20px;
  border-radius: 10px;
}

.disclaimer-in h1 {
  margin: 0;
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--text-color);
}

.disclaimer-in p {
  margin: 10px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
}

/* About Us */

.about-us {
  padding: 40px 0;
  border-top: 2px solid var(--light-border-color2);
  background-color: var(--body-bg);
}

.subpage-top-padding {
  padding-top: 120px;
}

.about-us-left,
.about-us-right {
  margin: 10px 0;
}

.about-us-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-us-left h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.about-us-left h1 {
  font-size: 40px;
  font-weight: 500;
  margin: 0;
}

.about-us-left p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--text-color);
  max-width: 800px;
  width: 100%;
}

.about-us-left ul {
  margin: 0;
  padding: 0;
  padding-left: 20px;
}

.about-us-left ul li {
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0 0 0;
  color: var(--text-color);
}

.error-msg {
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 0 0;
  color: red;
  display: none;
}

/* How peptides work */
.how-peptides-work {
  padding: 40px 0;
  background-color: var(--body-bg);
  border-top: 2px solid var(--light-border-color2);
}

.how-peptides-work h3 {
  margin: 25px 0 0 0;
  font-size: 20px;
}

[data-theme="dark"] .how-peptides-work h3 {
  color: #fff;
}

.how-peptides-work .row > * {
  padding: 0 !important;
}

.how-peptides-work .row > div {
  margin: 10px 0;
}

.how-peptide-work-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 20px 20px;
  border-right: 2px solid var(--light-border-color2);
  text-align: center;
  height: 100%;
}

.row > div:last-child .how-peptide-work-item {
  border-right: none;
}

.how-peptide-work-item > img {
  width: 100px;
}

.how-peptide-work-item h1 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  font-family: var(--font-bebas);
}

[data-theme="dark"] .how-peptide-work-item h1 {
  color: var(--primary-color);
}

.how-peptide-work-item p {
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: var(--text-color);
}

@media (max-width: 575px) {
  .how-peptide-work-item {
    border-right: none;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .row > div:nth-child(even) .how-peptide-work-item {
    border-right: none;
  }
}

/* Safety Data Sheet */

.safety-data-sheet {
  padding: 40px 0;
  background-color: var(--body-bg);
  border-top: 2px solid var(--light-border-color2);
}

.safety-data-sheet .accordion-item {
  margin-bottom: 15px;
  border-radius: 5px !important;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.safety-data-sheet .accordion-item:last-child {
  margin-bottom: 0;
}

.safety-data-sheet .accordion-item button {
  font-size: 28px;
  padding-block: 20px;
  letter-spacing: 1px;
  font-family: var(--font-bebas);
}

.safety-data-sheet .accordion-button:not(.collapsed) {
  background-color: var(--primary-color) !important;
  color: var(--text-color2) !important;
}

.safety-data-sheet .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.safety-data-sheet .accordion-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.safety-data-sheet .accordion-body p {
  margin: 0;
}

.sds-item {
  margin-bottom: 10px;
}

.sds-title {
  background-color: var(--light-border-color2);
  padding: 10px;
  border-left: 2px solid var(--primary-color);
}

.sds-title p {
  margin: 0;
  font-size: 16px;
}

.sds-content {
  padding-top: 10px;
}
.sds-content p {
  margin: 0;
  font-size: 16px;
}

.sds-warning {
  border: 1px solid #f1c40f;
  background-color: #f1c40f10;
  padding: 20px;
  border-radius: 10px;
}

.sds-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-border-color2);
}

.sds-formula p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.sds-content li {
  margin: 0;
  font-size: 14px;
}

.print-pdf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px !important;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: var(--text-color2);
  font-size: 16px !important;
  font-weight: 500;
  width: fit-content;
  margin: 20px auto 0 auto;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;

  &:hover {
    background-color: var(--soft-gold);
  }
}

@media (max-width: 575px) {
  .safety-data-sheet .accordion-item button {
    font-size: 24px;
  }
}

/* Reconstitution Header */
.reconstitution-header {
  padding: 120px 0 30px 0;
  background-color: var(--body-bg);
}

.reconstitution-header-left h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
  text-transform: uppercase;
}

.reconstitution-header-left h1 {
  font-size: 60px;
  font-weight: 700;
  margin: 10px 0;
  color: var(--text-color);
}

.reconstitution-header-left p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: var(--text-color);
  opacity: 0.8;
}

.ascension-peptides-card {
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  background-color: #fbfbfb;
  padding: 24px;
}

[data-theme="dark"] .ascension-peptides-card {
  border: 1px solid #2a382a;
  background-color: #181d18;
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(74, 120, 60, 0.15);
}

.ascension-peptides-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.ascension-peptides-card-top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ascension-icon {
  height: 40px;
  min-width: 40px;
  padding: 5px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.ascension-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ascension-peptides-card-top-left h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ascension-peptides-card-top-left h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
}

.ascension-peptides-card-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--light-border-color2);
  padding: 5px 10px;
  border-radius: 30px;
}

.ascension-peptides-card-top-right .blink-dot {
  height: 10px;
  width: 10px;
  min-width: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  animation: blink-pulse 1.5s ease-in-out infinite;
}

@keyframes blink-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.6);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb), 0);
  }
}

.ascension-peptides-card-top-right p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.8;
}

.ascension-peptides-card-btm {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ascension-peptides-card-btm-left > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ascension-peptides-card-btm-left h3 {
  font-size: 60px;
  font-weight: 500;
  margin: 0;
  font-family: var(--font-bebas);
  color: var(--text-color);
}

.ascension-peptides-card-btm-left h4 {
  margin: 10px 0 0 0;
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
}

.ascension-peptides-card-btm-left h5 {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}

.ascension-peptides-card-btm-left p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.8;
}

.ascension-discount-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px dashed var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  width: 300px;
  cursor: pointer;
}

.ascension-discount-code h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.ascension-discount-code h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-bebas);
  margin: 2px 0 0 0;
  letter-spacing: 2px;
  color: var(--primary-color);
}

.ascension-discount-copy {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
}

.ascension-discount-copy span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.reconstitution-header-right-btm {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.reconstitution-header-right-btm > div {
  background-color: var(--dark-bg);
  padding: 10px 10px 10px 20px;
  border-left: 3px solid var(--primary-color);
}

.reconstitution-header-right-btm > div > p {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.8;
}

.reconstitution-header-right-btm > div > h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 0 0;
  color: var(--text-color);
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .ascension-peptides-card-btm {
    flex-wrap: wrap;
  }

  .ascension-discount-code {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .reconstitution-header-left h1 {
    font-size: 40px;
  }
  .reconstitution-header-left p {
    font-size: 16px;
  }
  .ascension-peptides-card-top-left h4 {
    font-size: 12px;
  }
  .ascension-peptides-card-top-left h3 {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .reconstitution-header-right {
    margin-top: 20px;
  }
}

/* Safety Disclaimer */
.safety-disclaimer {
  border-top: 2px solid var(--light-border-color2);
  padding: 40px 0;
  background-color: var(--body-bg);
}

.safety-disclaimer-in {
  padding: 25px 30px;
  border-radius: 10px;
  border-left: 3px solid var(--redis-color);
  display: flex;
  gap: 15px;
  background-color: var(--dark-bg);
}

.safety-disclaimer-in i {
  font-size: 25px;
  color: var(--redis-color);
}

.safety-disclaimer-in h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--redis-color);
  margin: 0;
  text-transform: uppercase;
}

.safety-disclaimer-in p {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: var(--text-color);
  opacity: 0.8;
}

/* How to use */
.how-to-use {
  padding: 0 0 20px 0;
  background-color: var(--body-bg);
}

.how-to-use h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
}

.how-to-use p {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: var(--text-color);
}

.how-to-use h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0;
  color: var(--text-color);
}

.how-to-use ul li,
.how-to-use ol li {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}

/* Common Reconstitution Examples  */
.common-reconstitution {
  background-color: var(--body-bg);
}

.common-reconstitution h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: var(--text-color);
}
.common-reconstitution h4 {
  color: var(--text-color);
}

[data-theme="dark"] .table {
  --bs-table-bg: #212529;
  --bs-table-color: #fff;
  margin: 0;
}

.common-reconstitution table th {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  white-space: nowrap;
}

.common-reconstitution table td {
  font-size: 16px;
}

/*  Syringe Size */
.syringe-size {
  background-color: var(--body-bg);
  padding: 20px 0;
}

.syringe-size-in {
  border: 1px solid var(--light-border-color2);
  background-color: var(--dark-bg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 5px;
  padding: 15px;
}

.syringe-size-in h3 {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
  text-transform: uppercase;
  opacity: 0.8;
}

.syringe-size-in > p {
  font-size: 10px;
  margin: 0;
  color: var(--text-color);
  opacity: 0.8;
}

.syringe-size-in-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.syringe-size-variant {
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--light-border-color3);

  &:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}

.syringe-size-variant.active {
  border: 1px solid var(--primary-color);
  background-color: #f5a6230a;
}

.syringe-size-variant svg * {
  stroke: var(--text-color);
}

.syringe-size-variant.active svg * {
  stroke: var(--primary-color);
}

.syringe-size-variant div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.syringe-size-variant div h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
  opacity: 0.8;
}

.syringe-size-variant.active div h4 {
  color: var(--primary-color);
}

.syringe-size-variant div p {
  font-size: 10px;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
  opacity: 0.6;
}

.syringe-size-variant.active div p {
  color: var(--primary-color);
}

/* Specific Dose */
.specific-dose {
  background-color: var(--body-bg);
  padding: 0 0 20px 0;
}

.specific-dose-in {
  border: 1px solid var(--light-border-color2);
  background-color: var(--dark-bg);
  border-radius: 5px;
  padding: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.specific-dose-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.specific-dose-left h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.8;
  margin: 0;
}

.specific-dose-left h4 p {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  text-transform: capitalize;
}

.specific-dose-predefined-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: auto;
}

.specific-dose-predefined-btn::-webkit-scrollbar {
  display: none;
}

.specific-dose-predefined-btn-wrapper {
  gap: 5px;
}

.specific-dose-predefined-btn button {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--light-border-color3);
  background-color: transparent;
  border-radius: 5px;
  color: var(--text-color);
  opacity: 0.7;
  cursor: pointer;
  white-space: nowrap;

  &:hover {
    opacity: 1;
  }
}

.specific-dose-predefined-btn button.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  opacity: 1;
}

.specific-dose-options-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.options-bar-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-color);
  opacity: 0.8;
  margin-right: 4px;
}

.specific-dose-options-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.specific-dose-options-btns button {
  border: 1px solid var(--light-border-color3);
  background: transparent;
  color: var(--text-color);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.specific-dose-options-btns button strong {
  color: var(--text-color);
}

.specific-dose-options-btns button span {
  color: var(--text-color);
  font-size: 12px;
}

/* Active vial option */
.specific-dose-options-btns button.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.specific-dose-options-btns button.active strong,
.specific-dose-options-btns button.active span {
  color: var(--primary-color);
}

.dose-freq-label {
  font-size: 12px;
  color: var(--primary-color);
  padding: 5px 12px;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  opacity: 0.8;
}

.specific-dose-toggle {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--light-border-color3);
  background-color: transparent;
  border-radius: 5px;
  color: var(--text-color);
  opacity: 0.7;
  cursor: pointer;

  &:hover {
    border: 1px dashed var(--primary-color);
    color: var(--primary-color);
    opacity: 1;
  }
}

.specific-dose-filter-clear-btn {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
  border: none;
  text-transform: uppercase;

  &:hover {
    color: var(--primary-color);
  }
}

#specificDoseExample.accordion {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: var(--light-border-color2) !important;
}

#specificDoseExample.accordion .accordion-item {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top: none;
}

.more-dose-wrapper {
  background-color: var(--body-bg);
}

.dose-search input {
  width: 100%;
  height: 35px;
  border: 1px solid var(--light-border-color3);
  background-color: transparent;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  border-radius: 3px;
  box-shadow: none;
  outline: none;
}

.dose-search input:focus {
  outline: 1px solid var(--primary-color);
}

.more-dose-item-list {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.more-dose-item {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-border-color2);
}

.more-dose-item:last-child {
  border-bottom: none;
}

.more-dose-item h5 {
  font-size: 10px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.8;
}

.more-dose-item-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.more-dose-item-btns button {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--light-border-color3);
  background-color: transparent;
  border-radius: 5px;
  color: var(--text-color);
  opacity: 0.7;
  cursor: pointer;
  white-space: nowrap;

  &:hover {
    opacity: 1;
  }
}

.more-dose-item-btns button span {
  font-size: 10px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .specific-dose-left {
    width: 100%;
  }

  .specific-dose-in {
    flex-wrap: wrap;
  }

  .more-dose-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .more-dose-item-btns {
    flex-wrap: wrap;
  }
}

/* calculation area */
.calculation-area {
  background-color: var(--body-bg);
}

.calculation-are-left,
.calculation-are-right {
  margin: 10px 0;
}

.calculation-are-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calculation-item {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--dark-bg);
  border: 1px solid var(--light-border-color2);

  &:hover {
    border-color: var(--primary-color);
  }
}

.calculation-item .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calculation-item .top h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  color: var(--text-color);
  opacity: 0.8;
}

.calculation-item .top h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.calculation-item .mid {
  margin-top: 20px;
}

.calculation-item .mid input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--primary-color) 0%,
    var(--primary-color) 2%,
    rgba(255, 255, 255, 0.08) 2%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.calculation-item .mid input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 20px;
  background: var(--primary-color);
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.5);
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.calculation-item .mid input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.7);
}

.calculation-item .mid input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 6px rgba(245, 166, 35, 0.5);
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.calculation-item .mid input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.7);
}

.calculation-item .mid input[type="range"]::-moz-range-progress {
  background: var(--primary-color);
  height: 4px;
  border-radius: 999px;
}

.calculation-item-pre-option {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calculation-item-pre-option button {
  background-color: #ccc;
  color: var(--text-color);
  opacity: 0.7;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;

  &:hover {
    background-color: var(--primary-color);
    opacity: 1;
    color: var(--text-color2);
  }
}

[data-theme="dark"] .calculation-item-pre-option button {
  background-color: #444;

  &:hover {
    background-color: var(--primary-color);
    opacity: 1;
    color: var(--text-color2);
  }
}

.calculation-item-pre-option button.active,
[data-theme="dark"] .calculation-item-pre-option button.active {
  background-color: var(--primary-color);
  opacity: 1;
  color: var(--text-color2);
}

.calculation-syringe-preview {
  background-color: var(--dark-bg);
  padding: 20px;
  border-radius: 5px;
}

.calculation-syringe-preview .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calculation-syringe-preview .top h5 {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.calculation-syringe-preview .top p {
  margin: 5px 0 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
}

.calculation-syringe-preview .top h2 {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.syringe-wrapper {
  padding: 50px 30px;
}

.syringe-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.plunger-rod {
  width: 36px;
  height: 2px;
  background: var(--barrel-border);
  flex-shrink: 0;
}

.plunger-knob {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--barrel-border);
  border: 1.5px solid #888;
  flex-shrink: 0;
  margin-left: -2px;
}

.plunger-head {
  width: 0px;
  height: 80px;
  background: var(--plunger-border);
  border: 1.5px solid var(--plunger-border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  flex-shrink: 0;
  margin-left: -1px;
}

.barrel {
  flex: 1;
  height: 80px;
  background: var(--barrel-bg);
  border: 1.5px solid var(--barrel-border);
  border-left: none;
  position: relative;
}

.barrel-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--fill-color);
  transition: width 0.35s ease;
}

.barrel-fill {
  background: #4a5c1e;
}
.barrel-fill-line {
  background: var(--primary-color);
}

.ticks {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}
.tick-maj {
  width: 1.5px;
  height: 18px;
  background: var(--tik-color);
}

.tick-min {
  width: 1px;
  height: 10px;
  background: var(--tik-color);
}

.barrel-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.6;
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
}

.tip-tube {
  width: 80px;
  height: 14px;
  background: var(--barrel-bg);
  border: 1.5px solid var(--barrel-border);
  border-left: none;
  flex-shrink: 0;
}
.plunger-cap {
  width: 15px;
  height: 50px;
  background: var(--barrel-bg);
  border: 1.5px solid var(--barrel-border);
  border-radius: 30px;
  flex-shrink: 0;
}

.calculation-dose-card {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calculation-dose-card div {
  background-color: var(--dark-bg);
  padding: 20px;
  border-left: 4px solid var(--light-border-color2);
}

.calculation-dose-card div.active {
  border-left: 4px solid var(--primary-color);
}

.calculation-dose-card div p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
  margin: 0;
}

.calculation-dose-card div h1 {
  font-size: 35px;
  font-weight: 600;
  margin: 5px 0 0 0;
  color: var(--text-color);
}

.calculation-dose-card div h1 span.quantity {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .calculation-dose-card {
    grid-template-columns: repeat(1, 1fr);
  }

  .syringe-wrapper {
    padding: 50px 0px;
  }
}

/* Calculation Comparison */
.comparison-calculator {
  background-color: var(--body-bg);
  padding: 40px 0;
  border-top: 2px solid var(--light-border-color2);
}

.comparison-calculator-in .accordion-item > .accordion-header button > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comparison-calculator-in .accordion-item {
  border: var(--light-border-color2);
  margin-bottom: 20px;
}

.comparison-calculator-in .accordion-item:last-child {
  margin-bottom: 0;
}

.comparison-calculator-in .accordion-item > .accordion-header button {
  background-color: var(--dark-bg);
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: none;
  outline: none;
  padding: 20px 15px !important;
  border: 1px solid var(--light-border-color2);
}

.comparison-calculator-in .accordion {
  --bs-accordion-bg: transparent;
}

.comparison-calculator-in .accordion-item .accordion-body {
  background-color: var(--dark-bg);
  color: var(--text-color);
  border: 1px solid var(--light-border-color2);
}

[data-theme="dark"] .accordion-button::after {
  filter: invert(1) grayscale(1);
}

.text-primary-color {
  color: var(--primary-color);
}

.text-overflow-color {
  color: var(--redis-color);
}

.text-primary-color.small {
  font-size: 12px;
  font-weight: 600;
}

.comparison-table th {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table td {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.compare-tag {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border: var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 4px;
}

[data-theme="dark"] .compare-tag {
  color: #1c2128;
}

.cost-cycle-input-wrapper {
  margin: 10px 0;
}

.cost-cycle-input-wrapper h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.8;
  text-transform: uppercase;
}

.cost-cycle-input-era {
  position: relative;
  background-color: var(--dark-bg);
  border: 1px solid var(--light-border-color2);
  width: 100%;
  border-radius: 8px;
}
.cost-cycle-input-era input {
  height: 100%;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid transparent;
  box-shadow: none;
  outline: none;
  font-size: 18px;
}

.cost-cycle-input-era input:focus {
  border: 1px solid var(--primary-color);
}

.cost-cycle-input-era .top-left-position {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.cost-cycle-input-era .top-right-position {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.cost-cycle-preview {
  margin: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px 5px;
}

.cost-cycle-preview > div {
  height: 100%;
  border-left: 4px solid var(--light-border-color2);
  padding: 20px;
}

.cost-cycle-preview > div.active {
  border-color: var(--primary-color);
}

.cost-cycle-preview > div p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
  margin: 0;
}

.cost-cycle-preview > div h1 {
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0 0 0;
}

.cost-cycle-preview > div h1 span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .cost-cycle-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-cycle-preview > div {
    padding: 15px;
  }

  .cost-cycle-preview > div h1 {
    font-size: 30px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .cost-cycle-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reconstitution-date-wrapper h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.7;
}

.reconstitution-date-option {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reconstitution-date-inp-wrapper {
  border: 1px solid var(--light-border-color3);
  border-radius: 6px;
}

.reconstitution-date-inp-wrapper input {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 6px;
  background-color: transparent;
  color: var(--text-color);
  cursor: pointer;
}

.reconstitution-date-option-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reconstitution-date-option-btns button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid var(--light-border-color3);
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.5;
  cursor: pointer;
}

.reconstitution-date-option-btns button.active,
.reconstitution-date-option-btns button:hover {
  opacity: 1;
  background-color: var(--primary-color);
}

.reconstitution-report {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reconstitution-report > div {
  background-color: var(--dark-bg);
  padding: 14px;
  border-radius: 6px;
  border: 1px solid var(--light-border-color3);
}

.reconstitution-report > div h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.7;
}

.reconstitution-report > div h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 10px 0 0 0;
  text-transform: uppercase;
  color: var(--text-color);
}
.reconstitution-report.safe > div:nth-child(3) {
  background-color: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
}

.reconstitution-report.safe > div:nth-child(3) h3 {
  color: #10b981;
}

.reconstitution-report.safe > div:nth-child(3) h4 {
  color: #10b981;
  opacity: 1;
}

.reconstitution-report.warning > div:nth-child(3) {
  background-color: rgba(245, 158, 11, 0.15);
  border: 2px solid #f59e0b;
}

.reconstitution-report.warning > div:nth-child(3) h3 {
  color: #f59e0b;
}

.reconstitution-report.warning > div:nth-child(3) h4 {
  color: #f59e0b;
  opacity: 1;
}

.reconstitution-report.critical > div:nth-child(3) {
  background-color: rgba(239, 68, 68, 0.15);
  border: 2px solid #ef4444;
}

.reconstitution-report.critical > div:nth-child(3) h3 {
  color: #ef4444;
}

.reconstitution-report.critical > div:nth-child(3) h4 {
  color: #ef4444;
  opacity: 1;
}
.reconstitution-report.expired > div:nth-child(3) {
  background-color: rgba(220, 38, 38, 0.18);
  border: 2px solid #dc2626;
}

.reconstitution-report.expired > div:nth-child(3) h3 {
  color: #dc2626;
  font-weight: 700;
}

.reconstitution-report.expired > div:nth-child(3) h4 {
  color: #dc2626;
  opacity: 1;
}

/* Step Guide */
.step-guide {
  background-color: var(--body-bg);
  padding-bottom: 40px;
}

.step-guide-in h1 {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--text-color);
}

.stepper-track {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 4px;
}

.step-wrap {
  display: flex;
  align-items: center;
  flex: 1;
}

.step-wrap:last-child {
  flex: 0;
}

.step-node {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
  position: relative;
  z-index: 1;
}

.step-node.active {
  background: var(--primary-color);
  color: var(--text-color2);
}

:root {
  --done-bg: #1e2e0a;
  --done-border: #6fa810;
  --done-icon: #c6f135;
  --connector: #d4d4d4;
  --connector-done: #6fa810;
  --label-red: var(--redis-color);
  --label-blue: #5b9fe8;
  --label-cyan: #00d3f3;
  --label-amber: #fdc700;
  --label-complete: #1f8556;
}

[data-theme="dark"] {
  --connector: #2e2e2e;
}

.step-node.done {
  background: var(--done-bg);
  color: var(--done-icon);
}

.step-node.done svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connector {
  flex: 1;
  height: 2px;
  background: var(--connector);
  transition: background 0.4s;
  margin: 0 0px;
}

.connector.done {
  background: var(--connector-done);
}

.step-card {
  background: var(--dark-bg);
  border: 1px solid var(--light-border-color2);
  border-radius: 6px;
  padding: 32px 36px 28px;
  min-height: 190px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--label-red);
}

.step-label.blue {
  color: var(--label-blue);
}
.step-label.cyan {
  color: var(--label-cyan);
}
.step-label.amber {
  color: var(--label-amber);
}
.step-label.complete {
  color: var(--label-complete);
}

.step-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.step-note {
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 28px;
}

.step-btn-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.step-btn-row button {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
}

.btn-back {
  background: #4444;
  color: var(--text-color);
}

.btn-back:disabled {
  opacity: 0.3;
  cursor: default;
}

.btn-next,
.btn-finish {
  background: var(--primary-color);
  color: var(--text-color2);
}

.btn-next:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 767px) {
  .step-card {
    padding: 20px;
  }
}

/* Blog Section */
.blog-section {
  padding: 120px 0 50px 0;
  background-color: var(--body-bg);
}

.blog-header-left,
.blog-header-right {
  margin: 20px 0;
}

.blog-header-left h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 600;
  color: var(--text-color);
}

.blog-header-left > div {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.blog-header-left > div p {
  margin: 0;
  font-size: 14px;
  color: var(--text-color);
}

.blog-header-summary,
.blog-header-thumbnail {
  background-color: var(--dark-bg);
  border-radius: 8px;
  max-height: 300px;
  min-height: 300px;
  height: 100%;
  overflow-y: auto;
  margin: 0 0 10px 0;
}

.blog-header-summary::-webkit-scrollbar,
.blog-header-thumbnail::-webkit-scrollbar {
  display: none;
}

.blog-header-summary h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.blog-header-summary h4 i {
  font-size: 18px;
  color: var(--primary-color);
}

.blog-header-summary h4 span {
  color: var(--text-color);
}

.blog-header-summary p {
  margin: 14px 0 0 0;
  font-size: 14px;
  color: var(--text-color);
}

.blog-header-thumbnail {
  display: flex;
  align-items: center;
}

.blog-header-thumbnail img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

/* Blog Details */
.blog-details {
  padding: 40px 0;
}

.blog-details-left,
.blog-details-right {
  margin: 10px 0;
}


.blog-details-left h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  color: var(--primary-color);
}

.blog-product-promotion {
  background-color: var(--dark-bg);
  padding: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-product-promotion img {
  height: 200px;
  width: 200px;
  object-fit: contain;
}

.blog-product-det {
  padding-top: 20px;
}

.blog-product-det .stock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-border-color);
}

.blog-product-det .stock h3,
.blog-product-det .stock p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.blog-product-det .stock h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
}

.blog-product-det .stock p {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-color);
}

.blog-product-det .product-info {
  padding-top: 10px;
}

.blog-product-det .product-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
}

.blog-product-det .product-info p {
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
  color: var(--text-color);
}

.blog-product-det .product-info a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-color);
  text-align: center;

  &:hover {
    background-color: var(--soft-gold);
  }
}

[data-theme="dark"] .blog-product-det .product-info a {
  color: var(--text-color2);
}

.blog-details-right 
{
  padding-top: 40px;
}

.details-item 
{
  margin: 0 0 30px 0;
}

.blog-details-right .title {
  padding: 10px;
  background: linear-gradient(
    90deg,
    rgb(245 166 35 / 0.06) 0%,
    transparent 40%
  );
  border-left: 3px solid var(--primary-color);
  border-bottom: 1px solid var(--light-border-color2);
}

.blog-details-right .title h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-color);
}

.blog-details-right p 
{
  margin: 10px 0;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}

/* Google Translator */

body {
	top: 0px !important;
}

body>.skiptranslate, .goog-logo-link, .gskiptranslate, .goog-te-gadget span, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, div#goog-gt-tt {
  display: none !important;
}