/*=============== GOOGLE FONTS ===============*/
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --body-background: hsl(0, 0%, 98%);
  --body-color: hsl(220, 100%, 99%);
  --bg-white: #fff;
  --bg-dark: #000;
  --text-white: #fff;
  --text-dark: #111;
  --verified: #28a745;
  --secondary: #2d2d2d;
  --text-primary: #101828;
  --text-secondary: #667085cc;
  --text-gray: gray;
  /* --text-rating: rgb(194, 194, 7); */
  --text-rating: gold;
  --color-hover: #e3e3e3;
  --bg-red: #d62957;
  --color-red: #ff0000;
  --footer-bg: #10182F;
  --icon-footer: #afb6c7;
  --footer-text: #bfbfbf;
  --bg-card: #dddddd40;
  --card-list-bg: rgba(255, 255, 255, 0.2);
  --dropdown-bg: rgb(252, 253, 251);
  --shadow: rgba(32, 7, 65, 0.14);
  --btn-bg: linear-gradient(90deg, red, #b80576 26%, #4012ea 77%, #0032dc);
  --background-red: red;
  --body-font: "Open Sans", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  --container: 124rem;
  --nav-height: 4rem;

}


@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*::-webkit-scrollbar {
  width: 0px;
}

*::-webkit-scrollbar-track {
  background: var(--body-background);
}

*::-webkit-scrollbar-thumb {
  background: var(--bg-red);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--text-gary);
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-background) !important;
  color: var(--text-color);
}

ul {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.btn-disabled {
  background: var(--text-gray);
  color: var(--text-white);
  border: 1px solid var(--text-gray);
  border-radius: 25px;
  font-size: .9rem;
  padding: .5rem 1rem;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.row-reverse-css {
  flex-direction: row-reverse !important;
}

.dropdown-item:hover {
  border-radius: 5px !important;
}

.dropdown-menu li a {
  border-radius: 0 !important;
}

a {
  text-decoration: none !important;
}

.btn-technology {
  display: inline-block;
  padding: 10px 20px;
  color: var(--text-white);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  transition: all .5s;
}

.btn-technology:hover {
  background: var(--btn-bg);
  border: 2px solid;
}

.btn-technology-body {
  display: inline-block;
  padding: 10px 20px;
  color: var(--text-dark);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
  transition: all .5s;
}

.btn-technology-body:hover {
  background: var(--btn-bg);
  color: var(--text-white);
  border: 2px solid;
}

.view-product {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--text-white);
  background: var(--btn-bg);
  /* border: 2px solid var(--bg-red); */
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-size: .9rem;
  cursor: pointer;
  font-weight: 600;
  height: 48;
}

.view-product:hover {
  opacity: 0.9;
}

.technology {
  display: inline-block;
  padding: 10px 20px;
  color: var(--text-dark);
  border: 2px solid var(--bg-red);
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  font-size: 14px;
  cursor: pointer;
}

.technology:hover {
  background: var(--btn-bg);
  color: var(--text-white);
  border: 2px solid;
}

.go-btn {
  padding: 7px 10px;
  background: var(--btn-bg) !important;
  color: var(--text-white) !important;
  text-decoration: none;
  border-radius: 25px !important;
  transition: background-color 0.3s ease;
  font-size: 15px !important;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {

  .btn-technology,
  .view-product {
    margin: 5px !important;
    /* padding: 7px 15px; */
    /* font-size: 13px; */
  }

  .go-btn {
    padding: 7px;
    font-size: 12px !important;
  }
}

/*=============== REUSABLE CSS CLASSES ===============*/

/* start header */
.header {
  display: block;
  width: 100%;
  z-index: 99;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  transition: background-color 0.5s ease;
}

.header.scrolled {
  background-color: var(--bg-dark);
}


.header .row {
  align-items: center;
}

.header .item-left {
  flex: 0 0 23%;
}

.header .logo a {
  font-size: 22px;
  color: var(--text-rating);
  font-weight: 700;
  text-decoration: none;
}

.header .item-center {
  flex: 0 0 50%;
}

.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}

.nav-item__link {
  color: var(--text-white);
  margin: 0 0.8rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  font-size: 1.2rem;
  display: flex;
  align-items: baseline;
}

.nav-item__link i {
  padding: 0 5px;
}

.mobile-cart {
  display: none;
}

.header .menu>ul>li {
  display: inline-block;
  line-height: 50px;
  margin-left: 15px;
  color: var(--text-white);
}

.header .menu>ul>li>a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
}

/* .header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
} */

.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
}



.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1225px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}

.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 20px;
}

.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .item-right a:hover,
.header .menu>ul>li:hover>a {
  color: var(--color-hover);
}

.header .menu>ul>li>a:hover {
  color: var(--text-rating);
}

.header .menu>ul>li>a.active {
  color: var(--text-rating);
}

/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

.toggle-btn {
  cursor: pointer;
  font-size: 22px;
  margin: 0 5px;
  border: none;
  background: none;
}

/*responsive*/
@media(max-width: 1200px) {
  .header {
    padding: 15px 0;
  }

  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 1 0 15%;
  }

  .header .row {
    align-items: center;
  }

  .v-center {
    justify-content: space-between;
  }

  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 5px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--text-white) !important;
  }

  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: var(--text-white);
    width: 24px;
    position: relative;
  }

  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-white);
  }

  .header .mobile-menu-trigger span:before {
    top: -6px;
  }

  .header .mobile-menu-trigger span:after {
    top: 6px;
  }

  .header .item-right {
    align-items: center;
  }

  .header .menu {
    position: fixed;
    width: 320px;
    background: var(--body-color);
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }

  .header .menu.active {
    transform: translate(0%);
  }

  .header .menu>ul>li {
    line-height: 1;
    margin: 0;
    display: block;
  }

  .header .menu>ul>li>a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
  }

  .header .menu>ul>li>a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }

  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: var(--bg-dark);

    top: 0;
  }

  .mobile-menu-head a {
    color: var(--text-white);
  }

  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: var(--text-dark);
    font-size: 16px;
    display: none;
  }

  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }

  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
  }

  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: var(--text-white);
    font-size: 25px;
  }

  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }

  .header .menu>ul>li .sub-menu.active {
    display: block;
  }

  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }

    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }

  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }

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

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
    margin-top: 0;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
    margin-bottom: 20px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
    margin-bottom: 0px;
  }

  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
    flex: 0 0 100%;
    padding: 0px;
  }

  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
    display: block;
  }

  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
    margin-bottom: 15px;
  }

  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }

  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .header .logo a {
    font-size: 17px;
  }

  .toggle-btn {
    font-size: 18px;
  }

  .nav-item__link {
    display: none;
  }

  .mobile-cart {
    display: block;
  }
}

@media screen and (max-width:400px) {
  .header .logo a {
    font-size: 15px;
  }
}

/* end header */


/* start hero section */
.hero-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: left;
  position: relative;
  max-width: 600px;
  padding-left: 8%;
  /* top: -8%; */
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--body-font);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4em;
  line-height: 1.2;
}

.hero-content p {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.85em;
  line-height: 1.5;
}

.button-group {
  display: flex;
  gap: 10px;
}

/* .button-group a {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.4s;
} */

.btn-shop {
  color: var(--text-white);
  background-color: var(--bg-red);
  border: 2px solid var(--bg-red);
}

.btn-explore {
  color: var(--text-white);
  background: transparent;
  border: 3px solid var(--bg-red);
  font-weight: 600;
  transition: all 0.3s ease !important;
}

.btn-explore:hover {
  background: var(--btn-bg);
  border: 3px solid transparent;
}

.background-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-container {
    height: 70vh;
  }

  .hero-content {
    padding: 0 20px;
    top: 0;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-content p {
    font-size: 0.875rem;
  }

  .button-group .btn {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.65rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .button-group .btn {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .button-group {
    gap: 6px;
  }
}

/* end header section */

/* section category of health */
.health-goals {
  margin: 28px 0;
  font-family: var(--body-font);
}

.health-goals h2 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.goal-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* حجم الصوره دي 300*200 */
.goal-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.goal-card:hover img {
  transform: scale(1.05);
}

.goal-title {
  background-color: #000;
  color: #fff;
  padding: 7px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {

  .health-goals {
    margin: 20px 0;
  }

  .health-goals h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
  }

  .goal-card img {
    height: 160px;
  }

  .goal-title {
    font-size: 0.8rem;
    padding: 6px 0;
  }

}

/* section category of health */

/* start section why us */
.why_us {
  margin: 36px auto;
  font-family: var(--body-font);
}

.why_us h1 {
  font-family: var(--body-font);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  width: 60%;
  margin: 12px auto 18px;
  line-height: 1.55;
}

.why_us h1.fw-bold {
  font-size: 1.5rem;
  font-weight: 700;
  width: 100%;
  margin: 0 auto 8px;
  line-height: 1.3;
}

.features {
  width: 100%;
  max-width: 680px;
  margin: 6px auto;
}

.features .feature-content {
  margin: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: var(--body-font);
}

.features .feature-content i {
  font-size: 1rem;
  margin-right: 0.4rem;
  color: var(--text-white);
  padding: 11px;
  border-radius: 50%;
  background: linear-gradient(blue, red);
  -webkit-mask: radial-gradient(circle, #fff 65%, transparent 66%);
  mask: radial-gradient(circle, #fff 65%, transparent 66%);
}

.features .feature-content span {
  font-family: var(--body-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media screen and (max-width: 768px) {
  .why_us {
    margin: 24px auto;
  }

  .why_us h1 {
    font-size: 0.875rem;
    width: 100%;
    margin: 10px auto 14px;
  }

  .why_us h1.fw-bold {
    font-size: 1.2rem;
  }

  .features .feature-content {
    margin: 8px 0;
  }

  .features .feature-content i {
    font-size: 0.9rem;
    padding: 9px;
  }

  .features .feature-content span {
    font-size: 0.75rem;
  }
}

/* end section why us */

/* start section Best product */

/* .best-product {
  background-color: var(--bg-dark);
}

.product-figure {
  padding: 0px;
}

.product-figure img {
  max-width: 100%;
  height: 350px;
  border-radius: 5px;
  scale: 1.1;
} */
.best-product {
  margin: 20px 0;
  font-family: var(--body-font);
}

.product-figure {
  padding: 12px;
}

.product-figure img {
  max-width: 100%;
  height: 340px;
  border-radius: 5px;
  object-fit: cover;
}

.product-info {
  color: var(--text-dark);
  padding: 12px;
  font-family: var(--body-font);
}

.product-info h3 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 8px 0;
}

.product-overview {
  font-family: var(--body-font);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--secondary);
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 16px;
  margin-bottom: 18px;
  text-align: justify;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 767.98px) {

  .product-figure,
  .product-info {
    text-align: center;
    padding: 5px 14px;
  }

  .product-figure img {
    max-width: 100%;
    height: 220px;
  }

  .product-info h3 {
    font-size: 1.15rem;
  }

  .product-overview {
    font-size: 0.875rem;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .button-group .btn {
    display: block;
    width: 100%;
    margin: 5px 0;
  }
}

/* end section Best product */

/* start section technology behind */
/* Enhanced Timeline Container */
.technology-behind {
  font-family: var(--body-font);
  margin: 24px 0;
}

.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  font-family: var(--body-font);
}

.timeline-container h2 {
  font-family: var(--body-font);
  color: var(--text-dark);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-shadow: none;
}

/* Timeline Items Container */
.timeline-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
  min-width: 125px;
  max-width: 150px;
  text-align: center;
  padding: 0.7rem 0.45rem;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--btn-bg);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.timeline-item:hover,
.timeline-item.active {
  transform: translateY(-5px) scale(1.02);
  color: var(--text-white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.timeline-item:hover::before,
.timeline-item.active::before {
  opacity: 1;
}

.timeline-item small {
  font-family: var(--body-font);
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  font-weight: 600;
  display: block;
  margin-top: 0.3rem;
  line-height: 1.25;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border: 2px solid var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.05rem;
  color: var(--color-red);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  box-shadow: 0 3px 12px rgba(231, 76, 60, 0.2);
}

.timeline-item:hover .icon-circle,
.timeline-item.active .icon-circle {
  color: var(--text-white);
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

/* Results Section */
.results-section {
  background: var(--btn-bg);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  position: relative;
  margin: 1.25rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.results-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

.tab-pane {
  display: none;
  position: relative;
  z-index: 1;
}

.tab-pane.active {
  display: block;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-pane h2 {
  font-family: var(--body-font);
  color: var(--text-white);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tab-pane p {
  font-family: var(--body-font);
  color: var(--text-white);
  font-size: clamp(0.8rem, 1.6vw, 0.9rem);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}

/* CTA Buttons */
.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .timeline-wrapper {
    gap: 0.45rem;
  }

  .timeline-item {
    min-width: 110px;
    max-width: 130px;
    padding: 0.6rem 0.4rem;
  }

  .icon-circle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .timeline-container {
    max-width: 100%;
    padding: 0.75rem;
  }

  .timeline-wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.35rem;
  }

  .timeline-item {
    min-width: 130px;
    max-width: 105px;
    padding: 0.55rem 0.3rem;
  }

  .timeline-item small {
    font-size: 0.6rem;
    line-height: 1.2;
  }

  .results-section {
    padding: 1.25rem 1rem;
    max-width: 100%;
  }

  .icon-circle {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .cta-container {
    gap: 0.5rem;
  }


}

@media (max-width: 480px) {
  .timeline-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: center;
      gap: 0.45rem;
  }

  .timeline-item {
    width: 100%;
    max-width: 260px;
    padding: 0.7rem;
  }

  .timeline-item small {
    font-size: 0.72rem;
  }

  .results-section {
    padding: 1.1rem 0.9rem;
  }

  .icon-circle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .cta-container {
    /* flex-direction: column; */
    gap: 0.6rem;
  }

}

/* Connection Lines (Optional Enhancement) */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--color-red) 20%, var(--color-red) 80%, transparent 100%);
  z-index: -1;
}

@media (max-width: 768px) {
  .timeline-wrapper::before {
    display: none;
  }
}

/* end section technology behind */



/* start section testimonial */


.testimonial-section {
  display: flex !important;
  flex-wrap: wrap;
  margin: 20px 0;
  width: 100%;
}

.testimonial-image {
  padding: 0 !important;
}

.container-fluid,
.testimonial {
  width: 98.5%;
  margin: 36px auto;
  font-family: var(--body-font);
}

.container-fluid h1 {
  font-family: var(--body-font);
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: var(--text-dark) !important;
  width: 10px !important;
  height: 10px !important;

}

/* .swiper-pagination-bullet-active {
  background-color: var(--bg-white) !important;
} */

/* bubble in page home  */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 2px !important;
}

.testimonial-text {
  background-color: var(--bg-red);
  color: var(--text-white);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 7px;
  font-family: var(--body-font);
}

.testimonial-quote img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
}

@media screen and (max-width: 768px) {
  .container-fluid h1 {
    font-size: 1.2rem;
    margin: 6px 0;
  }

  .testimonial-image {
    padding: 0 !important;
  }

  .container-fluid,
  .testimonial {
    width: 96%;
    margin: 22px auto;
  }

  .testimonial-text {
    padding: 14px;
    margin: 5px 0;
  }
}

/* end section testimonial */
/* start section review */
.review {
  margin: 16px 0;
  padding: 1.25rem 0;
  font-family: var(--body-font);
}

.review h1,
.patented-products h1 {
  font-family: var(--body-font);
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding: 0 20px;
}

.patented-products .container-products {
  width: 95%;
  margin: 0 auto;
}

.container-review {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.review-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.review-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  padding: .8rem;
  border-radius: 8px;
  text-align: left;
  width: 280px;
  min-width: 280px;
  height: auto;
  /* border: 1px solid #ccc; */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: var(--bg-dark);
  background-color: var(--bg-white);
  margin-bottom: 10px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.stars {
  font-size: 1rem;
}

.verified {
  font-size: .8rem;
  color: var(--verified);
}

.review-title {
  font-size: .9rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.review-content {
  font-size: .8rem;
  margin-bottom: .5rem;
}

.review-author {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.has-scrollbar {
  display: flex;
  overflow-x: scroll;
}

@media (min-width: 768px) {
  .review-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    overflow-x: hidden;
  }

  .review-card {
    width: 100%;
    min-width: unset;
  }
}

@media (min-width: 1024px) {
  .review-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* end section review */

/* =============== ENHANCED REVIEW SWIPER SECTION =============== */
.review-section-enhanced {
  padding: 14px 0;
  /* background: #f8f9fa; */
  width: 100%;
  font-family: var(--body-font);
}

.review-section-enhanced > .container {
  max-width: 100%;
  padding: 0 3%;
}

.review-header-section {
  text-align: center;
  margin-bottom: 22px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-red);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-badge i {
  font-size: 0.9rem;
}

.review-main-title {
  font-family: var(--body-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.review-subtitle {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Swiper Container */
.reviewSwiper {
  padding: 15px 5px 50px;
  position: relative;
  width: 100%;
}

.reviewSwiper .swiper-slide {
  height: auto;
}

/* Review Card Enhanced */
.review-card-enhanced {
  height: 100%;
}

.review-card-inner {
  background: #fff;
  border-radius: 12px;
  padding: 15px ;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); */
  border: 1px solid #eee;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

/* .review-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-red);
  border-radius: 12px 12px 0 0;
} */

/* .review-card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} */

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(214, 41, 87, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  font-size: 1rem;
  color: var(--bg-red);
  opacity: 0.7;
}

/* Review Meta */
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.stars-wrapper {
  display: flex;
  gap: 2px;
}

.stars-wrapper i {
  font-size: 0.85rem;
}

.stars-wrapper i.filled {
  color: #f59e0b;
}

.stars-wrapper i.empty {
  color: #e5e7eb;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #10b981;
  color: #fff;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
}

.verified-badge i {
  font-size: 0.65rem;
}

/* Review Card Title */
.review-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  padding-right: 50px;
}

/* Review Card Content */
.review-card-content {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  /* margin-bottom: 12px; */
}

/* Read More Button */
.review-section-enhanced .read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bg-red);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  margin-bottom: 15px;
  transition: color 0.2s ease;
}

.review-section-enhanced .read-more-btn:hover {
  color: #b8204a;
}

.review-section-enhanced .read-more-btn i {
  font-size: 0.75rem;
}

/* Author Section */
.review-author-section {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--bg-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar i {
  font-size: 1rem;
  color: #fff;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.author-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Swiper Navigation */
.review-nav-next,
.review-nav-prev {
  width: 40px !important;
  height: 40px !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
  transition: background 0.2s ease !important;
  font-size: 0.6rem !important;
}

.review-nav-next::after,
.review-nav-prev::after {
  font-size: 0.6rem !important;
  font-weight: bold !important;
  color: var(--bg-red) !important;
}

.review-nav-next:hover,
.review-nav-prev:hover {
  background: var(--bg-red) !important;
}

.review-nav-next:hover::after,
.review-nav-prev:hover::after {
  color: #fff !important;
}

/* Swiper Pagination */
.review-pagination {
  bottom: 10px !important;
}

.review-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.review-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 5px;
  background: var(--bg-red);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .review-nav-next,
  .review-nav-prev {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .review-section-enhanced {
    padding: 50px 0;
  }
  
  .review-main-title {
    font-size: 1.75rem;
  }
  
  .review-subtitle {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .review-section-enhanced {
    padding: 40px 0;
  }
  
  .review-header-section {
    margin-bottom: 30px;
  }
  
  .review-main-title {
    font-size: 1.5rem;
  }
  
  .review-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  
  .review-card-inner {
    padding: 20px;
  }
  
  .quote-icon {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }
  
  .quote-icon i {
    font-size: 0.85rem;
  }
  
  .review-card-title {
    font-size: 1rem;
    padding-right: 45px;
  }
}

@media (max-width: 480px) {
  .review-section-enhanced {
    padding: 30px 0;
  }
  
  .review-main-title {
    font-size: 1.35rem;
  }
  
  .review-subtitle {
    font-size: 0.85rem;
  }
  
  .review-card-inner {
    padding: 18px;
  }
  
  .author-avatar {
    width: 38px;
    height: 38px;
  }
}
/* =============== END ENHANCED REVIEW SWIPER SECTION =============== */

/* =============== PATIENT STORY MODAL =============== */
.patient-story-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.patient-story-modal-content {
  background-color: #fff;
  margin: 3% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.patient-story-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #999;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.patient-story-modal-close:hover {
  color: var(--bg-red);
  background: rgba(214, 41, 87, 0.1);
  transform: rotate(90deg);
}

.patient-story-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.patient-story-modal-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.patient-story-modal-stars {
  display: flex;
  gap: 4px;
  font-size: 1.1rem;
}

.patient-story-modal-stars .fa-star.filled {
  color: #f59e0b;
}

.patient-story-modal-stars .fa-star.empty {
  color: #e5e7eb;
}

.patient-story-modal-verified {
  display: none;
  align-items: center;
  gap: 5px;
  background: #10b981;
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.patient-story-modal-verified i {
  font-size: 0.7rem;
}

.patient-story-modal-title {
  color: var(--text-dark);
  margin: 0;
  padding: 25px 30px 15px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.patient-story-modal-content-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
  padding: 0 30px 25px;
  text-align: justify;
  max-height: 450px;
  overflow-y: auto;
  padding-right: 20px;
}

.patient-story-modal-content-text::-webkit-scrollbar {
  width: 6px;
}

.patient-story-modal-content-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.patient-story-modal-content-text::-webkit-scrollbar-thumb {
  background: var(--bg-red);
  border-radius: 3px;
}

.patient-story-modal-content-text::-webkit-scrollbar-thumb:hover {
  background: #b8204a;
}

.patient-story-modal-footer {
  padding: 20px 30px 25px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.patient-story-modal-author-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.patient-story-modal-author-avatar {
  width: 42px;
  height: 42px;
  background: var(--bg-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.patient-story-modal-author-avatar i {
  font-size: 1rem;
  color: #fff;
}

.patient-story-modal-author {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .patient-story-modal-content {
    margin: 5% auto;
    width: 95%;
    border-radius: 12px;
  }

  .patient-story-modal-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    font-size: 28px;
  }

  .patient-story-modal-header {
    padding: 25px 20px 15px;
  }

  .patient-story-modal-title {
    padding: 20px 20px 12px;
    font-size: 1.3rem;
  }

  .patient-story-modal-content-text {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    max-height: 400px;
  }

  .patient-story-modal-footer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 480px) {
  .patient-story-modal-content {
    margin: 10% auto;
    width: 98%;
  }

  .patient-story-modal-title {
    font-size: 1.15rem;
  }

  .patient-story-modal-content-text {
    max-height: 350px;
  }
}
/* =============== END PATIENT STORY MODAL =============== */

/* start section patented-products */
.patented-products {
  margin: 70px 0;
}

.patented-products .card {
  width: 100%;
  border: none;
  box-shadow: 4px 4px 4px 2px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);

}

.patented-products .card .card-body {
  text-align: center !important;
  padding: 30px 0 10px 0;
  width: 70%;
  margin: 0 auto;
}

.patented-products .card .card-body .card-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
}

.patented-products .card .card-body .card-title span {
  color: var(--bg-red);
}

.patented-products .card img {
  height: 400px;
  object-fit: cover;
}

/* this code in page all products */
.patented-products .card .product-image {
  height: 250px;
  object-fit: cover;
}

.group-btn .btn-technology {
  color: var(--text-dark);
}

.group-btn .btn-technology:hover {
  color: var(--text-white);
}

@media screen and (max-width:1025px) {
  .patented-products {
    margin: 40px 0;
  }

  .patented-products .card .card-body {
    width: 96%;
  }

  .patented-products .card img {
    height: 280px;
  }

  /* this code in page all products */
  .patented-products .card .product-image {
    height: 250px;
  }

  .patented-products .card {
    width: 96%;
    margin: 0 auto;
  }
}

/* end section patented-products */
/* start section banner */
.banner-purose-section {
  position: relative;
  background: url(../../assets/image/banner-image.png) no-repeat center center;
  background-size: cover;
  height: 100vh;
  /* align-items: center; */
  color: var(--text-white);
  text-align: left;
}

.banner-content-purpose {
  max-width: 450px;
  padding: 40px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

/* .banner-content-purpose .banner-title {
  font-size: 3rem;
  font-weight: bold;
} */
.banner-content-purpose .purose-title {
  font-size: 2.5rem;
  font-weight: 600;
}

.banner-content-purpose p {
  font-size: 1.2rem;
  margin: 20px 0;
  text-align: justify;
  font-style: 600;
}

@media (max-width: 768px) {
  .banner-content-purpose .banner-title {
    font-size: 2.5rem;
  }

  .banner-purose-section {
    height: 50vh;
  }
}

@media (max-width: 576px) {
  .banner-content-purpose .banner-title {
    font-size: 1.5rem;
  }

  .banner-purose-section {
    height: 40vh;
  }

  .banner-content-purpose .purose-title {
    font-size: 2rem;
  }
}

/* end section banner */

/* start section ingredients */
.section-ingredients {
  margin: 70px 0;
}

.card-ingredients {
  background-image: url(../../assets/image/ingredient-bg.png);
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  height: 550px;
  padding: 30px;
  position: relative;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Copy code to element you want to animate */
  animation: card-ingredients 6s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal both;
}

.card-ingredients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 7px;
}

/*
.card-ingredients:hover {
  border-top: 6px solid var(--bg-red);
  cursor: pointer;
} */

.container-ingredients {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.container-ingredients h1 {
  text-align: left;
  font-size: 30px;
  margin: 20px 0;
}

.text-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  text-align: left;
}

/* .card-ingredients {
  background-image: url(../../assets/image/product_hover.webp);
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  padding: 20px;
  height: 550px;
  position: relative;
  transition: all 0.3s ease;
} */

/* .card-ingredients::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9;
  border: 7px;
} */

/* .card-ingredients:hover {
  border-top: 6px solid var(--bg-red);
  cursor: pointer;
} */

/* .card-ingredients h4 {
  padding: 20px 0;
  font-size: 30px;
  color: var(--text-white);
  z-index: 99;
  transition: all 0.3s ease;
  font-weight: bold;
} */

/* .card-ingredients .content {
  z-index: 99;
  padding: 0 20px;
  color: var(--text-white);
  font-weight: bold;
  position: absolute;
  bottom: 5%;
  left: 10%;
  transform: translate(-10%, -10%);
} */

.card-research {
  height: 275px;
  background-color: var(--bg-red);
  color: var(--text-white);
  border-radius: 6px;
  transition: all .3s;
  /* animation: card-research 8s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal none; */
}

@keyframes card-research {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}

/* .card-research:hover {
  border-top: 6px solid var(--text-white);
} */

.card-science {
  height: 250px;
  box-shadow: 4px 8px 8px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-radius: 6px;
  animation: card-science 8s cubic-bezier(0.12, 0, 0.39, 0) 0s infinite normal both;
}

.card-science-shadow {
  height: 275px;
  background-color: var(--bg-white);
  box-shadow: 4px 8px 8px 8px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  border-radius: 6px;
  transition: all .3s;
}

/* Copy this code after the above code */
@keyframes card-science {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(45px);
  }

  24% {
    opacity: 1;
  }

  40% {
    animation-timing-function: ease-in;
    transform: translateY(24px);
  }

  65% {
    animation-timing-function: ease-in;
    transform: translateY(12px);
  }

  82% {
    animation-timing-function: ease-in;
    transform: translateY(6px);
  }

  93% {
    animation-timing-function: ease-in;
    transform: translateY(4px);
  }

  25%,
  55%,
  75%,
  87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }

  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}


.card-research .content,
.card-science .content,
.card-science-shadow .content {
  padding: 40px;
}

.card-research .content small,
.card-science .content small,
.card-science-shadow .content small {
  padding-bottom: 10px;
}

/* .card-science .content small {
  color: var(--bg-red);
} */

.card-research .content h4,
.card-science .content h4,
.card-science-shadow .content h4 {
  font-size: 22px;
  font-weight: 600;
  padding: 7px 0;
}

.card-research .content p,
.card-science .content p,
.card-science-shadow .content p {
  width: 100%;
  margin-bottom: .5rem;
}

.card-research .content .data,
.card-science .content .data,
.card-science-shadow .content .data {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1024px) {

  .card-research,
  .card-science,
  .card-science-shadow {
    height: auto;
  }

  .card-research .content,
  .card-science .content,
  .card-science-shadow .content {
    padding: 10px 20px;
  }

  .card-research .content p,
  .card-science .content p,
  .card-science-shadow .content p {
    width: 90%;
  }

  .card-research .content h4,
  .card-science .content h4,
  .card-ingredients h4,
  .card-science-shadow .content h4 {
    font-size: 25px;
  }
}

@media (max-width: 1024px) {
  .card-ingredients {
    height: 400px;
    margin-bottom: 20px;
  }
}

/* end section ingredients */
/* start footer */
.footer {
  width: 100%;
  background: var(--bg-dark);
  /* border-radius: 6px; */
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 60px;
}

.footer-row .footer-col h4 {
  color: var(--text-white);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-col .links {
  margin-top: 20px;
}

.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-col .links li a {
  text-decoration: none;
  color: var(--footer-text);
}

.footer-col .links li a:hover {
  color: var(--text-white);
}

.footer-col p {
  margin: 20px 0;
  color: var(--footer-text);
  max-width: 300px;
}

.footer-col form {
  display: flex;
  gap: 5px;
}

.footer-col input {
  height: 40px;
  border-radius: 6px;
  background: none;
  width: 100%;
  outline: none;
  border: 1px solid var(--footer-text);
  caret-color: var(--text-white);
  color: var(--text-white);
  padding-left: 10px;
}

.footer-col input::placeholder {
  color: var(--text-white);
}

.footer-col form button {
  background: var(--bg-red);
  color: var(--text-white);
  outline: none;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-col form button:hover {
  color: var(--text-dark);
  background: var(--bg-white);
}


.footer-col .icons {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  cursor: pointer;
}

.footer-col .icons i {
  color: var(--icon-footer);
}

.footer-col .icons i:hover {
  color: var(--text-white);
}

.footer-logo .brand-name {
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer-logo {
    width: 100%;
    margin: 15px 0;
  }

  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }
}

/* end footer */

/* start page product details  */
/* product details section  */
.header-page-details {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  box-shadow: 0 5px 20px var(--shadow-color);
  /* backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.product-details {
  padding: .5rem 5rem;
  margin: 30px 20px 30px 20px;
}

.card-details .product-imgs {
  display: flex;
  flex-direction: row;
}

.product-imgs .img-display {
  overflow: hidden;
  width: 500px;
  margin: 0 2rem;
}

.img-display .img-showcase {
  display: flex;
  transition: all 0.5s ease;
}

.img-display .img-showcase img {
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
}

.product-imgs .img-select {
  display: flex;
  flex-direction: column;
  gap: .7rem;

}

.img-select .img-item img {
  width: 100%;
  height: 120px;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 5px;
}

.img-display .img-showcase img {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.img-display .img-showcase img.fade-out {
  opacity: 0;
}

.img-select .img-item:hover img {
  opacity: 0.8;
  border: 1px solid var(--bg-red);
}

.card-details .product-content {
  padding: 2rem 1rem;
}

.product-name {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 600;
}

.product-name span,
.product-name-mobile span {
  color: var(--bg-red);
}

.product-name-mobile {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 600;
  display: none;
}

.product-description {
  text-align: justify;
  color: var(--text-dark);
  margin: 1rem 0;
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.5;
}

.product-content .product-rating {
  color: var(--text-rating);
  padding: 10px 0;
}

/* according */
.faqs-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.accordion-section {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
}

.accordion-item {
  color: var(--text-dark);
  margin: 1rem 0;
}

.accordion-item-header {
  padding: 1.2rem 3rem 1.2rem 1rem;
  min-height: auto;
  line-height: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header h3 {
  font-size: 17px;
  font-weight: 600;
}

.accordion-item-body-content p {
  text-align: justify;
  font-size: 14px;
}

.accordion-item-header::after {
  content: "\002B";
  font-size: 1.3rem;
  position: absolute;
  right: 1rem;
}

.accordion-item-header.active::after {
  content: "\2212";
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  padding: 1rem;
  line-height: 1.5rem;
  border-top: 1px solid;
  border-image: linear-gradient(to right, transparent, #e71010, transparent) 1;
}

/* chart  */
/* .chart-container {
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.chart-container .chart {
  width: 100%;
  margin-bottom: 10px;
}

.chart-container .legend {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.chart-container .legend .legend-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.note {
  color: #666;
  font-size: 14px;
  margin-top: 20px;
  padding: 10px;
} */
.chart-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  max-width: 700px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.chart-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* Chart Title */
.chart-slider-container .chart-slider .chart-slides .chart-slide .chart-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  padding: 10px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#chart {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .card-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }

  .product-details {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .product-imgs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .product-content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 1200px) {
  .product-details {
    padding: .5rem 1rem;
    margin: 15px 10px;
  }

  .card-details .product-imgs {
    display: flex;
    flex-direction: column;
  }

  .card-details {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-name {
    display: none;
  }

  .product-name-mobile {
    display: block;
    font-size: 1.5rem;
    margin: 10px 5px;
  }

  .accordion-item-header h3 {
    font-size: 15px;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .img-item img {
    width: 80px;
    height: auto;

  }

  .product-details {
    padding: 1rem;
  }

  .product-imgs {
    flex-direction: column-reverse;
    align-items: center;
  }

  .img-display {
    margin-left: 0;
    width: 80%;
  }

  .img-select {
    flex-direction: row;
    margin-top: 1rem;
  }

  .product-imgs .img-select {
    flex-direction: row;
  }

  .product-imgs .img-display {
    margin: 1rem;
  }

  /* .chart-container .legend .legend-item {
    padding: 8px 10px;
    font-size: 12px;
  } */
}

@media screen and (max-width: 600px) {
  .product-imgs .img-display {
    width: 380px;
    margin: .5rem 1rem;
  }

  .card-details .product-content {
    padding: 1rem .5rem;
  }

  .product-details {
    padding: 0;
  }

  .img-select .img-item img {
    height: 95px;
  }

}

@media screen and (max-width: 400px) {
  .product-imgs .img-display {
    width: 100%;
  }
}

/* section product banner  */

.product_banner {
  background-image: url(../../assets/image/banner-details.webp);
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: var(--text-white);
  position: relative;
  margin: 70px 0 0 0;
}

.product_info_banner {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 50%;
}

.product_info_banner .product_info_subtitle {
  font-size: 22px;
  margin: 10px 0;
}

.product_info_banner p {
  text-align: justify !important;
}

.section-cell-health {
  margin: 70px 0;
}

.section-cell-health .description {
  text-align: center;
  margin-bottom: 30px;
  width: 50%;
  margin: 0 auto;
  color: var(--text-white);
}

.section-cell-health .description h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
}

.enhances-cell-health {
  display: flex;
  flex-direction: column;
}

.container-enhance {
  display: flex;
  flex-wrap: wrap;
  align-items: space-between;
  justify-content: center;
  padding: 20px;
  margin: 10px 0;
}

.container-enhance .text-cell {
  flex: 1 1 50%;
  max-width: 600px;
  padding: 20px;
  margin-top: 30px;
  color: var(--text-dark);
}

.container-enhance .text-cell h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 800;
  font-style: italic;
}

.container-enhance .text-cell p {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: justify;
}

.container-enhance .image-cell {
  flex: 1 1 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.container-enhance .image-cell img {
  width: 60%;
  height: 500px;
  border-radius: 10px;
  object-fit: cover;
}

.product_info_banner .features .feature-content span {
  color: var(--text-white);
}

/* section what is inside */
.whats-inside {
  background-color: var(--bg-white);
  /* padding: 70px 0 !important; */
}

.whats-inside .container {
  max-width: 750px;
}

.whats-inside .section-title {
  font-weight: 500;
  font-size: 2.5rem;
  background: var(--bg-red);
  background: linear-gradient(to right, #FF0000 0%, #111EC6 86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.whats-inside .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
}

.whats-inside .feature-item {
  text-align: center;
}

.whats-inside .feature-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
}

.whats-inside .feature-text {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* start section how-to-take */
.how-to-take {
  background: linear-gradient(90deg, #ba0306, #0357b1);
  color: var(--text-white);
  padding: 70px 0 !important;

}

.how-to-take .row-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.how-to-take .row-card .card-img-top {
  height: 300px !important;
  object-fit: cover;
}

.how-to-take .section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.how-to-take .row-card .card-text {
  font-size: 15px;
  color: var(--text-white);
  padding: 7px 5px !important;
  font-weight: 600;
}

@media screen and (max-width: 1025px) {

  .product_info_banner {
    width: 85%;
  }

  .section-cell-health .description {
    width: 70%;
  }

  .container-enhance .image-cell img {
    width: 100%;
    height: 400px;
  }

  .container-enhance .text-cell p {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .container-enhance .text-cell {
    flex: 1 1 40%;
    max-width: 500px;
    padding: 10px;
    margin-top: 10px;
  }

  .how-to-take .row-card .card-img-top {
    height: 180px !important;
  }

  .how-to-take .row-card .card-text {
    font-size: 13px;
    margin: 7px 0;
    text-align: left;
    padding: 0 10px !important;
  }
}

@media screen and (max-width: 768px) {
  .product_banner {
    margin: 30px 0;
    height: 90vh;
  }

  .product_info_banner {
    width: 95%;
  }

  .product-content .img-detail {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }

  .section-cell-health .description {
    text-align: center;
    width: 100%;
    padding: 0 15px;
  }

  .section-cell-health .description h2 {
    font-size: 22px;
  }

  .section-cell-health .description p {
    font-size: 14px;
  }

  .container-enhance {
    flex-direction: column;
    padding: 10px;
  }

  .container-enhance .text-section,
  .container-enhance .image-section {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .container-enhance .text-cell h2 {
    font-size: 1.2rem;
  }

  .container-enhance .text-cell p {
    font-size: 0.9rem;
    margin-bottom: 7px;
  }

  .container-enhance .image-cell img {
    width: 100%;
    height: 350px;
  }

  .first-cell {
    display: flex;
    flex-direction: column-reverse;
  }

  .how-to-take .box-data {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .how-to-take .row-card .card-img-top {
    height: 140px !important;
  }

  .section-cell-health {
    margin: 35px 0;
  }
}

/* end page product details  */

/* Why choose us page */

.banner-hero {
  background-image: url(../../assets/image/why.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.secience-hero {
  background-image: url(../../assets/image/science.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner_technologyBehind {
  background-image: url(../../assets/image/technologyBehind.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.technology-hero {
  background-image: url(../../assets/image/technologybg.jpg);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.contact-hero {
  background-image: url(../../assets/image/contact.webp);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner_product_list {
  /* background-image: url(../../assets/image/technologyBehind.webp); */
  background-color: red;
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.product-hero {
  background-image: url(../../assets/image/banner-list.jpg);
  background-size: cover;
  background-position: center;
  height: 60vh;
  color: var(--text-white);
}

.banner-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto;
  padding: 10px 20px;
  z-index: 9;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.banner-text h3,
.banner-text p {
  padding: 7px 0;
  font-weight: 600;
}

.section-Differentiators,
.section-proven_results {
  margin: 60px 0;
}

.section-Differentiators h1,
.section-proven_results h1 {
  font-size: 30px;
  text-align: center;
  margin: 30px 0;
  color: var(--text-dark);
}

.section-Differentiators .slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

.card-list .card-item {
  height: auto;
  color: var(--text-white);
  padding: 25px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--card-list-bg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid var(--text-white);
  padding: 4px;
}

.card-list .card-item .user-name {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.card-list .card-item .user-profession {
  font-size: .9rem;
  color: var(secondary);
  font-weight: 500;
  margin: 10px 0 10px;
  text-align: center;
}


.section-Differentiators .slider-wrapper .swiper-pagination-bullet {
  background: var(--text-dark);
  height: 10px;
  width: 10px;
  opacity: 0.5;
}

.section-Differentiators .slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.section-Differentiators .slider-wrapper .swiper-slide-button {
  color: var(--text-white);
  margin-top: -35px;
  transition: 0.2s ease;
}

.section-Differentiators .slider-wrapper .swiper-slide-button:hover {
  color: var(--bg-red);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 25px !important;
}


/* about us section */

.section-about {
  margin: 40px 0;
  width: 100%;
}

.section-targets {
  margin: 40px 0;
}

.about-us,
.targets {
  padding: 10px 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  justify-items: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us .main-img img,
.targets .main-img img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.targets .main-img img {
  height: 400px;
}

.about-us .main-img img:hover,
.targets .main-img img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.about-us .about-content,
.targets .targets-content {
  padding: 6% 0;
  opacity: 0;
  animation: fadeInText 1s ease-out forwards 0.5s;
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

.about-content h1,
.targets-content h1 {
  color: var(--text-dark);
  line-height: 40px;
  text-transform: capitalize;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  ;
}

.targets-content h1 {
  text-align: left;
  line-height: 35px;
  font-size: 24px;
  text-align: justify;
}

.about-content p,
.targets-content p {
  max-width: 600px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  text-align: center;
}

.targets-content p {
  text-align: left;
}

/* page science  */
.section-proven_results .box-result {
  padding: 10px 30px;
  color: var(--text-white);
  margin: 15px 0;
}

.section-proven_results .box-result i {
  font-size: 20px;
  margin-bottom: 10px;
  margin-right: .5rem;
  color: var(--text-white);
  padding: 15px;
  border-radius: 50%;
  background: linear-gradient(blue, red);
  -webkit-mask: radial-gradient(circle, #fff 65%, transparent 66%);
  mask: radial-gradient(circle, #fff 65%, transparent 66%);
}

.section-proven_results .box-result h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-proven_results .box-result p {
  font-size: 16px;
  color: var(--text-dark);
}

.main-container-tabs {
  margin: 0 auto;
  padding: 20px;
  max-width: 1200px;
}

/* ===== Tab navigation content ===== */
.tab-nav-bar {
  margin: 20px 0;
}

.tab-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.tab-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  /* background-color: var(--body-color); */
  padding: 10px !important;
  border-radius: 50px;
  box-shadow: var(--body-color);
  overflow-x: auto;
  scrollbar-width: none;
  width: 1200px;
  margin: 0 auto !important;
}

.tab-menu::-webkit-scrollbar {
  height: 6px;
}

.tab-menu::-webkit-scrollbar-thumb {
  background-color: var(--text-secondary);
  border-radius: 10px;
}

.tab-btn {
  color: var(--text-dark);
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: var(--bg-red);
  color: var(--text-white);
}

.left-btn,
.right-btn {
  font-size: 1.5rem;
  color: var(--text-white);
  cursor: pointer;
}

/* ===== Tab content ===== */
.tab-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
}

.img-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  /* object-fit: cover; */
}

.info {
  padding: 10px;
}

.city {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.description p {
  line-height: 1.6;
  color: var(--secondary);
  text-align: justify;
  font-size: 18px;
}

.description ul li {
  line-height: 2;
  color: var(--secondary);
  text-align: justify;
  font-size: 18px;
  margin-bottom: 5px;
}

.country {
  color: var(--text-secondary);
  font-size: 4em;
  font-weight: 700;
  text-align: center;
  text-shadow: var(--text-shadow);
  margin-top: 15px;
}

/* ===== Responsive design ===== */
@media (max-width: 768px) {
  .tab-navigation {
    flex-direction: column;
  }

  .tab-menu {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0 !important;
  }

  .tab-btn {
    font-size: 1.1rem;
    padding: 8px 15px;
  }

  .country {
    font-size: 2rem;
    margin-top: 5px;
  }

  .left-column,
  .right-column {
    padding: 0;
  }

  .targets .targets-content {
    padding: 2% 0;
  }

  .chart-container {
    max-width: 100%;
    width: 100%;
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .city {
    font-size: 1.5rem;
  }

  .description p {
    font-size: 0.9rem;
  }

  /* .tab-btn {
    padding: 5px 10px;
  } */
}

/* page technology */
.benefit-icon {
  width: 20px;
  height: 20px;
  border: 2px solid;
  border-radius: 50%;
}

.video-container {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

#dropdownDefaultButton {
  color: var(--text-white);
  background-color: var(--bg-red);
  padding: 7px 20px;
  border-radius: 10px;
  margin: 10px 0;
}

#dropdown ul li a {
  color: var(--text-dark) !important;
}

.main-container-tabs-technology {
  margin: 0 auto;
  padding: 20px;
  max-width: 1450px;
}

.tab-menu-technology {
  width: 1450px;
}

.chart-style {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 300px;
}


/* page product list */

.banner_product_list {
  /* background-image: url(../../assets/image/technologyBehind.webp); */
  background-color: var(--background-red);
  background-size: cover;
  background-position: center;
  height: 65vh;
  color: var(--text-white);
}

.banner_product_list .banner_product_text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 50px;
}

.banner_product_text h3 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 600;
}

.banner_product_text p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.banner_product_list .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.section_product_list {
  background-color: var(--bg-white);
}

.container_product_list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.container_product_list .row {
  padding: 50px 0;
}

.container_product_list .row .product-image {
  position: relative;
}

.container_product_list .row .details-box {
  border-left: 3px solid var(--color-red);
  padding-left: 10px;
}

.container_product_list .row .details-box .card {
  border: none;
  /* background-color: var(--bg-card); */
  box-shadow: none;
  
}

.details-box .card img {
  height: 200px;
}

.details-box .card span {
  font-weight: bold;
  color: var(--color-red);
}

.details-box .card h4 {
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.details-box .card .card-body a {
  font-size: 14px;
  color: var(--color-red);
  font-weight: 500;
}

.container_product_list .row .box h2 {
  color: var(--color-red);
  margin-top: 25px;
  margin-bottom: 10px;
}

.container_product_list .row .box .text {
  font-size: 1.1rem;
}

.related_articles {
  background: linear-gradient(90deg, #ba0306, #0357b1);
  margin: 0 !important;
  padding: 60px 0;
}

@media (max-width: 768px) {

  .banner-hero,
  .secience-hero,
  .banner_technologyBehind,
  .technology-hero,
  .contact-hero,
  .product-hero {
    height: 50vh;
  }

  .banner-text {
    top: 55%;
  }

  .section-Differentiators .slider-wrapper {
    margin: 0 10px 40px;
  }

  .section-Differentiators .slider-wrapper .swiper-slide-button {
    display: none;
  }

  .section-Differentiators .slider-wrapper {
    margin: 0 35px 35px;
  }

  .section-targets {
    margin: 25px 0;
  }

  .about-us,
  .targets {
    margin: 25px 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out forwards;
  }

  .targets {
    display: flex;
    flex-direction: column;
  }

  .about-us .main-img img,
  .targets .main-img img {
    max-width: 100%;
  }

  .about-content,
  .targets-content {
    padding: 4% 0;
  }

  .about-content h1,
  .targets-content h1 {
    font-size: 24px;
  }

  .about-content p,
  .targets-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about-content hr,
  .about-content hr {
    width: 50%;
    margin-bottom: 10px;
  }

  .reverse-colum {
    display: flex;
    flex-direction: column-reverse;
  }

  .targets .main-img img {
    height: 300px;
  }

  .technology-container {
    padding: .7rem;
  }

  .section-proven_results .box-result {
    padding: 5px 30px;
    color: var(--text-white);
    margin: 10px 0;
  }

  .video-container {
    height: 250px;
    margin-top: 15px;
  }

  .banner_product_list .banner_product_text {
    padding: 50px 40px;
  }

  .banner_product_text h3 {
    font-size: 2.5rem;
  }

  .banner_product_text p {
    font-size: 1rem;
  }

  .banner_product_list {
    height: 50vh;
  }

  .container_product_list .row .details-box {
    border-left: none;
    border-top: 3px solid var(--color-red);
    padding: 10px 5px;
  }

  .container_product_list .row .box .text {
    font-size: 1rem;
  }

  .container_product_list .row {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .banner_product_list .banner_product_text {
    padding: 50px 10px;
  }

  .about-us,
  .targets {
    margin: 15px 0;
    grid-template-columns: 1fr;
    gap: .5rem;
    padding: 0 10px;
    animation: fadeInUp 1s ease-out forwards;
  }

}

/* page about us  */

.about-us-page {
  margin: 40px 0;
}

.about-us-page h1 {
  text-align: center;
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-us-page .about-info {
  max-width: 600px;
  margin: 0 auto;
}

.about-us-page .about-info h2 {
  font-size: 30px;
  line-height: 45px;
  margin-bottom: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.about-us-page .about-info p {
  font-weight: 300;
  color: var(--text-dark) !important;
  font-size: 17px;
  text-align: left;
  text-align: justify;
}

.about-us-page .about-info {
  padding-right: 60px;
}

.about-us-page .btn-black {
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 1);
  transition: 0.5s;
  border-radius: 1;
}

.about-us-page .btn-black:hover {
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
}

@media (max-width:576px) {
  .about-us-page .about-info {
    padding-right: 0;
  }

  .about-us-page .about-info h2 {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .about-us-page .about-info p {
    font-size: 16px;
  }

  .about-us-page .about-info {
    max-width: 100%;
  }
}


/*
---------------------------------------------
Contact Page
---------------------------------------------
*/
.contact-page {
  margin: 50px 0;
}

/* .contact-page .left-text { */
/* background-color: var(--bg-white); */
/* box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1); */
/* border-radius: 25px; */
/* padding: 60px; */
/* } */

/* .contact-page .left-text .section-heading {
  margin-bottom: 50px;
} */
.contact-page .left-text .section-heading h2 {
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  display: contents;
}

.contact-page .left-text p {
  margin-bottom: 50px;
}

.contact-page .left-text ul li {
  display: block;
  font-size: 16px;
  color: var(--text-secondary);
  font-size: 300;
  margin-bottom: 30px;
}

.contact-page .left-text ul li:last-child {
  margin-bottom: 0px;
}

.contact-page .left-text ul li span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-page .left-text ul li a {

  color: var(--text-secondary);
}

.contact-page .right-content {
  margin-left: 50px;
}

.contact-page .right-content #map {
  margin-bottom: 60px;
}

.contact-page .right-content form input {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  padding: 0px 20px;
  background-color: var(--bg-white);
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 15px;
  border: 1px solid #cccccc72;
}

.contact-page .right-content form textarea {
  width: 100%;
  height: 130px;
  border-radius: 25px;
  padding: 20px 20px;
  background-color: var(--bg-white);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 30px;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #cccccc72;
}

.contact-page .right-content form button {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background-color: var(--bg-red);
  color: var(--text-white);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0px 25px;
  border: none;
  border-radius: 10px;
  transition: all .5s;
}

.contact-page .right-content form button:hover {
  background-color: var(--color-red);
}

@media screen and (max-width: 1024px) {
  .contact-page .right-content {
    margin-left: 0px;
    margin-top: 45px;
  }

  .contact-page .left-text .section-heading h2 {
    font-size: 4.5rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-page .left-text .section-heading h2 {
    font-size: 3rem;
  }
}

/* page category  */

#main {
  width: 100%;
  min-height: 100vh;
  background-color: black;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-c {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section {
  width: 100%;
  height: 100vh;
}

.section1 {
  /* background-image: url(./assets/Assets2/cell1.webp); */
  background-size: cover;
  background-position: center;
}

.section1 h1 {
  font-size: 11vw;
  color: #fff;
}

.section1 img {
  position: absolute;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

#leaf1 {
  left: 20%;
  top: 20%;
}

#fanta {
  width: 35vw;
}

#orange {
  top: 65%;
  left: 48%;
  width: 15vw;
}

#leaf2 {
  top: 55%;
  left: 75%;
  width: 15vw;
}

#orange2 {
  top: 10%;
  left: 35%;
  width: 15vw;
}

/* -------section-2 */
.section2 .lft {
  width: 50%;
  height: 100%;
  /* background-color: red; */
}

.section2 .rght {
  width: 50%;
  height: 100%;
  align-items: start;
  gap: 5vh;
  padding: 0vw 10vw 0vw 0vw;
  /* background-color: orange; */
}

.magicpattern {
  width: 50%;
  height: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  background: linear-gradient(99deg,
      rgb(126, 1, 1) 0%,
      rgb(2, 31, 123) 95%);
  border-radius: 123% 54% 88% 44%;
  /* background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 1000 1000%22 xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3CclipPath id=%22a%22%3E%3Cpath fill=%22currentColor%22 d=%22M835.5 673.5Q700 847 508 833T202 659.5Q88 500 217.5 368T499 237.5q152 1.5 312 132t24.5 304Z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg clip-path=%22url(%23a)%22%3E%3Cpath fill=%22%23f77f45%22 d=%22M835.5 673.5Q700 847 508 833T202 659.5Q88 500 217.5 368T499 237.5q152 1.5 312 132t24.5 304Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); */
}

.mainHeading {
  font-size: 3vw;
  color: rgb(240, 64, 64);
  font-weight: 600;
}

.mainP {
  font-size: 1.2vw;
  color: #919191;
  font-weight: 400;
  text-align: justify;
}



@media screen and (max-width: 1200px) {
  .section1 h1 {
    font-size: 11vw;
    color: #fff;
  }
}

@media (max-width: 799px) {
  .section1 h1 {
    font-size: 10vw;
    color: #fff;
  }

  .cntr-nav {
    display: none;
  }

  .ri-menu-line {
    font-size: 7vw;
  }

  #fanta {
    width: 85vw;
  }

  #orange2 {
    top: 15%;
    left: 10%;
    width: 35vw;
  }

  #leaf1 {
    top: 14%;
    left: 67%;
    width: 19vw;
  }

  #orange {
    top: 58%;
    left: 47%;
    width: 38vw;
  }

  #leaf2 {
    top: 76%;
    left: 12%;
    width: 20vw;
  }

  .section2 {
    flex-direction: column;
    height: 200vh;
  }

  .magicpattern {
    width: 80%;
    height: 40%;
  }

  .section2 .lft {
    width: 100%;
    height: 40%;
  }

  .section2 .rght {
    width: 100%;
    padding: 5vw;
    height: 60%;
  }

  .mainHeading {
    font-size: 8vw;
  }

  .mainP {
    font-size: 5vw;
  }


}

@media screen and (max-width: 600px) {
  .section1 h1 {
    font-size: 11vw;
    color: #fff;
  }
}

.container-rotating {
  width: 100%;
  padding: 60px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  /* background-color: #000; */
}

.container-rotating .text {
  color: dark;
  font-size: 2em;
  margin-right: 20px;
  margin-left: 70px;
  flex: 1;
  text-align: left;
}

.container-rotating .text .highlight {
  background: linear-gradient(45deg, #ff0000, #ff00ff, #0000ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.image-container .rotating-image {
  width: 500px;
  height: auto;
  animation: rotate 7s linear infinite;
  transform-style: preserve-3d;
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@media screen and (max-width: 1200px) {
  .container-rotating .text {
    font-size: 1.5rem;
    text-align: left;
    margin-right: 0;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .image-container .rotating-image {
    width: 200px;
  }

  .container-rotating .text {
    font-size: 1.5em;
  }

  .container-rotating {
    padding: 20px 10px;
    justify-content: center;
  }

  .container-rotating .text {
    font-size: 4em;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .image-container .rotating-image {
    width: 350px;
  }

  .container-rotating .text {
    font-size: 2.5em;
  }
}

/* how it works  */
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

:root {
  --pr-white: #fff;
  --second-color: #0a0a0a;
  --color-1-1: #BE2518;
  --color-1-2: #ff6b4f;
  --cubicbz: cubic-bezier(.9, 0, .1, 1);
  --fz-big: 60px;
  --pd: 50px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.wrapp-scrolldown {
  background-color: var(--pr-white);
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 20px;
  z-index: 1;
}


.content {
  width: 100%;
  height: auto;
}

/* GSAP - scrollTrigger-pinned image Animation */
/* .spacer {
  width: 100%;
  height: 50vh;
  background-color: #ddd;
} */

.work {
  display: flex;
  padding: 30px 60px;
}

.work__left {
  position: relative;
  width: 55%;
  z-index: 2;
  /* outline: 1px solid red; */
}

.work__text {
  margin: auto;
  width: 80%;
}

.work__info {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* outline: 1px solid green; */
}

.work__info p {
  font-size: 20px;
  text-align: justify;
  color: var(--text-dark);
  line-height: 1.5;
}

.work__num {
  display: block;
  line-height: .9;
  text-align: left;
  font-size: 18px;
  transform: skewY(10deg);
  color: var(--color-1-1);
}

.work__left-h1 .title {
  text-align: left;
  font-size: 35px;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: bold;
  margin-bottom: 15px;
}

.work__left-h1 .title .stroke {
  display: block;
  /* color: transparent; */
  -webkit-text-stroke: 1px solid var(--color-1-1);
}

.work__link {
  display: block;
  width: 365px;
  margin-top: 50px;
  /* margin-left: auto; */
  padding: 18px 0;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
  letter-spacing: 4px;
  border: 2px solid var(--color-1-1);
  border-radius: 30px;
  transition: .4s;
}

.work__link:hover {
  background-color: var(--color-1-1);
  color: var(--pr-white);
  letter-spacing: 6px;
}

.work__right {
  width: 45%;
  height: auto;
  /* outline: 1px solid red; */
}

.work__right-b1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  width: 100%;
  height: 100vh;
  top: 0;
  /* height: 80vh;
  top: 10vh;
  background: #ff6b4f; */
}

.work__photo {
  width: 40vw;
  height: 30vw;
  position: relative;
}

.work__photo-item {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 80px;
  overflow: hidden;
}

.work__photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}



/* section how-it-works */
.how-it-works {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 60px;
  margin: 120px auto;
}

.how-it-works .text-section {
  flex: 1 1 50%;
  padding: 20px;
}

.how-it-works .text-section .section-title {
  color: red;
  font-size: 20px;
  margin-bottom: 10px;
}

.how-it-works .text-section .subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.how-it-works .text-section .steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.how-it-works .text-section .steps .step {
  border-bottom: 1px solid var(--text-secondary);
  padding: 10px 0;
  cursor: pointer;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.steps .step .step-number {
  color: var(--bg-red);
  font-weight: bold;
  margin-right: 10px;
}

.steps .step .step-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.steps .step .step-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  margin-top: 10px;
  color: var(--secondary);
}

.steps .step.active .step-content {
  max-height: 200px;
  opacity: 1;
}

.how-it-works .image-section {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* background-color: var(--bg-dark); */
  border-radius: 10px 0 0 10px;
  /* border: 1px solid var(--text-border); */
}

.how-it-works .image-section .image-card {
  width: 70%;
  height: auto;
  display: none;
  padding: 60px 0;
}

.small-screen {
  display: none;
}

.how-it-works .image-section .image-card.active {
  display: block;
}

@media screen and (max-width: 1400px) {
  .work {
    padding: 10px;
  }
}


@media screen and (max-width: 1200px) {
  .wrapp-scrolldown {
    display: none;
  }

  .small-screen {
    display: block;
  }

  .how-it-works {
    padding: 20px 10px 20px 10px;
    margin: 50px auto;
  }

  .how-it-works .image-section {
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  .how-it-works {
    flex-direction: column;
    margin: 15px auto;
    padding: 10px;
  }

  .how-it-works .text-section,
  .how-it-works .image-section {
    flex: 1 1 100%;
    padding: 10px;
  }

  .step-title {
    font-size: 20px;
  }

  .how-it-works .image-section .image-card {
    width: 100%;
    height: 280px;
    display: none;
    padding: 0;
    border-radius: 10px;
  }

  .steps .step .step-title {
    font-size: 18px;
  }
}

/* end page category  */




/* ingredients list */
.section_product_list {
  padding: 2rem 0;
  background-color: var(--body-background);
}

.container_product_list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.container_product_list .row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.container_product_list .row .col-lg-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

.container_product_list .row .col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}

.container_product_list .row .box {
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container_product_list .row .box .product-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.container_product_list .row .box .product-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}



.container_product_list .row .box h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.container_product_list .row .box h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.container_product_list .row .box .data {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  border-left: 4px solid var(--bg-red);
}

.container_product_list .row .box .data h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.container_product_list .row .box .data p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.container_product_list .row .box .data p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.container_product_list .row .box .data .fw-semibold {
  color: var(--text-primary);
  font-weight: 600;
}

.container_product_list .row .box .data .text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.container_product_list .row .box .view-product {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--text-white);
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.container_product_list .row .box .view-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 5, 118, 0.3);
  color: var(--text-white);
}

.details-box {
  background: var(--bg-white);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* position: sticky; */
  /* top: 2rem; */
}

.details-box>p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: var(--small-font-size);
}

.details-box>p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.details-box .card {
  margin-top: 1.5rem;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.details-box .card:hover {
  transform: translateY(-2px);
}

.details-box .card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.details-box .card .card-body {
  padding: 1.5rem;
}

.details-box .card .card-body span {
  color: var(--bg-red);
  font-size: var(--small-font-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.details-box .card .card-body h4 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.details-box .card .card-body .card-text {
  color: var(--text-secondary);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

.details-box .card .card-body:last-child {
  padding-top: 0;
  /* border-top: 1px solid var(--color-hover); */
}

.details-box .card .card-body .card-link {
  color: var(--bg-red);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--small-font-size);
  transition: color 0.3s ease;
}

.details-box .card .card-body .card-link:hover {
  color: var(--text-primary);
}

.details-box .card .card-body small {
  color: var(--text-gray);
  font-size: var(--smaller-font-size);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .container_product_list .row .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .container_product_list .row .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .details-box {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .container_product_list .row .box {
    padding: 1.5rem;
  }

  .container_product_list .row .box h2 {
    font-size: 1.5rem;
  }

  .details-box {
    padding: 1.5rem;
  }

  .container_product_list {
    padding: 0 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .container_product_list .row .box {
    padding: .2rem;
  }

  .container_product_list .row .box h2 {
    font-size: 1.3rem;
  }

  .container_product_list .row .box .data {
    padding: .5rem;
  }

  .details-box {
    padding: 1rem;
  }
}

/* Technology Behind DATA PAGE */

/* nav tabs section - Enhanced with root variables */

.tech-tabs-main-container {
  margin: 50px 0;
  overflow: hidden;
  position: relative;
}


/* Enhanced Tab Navigation */
.tech-tabs-nav-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--body-background) 100%);
  padding: 1rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-hover);
}


.tech-tabs-navigation-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Enhanced Navigation Arrows */
.tech-tabs-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-bg);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.3rem;
  box-shadow: 0 8px 25px var(--shadow);
}

.tech-tabs-nav-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px var(--shadow);
}

.tech-tabs-nav-arrow.tech-tabs-nav-left {
  left: 20px;
}

.tech-tabs-nav-arrow.tech-tabs-nav-right {
  right: 20px;
}

/* Enhanced Tab Menu */
.tech-tabs-menu-list {
  display: flex;
  list-style: none;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 70px;
  margin: 0;
  position: relative;
}

.tech-tabs-menu-list::-webkit-scrollbar {
  display: none;
}

/* Enhanced Tab Buttons */
.tech-tabs-menu-item {
  white-space: nowrap;
  padding: 10px 15px;
  margin: 0 5px;
  /* background: transparent; */
  border: 16px solid var(--btn-bg) !important;
  border-radius: 35px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  min-width: fit-content;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}



.tech-tabs-menu-item:hover {
  border-color: var(--text-primary);
  /* box-shadow: 0 8px 25px var(--shadow); */
  background: var(--body-background);
}



.tech-tabs-menu-item.tech-tabs-active {
  background: var(--btn-bg);
  color: var(--text-white);
  border-color: transparent;
  font-weight: 700;
  transform: translateY(0px) !important;
  /* box-shadow: 0 15px 40px var(--shadow); */
}


/* Enhanced Content Container */
.tech-tabs-content-wrapper {
  padding: 3rem;
  position: relative;
  min-height: 500px;
}

.tech-tabs-content-panel {
  display: none;
  animation: tech-tabs-fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tech-tabs-content-panel.tech-tabs-active {
  display: block;
}

@keyframes tech-tabs-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* challenges-title */
.challenges-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Enhanced Grid Layout */
.tech-tabs-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;

}

/* Enhanced Info Cards */
.tech-tabs-info-card {
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Enhanced Info Cards */
.tech-tabs-info-card {
  padding: 3rem 1rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* .tech-tabs-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--btn-bg);
} */
.image-tech-tabs-info-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-tech-tabs-info-card img {
  border-radius: 10px;
  height: auto;
  width: 80%;
  object-fit: cover;
}

.tech-tabs-info-title {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.tech-tabs-info-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.tech-tabs-info-description p {
  margin-bottom: .5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

.tech-tabs-info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.tech-tabs-info-list li {
  margin-bottom: 2rem;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

.tech-tabs-info-list li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--text-rating);
}

/* Enhanced Overview Image Section */
.tech-tabs-overview-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--body-background) 0%, var(--bg-white) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.tech-tabs-overview-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow);
}

.tech-tabs-overview-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tech-tabs-overview-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Enhanced Challenges Section */
.tech-tabs-challenges-section {
  padding: 2rem 0;
}

.tech-tabs-challenges-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
  position: relative;
}

.tech-tabs-challenges-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.tech-tabs-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.tech-tabs-challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--body-background) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--color-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-tabs-challenge-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--btn-bg);
}

.tech-tabs-challenge-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px var(--shadow);
  background: var(--bg-white);
  border-color: var(--text-primary);
}

.tech-tabs-challenge-icon {
  min-width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-red) 0%, var(--color-red) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(214, 41, 87, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tech-tabs-challenge-item:hover .tech-tabs-challenge-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(214, 41, 87, 0.4);
}

.tech-tabs-challenge-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tech-tabs-challenge-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Enhanced Cell Health Section */
.tech-tabs-cell-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tech-tabs-cell-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--body-background) 100%);
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 50px var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-hover);
}

.tech-tabs-cell-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--btn-bg);
}



.tech-tabs-cell-text h2 {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.tech-tabs-cell-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.tech-tabs-cell-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.tech-tabs-cell-image {
  text-align: center;
  position: relative;
}

.tech-tabs-cell-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px var(--shadow);
  transition: all 0.4s ease;
}

.tech-tabs-cell-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px var(--shadow);
}

/* Enhanced Results Grid */
.tech-tabs-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
}

.tech-tabs-result-card {
  padding: 2rem 1rem;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}


.tech-tabs-result-icon {
  width: 50px;
  height: 50px;
  background: var(--btn-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--text-white);
  font-size: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.tech-tabs-result-icon i {
  font-size: 20px;
}

.tech-tabs-result-icon img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.tech-tabs-result-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.tech-tabs-result-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Enhanced Section Header */
.tech-tabs-section-header {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--card-list-bg), var(--body-background));
  border-radius: 20px;
  border: 2px solid var(--color-hover);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-tabs-section-header::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: var(--btn-bg);
  border-radius: 0 0 8px 8px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .tech-tabs-main-container {
    margin: 1rem 0;
    border-radius: 15px;
  }

  .tech-tabs-nav-wrapper {
    padding: 1.5rem;
  }

  .tech-tabs-menu-list {
    padding: 0 50px;
    gap: 10px;
  }

  .tech-tabs-menu-item {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .tech-tabs-content-wrapper {
    padding: 2rem 1rem;
  }

  .tech-tabs-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;


  }

  .tech-tabs-info-title {
    font-size: 1.5rem;
  }



  .tech-tabs-cell-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .tech-tabs-info-card {
    padding: 2rem .5rem;
  }

  .tech-tabs-section-header {
    font-size: 2rem;
    padding: 1.5rem;
  }

  .tech-tabs-results-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-tabs-challenges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tech-tabs-challenge-item {
    padding: 2rem;
    gap: 1.5rem;
  }

  .tech-tabs-challenge-icon {
    min-width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .tech-tabs-challenges-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .tech-tabs-challenge-content h3 {
    font-size: 1.2rem;
  }

  .image-tech-tabs-info-card img {
    width: 100%;
  }

  .tech-tabs-cell-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .tech-tabs-challenge-item {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .tech-tabs-challenge-icon {
    align-self: center;
  }

  .tech-tabs-cell-text p {
    margin-bottom: .5rem;
  }

  .tech-tabs-cell-text h2 {
    font-size: 1.2rem;
  }
}

/* Focus States for Better Accessibility */
.tech-tabs-menu-item:focus,
.tech-tabs-nav-arrow:focus {
  outline: 3px solid var(--verified);
  outline-offset: 3px;
}

/* Enhanced hover effects for better UX */
.tech-tabs-menu-item:hover,
.tech-tabs-info-card:hover,
.tech-tabs-result-card:hover,
.tech-tabs-challenge-item:hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* product list enhance  */
.section-product-list {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--body-background) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.section-product-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--btn-bg);
  z-index: 1;
}

.section-product-list h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, var(--card-list-bg), var(--body-background));
}

/* Container */
.section-product-list .container-product-list {
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Grid Layout - Maximum 3 products per row */
.section-product-list .row-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  gap: 2.5rem;
  align-items: stretch;
}

/* Ensure maximum 3 columns on large screens */
@media (min-width: 1200px) {
  .section-product-list .row-product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Column */
.section-product-list .col-product-list {
  display: flex;
  width: 100%;
}

/* Product Card */
.section-product-list .product-card {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid var(--color-hover);
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateY(0);
}


/* Product Image */
.section-product-list .product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--body-background) 0%, var(--bg-white) 100%);
}

.section-product-list .product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}


/* Product Badge */
.section-product-list .product-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--btn-bg);
  color: var(--text-white);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 4;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.section-product-list .product-card-badge-sale {
  background: var(--bg-red);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-4px);
  }
}

.section-product-list .product-card-badge-featured {
  background: var(--verified);
}

/* Product Content */
.section-product-list .product-card-content {
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 1.5rem;
}

/* Product Header */
.section-product-list .product-card-header {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

/* Product Title */
.section-product-list .product-card-title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  width: 100%;
  transition: color 0.3s ease;
}



/* Product Description */
.section-product-list .product-card-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.section-product-list .product-card:hover .product-card-description {
  opacity: 1;
}

/* Product Actions - Always in same row */
.section-product-list .product-card-actions,
.product-card-actions-index {
  display: flex;
  gap: .7rem;
  margin-top: auto;
  flex-wrap: nowrap;
}

/* Product Links */
.section-product-list .product-card-actions .product-card-link,
.product-card-actions-index .product-card-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  /* letter-spacing: 0.5px; */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
}

.section-product-list .product-card-actions .product-card-link i,
.product-card-actions-index .product-card-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.section-product-list .product-card-actions .product-card-link:hover i,
.product-card-actions-index .product-card-link:hover i {
  transform: scale(1.2) rotate(5deg);
}

.section-product-list .product-card-actions .product-card-link span,
.product-card-actions-index .product-card-link span {
  transition: transform 0.3s ease;
}

.section-product-list .product-card-actions .product-card-link:hover span,
.product-card-actions-index .product-card-link:hover span {
  transform: translateX(2px);
}

.section-product-list .product-card-actions .product-card-link::before,
.product-card-actions-index .product-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.section-product-list .product-card-actions .product-card-link:hover::before,
.product-card-actions-index .product-card-link:hover::before {
  left: 100%;
}

/* Primary Link - Buy Now */
.section-product-list .product-card-actions .product-card-link-primary,
.purchase-btn,
.product-card-actions-index .product-card-link-primary {
  background: var(--btn-bg);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(184, 5, 118, 0.3);
  border: none;
  border-radius: 25px;
  font-size: .9rem;
}

.section-product-list .product-card-actions .product-card-link-primary:hover,
.purchase-btn:hover,
.product-card-actions-index .product-card-link-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(184, 5, 118, 0.4);
  color: var(--text-white);
}

.section-product-list .product-card-actions .product-card-link-primary i,
.purchase-btn i,
.product-card-actions-index .product-card-link-primary i {
  color: var(--text-white);
}

/* Secondary Link - Product Details */
.section-product-list .product-card-actions .product-card-link-secondary,
.product-card-actions-index .product-card-link-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
  border-radius: 25px;
  font-size: .9rem;
  padding: .5rem 1rem;
}

.section-product-list .product-card-actions .product-card-link-secondary:hover,
.product-card-actions-index .product-card-link-secondary:hover {
  background: var(--text-primary);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--shadow);
}

.section-product-list .product-card-actions .product-card-link-secondary i,
.product-card-actions-index .product-card-link-secondary i {
  color: inherit;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .section-product-list .row-product-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .section-product-list {
    padding: 3rem 0;
  }

  .section-product-list .container-product-list {
    padding: 0 1.5rem;
  }

  .section-product-list .row-product-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    max-width: 700px;
  }

  .section-product-list .product-card-content {
    padding: 2rem 1.5rem 1.5rem;
    gap: 1.2rem;
  }

  .section-product-list .product-card-title {
    font-size: 1.3rem;
  }

  .section-product-list .product-card-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .section-product-list .container-product-list {
    padding: 0 1rem;
  }

  .section-product-list .row-product-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
  }

  .section-product-list .product-card-image {
    height: 220px;
  }

  .section-product-list .product-card-content {
    padding: 1.8rem 1.2rem 1.2rem;
    gap: 1rem;
  }

  .section-product-list .product-card-title {
    font-size: 1.2rem;
  }

  .section-product-list .product-card-description {
    font-size: 0.95rem;
  }

  .section-product-list .product-card-actions {
    gap: 0.8rem;
    flex-wrap: nowrap;
  }

  .section-product-list .product-card-actions .product-card-link,
  .product-card-actions-index .product-card-link {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .section-product-list .product-card-actions .product-card-link i,
  .product-card-actions-index .product-card-link i {
    font-size: 0.9rem;
  }

  .section-product-list .product-card-actions .product-card-link span,
  .product-card-actions-index .product-card-link span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-product-list {
    padding: 2rem 0;
  }

  .section-product-list .container-product-list {
    padding: 0 0.5rem;
  }

  .section-product-list .row-product-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 350px;
  }

  .section-product-list .product-card-content {
    padding: 1.5rem 1rem 1rem;
    gap: 0.8rem;
  }

  .section-product-list .product-card-image {
    height: 200px;
  }

  .section-product-list .product-card-title {
    font-size: 1.1rem;
  }

  .section-product-list .product-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-product-list .product-card-actions,
  .product-card-actions-index {
    gap: 0.6rem;
    flex-direction: column;
  }

  .section-product-list .product-card-actions .product-card-link,
  .product-card-actions-index .product-card-link {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
    gap: 0.3rem;
    min-height: 42px;
  }

  .section-product-list .product-card-actions .product-card-link i,
  .product-card-actions-index .product-card-link i {
    font-size: 0.85rem;
  }

  .section-product-list .product-card-actions .product-card-link span,
  .product-card-actions-index .product-card-link span {
    font-size: 0.75rem;
  }

  .section-product-list .product-card-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
    top: 10px;
    right: 10px;
  }
}

/* Animation on Scroll */
.section-product-list .product-card {
  opacity: 0;
  transform: translateY(40px);
  animation: productFadeInUp 0.8s ease forwards;
}

.section-product-list .col-product-list:nth-child(1) .product-card {
  animation-delay: 0.1s;
}

.section-product-list .col-product-list:nth-child(2) .product-card {
  animation-delay: 0.2s;
}

.section-product-list .col-product-list:nth-child(3) .product-card {
  animation-delay: 0.3s;
}

.section-product-list .col-product-list:nth-child(4) .product-card {
  animation-delay: 0.4s;
}

.section-product-list .col-product-list:nth-child(5) .product-card {
  animation-delay: 0.5s;
}

.section-product-list .col-product-list:nth-child(6) .product-card {
  animation-delay: 0.6s;
}

@keyframes productFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* research section in product details */

.research-section-product-details {
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  /* Changed from fixed width to max-width */
  width: 100%;
  /* Added for responsiveness */
  margin: 0 auto;
}

.research-section-product-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.container-research-section {
  max-width: min(var(--container), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.research-header-product-details {
  text-align: center;
  margin-bottom: 2rem;
}

.research-title-product-details {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 600px;
  /* Changed from fixed width to max-width */
  width: 100%;
  /* Added for responsiveness */
  margin: 0 auto;
}

.research-subtitle-product-details {
  font-size: .9rem;
  color: #111;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}

.research-grid-product-details {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.research-card-product-details {
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-title-product-details {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content-product-details {
  font-size: var(--normal-font-size);
  color: #222;
  line-height: 1.7;
}

.highlight-number-product-details {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--btn-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.cta-button-product-details {
  background: var(--btn-bg);
  color: var(--text-white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(216, 41, 87, 0.3);
}

.cta-button-product-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216, 41, 87, 0.4);
}

.cta-container-product-details {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .research-section-product-details {
    padding: 2rem 1rem;
    /* Reduced padding for tablets */
    width: 100%;
    /* Ensure full width on tablets */
  }

  .research-title-product-details {
    width: 100%;
    /* Full width on tablets */
    font-size: 1.2rem;
    /* Slightly smaller font */
  }

  .research-grid-product-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .research-card-product-details {
    padding: 2rem 1.5rem;
  }

  .highlight-number-product-details {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .research-section-product-details {
    padding: 1.5rem 0.5rem;
    /* Further reduced padding for mobile */
    width: 100%;
  }

  .research-title-product-details {
    font-size: 1.1rem;
    /* Smaller font for mobile */
    width: 100%;
    padding: 0 1rem;
    /* Add some padding for better readability */
    line-height: 1.3;
  }

  .research-header-product-details {
    margin-bottom: 2rem;
    /* Reduced margin */
  }

  .research-card-product-details {
    padding: 1.5rem 1rem;
  }

  .card-title-product-details {
    font-size: 1.1rem;
    /* Smaller title font */
  }

  .card-content-product-details {
    font-size: 0.9rem;
    /* Smaller content font */
  }

  .cta-button-product-details {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
    /* Full width button on mobile */
    max-width: 300px;
    /* But not too wide */
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.research-card-product-details {
  animation: fadeInUp 0.6s ease forwards;
}

.research-card-product-details:nth-child(1) {
  animation-delay: 0.1s;
}

.research-card-product-details:nth-child(2) {
  animation-delay: 0.2s;
}

.research-card-product-details:nth-child(3) {
  animation-delay: 0.3s;
}



/* checkout offcanvas in home page  */
.cart-offcanvas {
  width: 420px;
  max-width: 100%;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header */
.cart-offcanvas .cart-header {
  border-bottom: 1px solid var(--color-hover);
  font-weight: bold;
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-offcanvas .cart-header h5 {
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-red);
}

.cart-offcanvas .cart-subtitle {
  background: var(--bg-red);
  color: var(--text-white);
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: sticky;
  top: 59px;
  z-index: 9;
}

/* Body */
.cart-offcanvas .cart-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-hover) transparent;
}

.cart-offcanvas .cart-body::-webkit-scrollbar {
  width: 6px;
}

.cart-offcanvas .cart-body::-webkit-scrollbar-track {
  background: transparent;
}

.cart-offcanvas .cart-body::-webkit-scrollbar-thumb {
  background: var(--color-hover);
  border-radius: 3px;
}

/* Cart item */
.cart-offcanvas .cart-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.2s ease;
  border: 1px solid var(--color-hover);
  background: var(--body-background);
}

.cart-offcanvas .cart-item:hover {
  box-shadow: 0 2px 8px var(--shadow);
  transform: translateY(-2px);
}

.cart-offcanvas .cart-item .cart-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--color-hover);
  transition: transform 0.2s ease;
}

.cart-offcanvas .cart-item .cart-img:hover {
  transform: scale(1.05);
}

.cart-offcanvas .cart-item .cart-info {
  flex: 1;
}

.cart-offcanvas .cart-item .cart-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 8px;
  color: var(--text-primary);
  line-height: 1.4;
}

.cart-offcanvas .cart-item .cart-price {
  font-size: 16px;
  margin-bottom: 10px;
}

.cart-offcanvas .cart-item .cart-price .price {
  color: var(--bg-red);
  font-weight: bold;
}

.cart-offcanvas .cart-item .cart-price .old-price {
  text-decoration: line-through;
  color: var(--text-gray);
  font-size: 12px;
  margin-left: 8px;
}

.cart-offcanvas .cart-item .quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.cart-offcanvas .cart-item .quantity .qty-btn {
  border: 1px solid var(--color-hover);
  background: var(--bg-white);
  color: var(--text-primary);
  padding: 4px 8px;
  cursor: pointer;
  font-size: 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.cart-offcanvas .cart-item .quantity .qty-btn:hover {
  background: var(--bg-red);
  color: var(--text-white);
  border-color: var(--bg-red);
}

.cart-offcanvas .cart-item .quantity .qty {
  min-width: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.cart-offcanvas .cart-item .deliver {
  font-size: 12px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 8px;
  margin-top: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-offcanvas .cart-item .delete-btn {
  background: none;
  border: none;
  /* color: var(--color-red); */
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  bottom: 12px;
  right: 12px;
  transition: all 0.2s ease;
  padding: 6px;
  border-radius: 50%;
}

.cart-offcanvas .cart-item .delete-btn:hover {
  /* background: rgba(255, 0, 0, 0.1); */
  transform: scale(1.1);
}

/* Footer */
.cart-offcanvas .cart-footer {
  border-top: 1px solid var(--color-hover);
  padding: 15px;
  background: var(--body-background);
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.cart-offcanvas .cart-footer .subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-primary);
}

.cart-offcanvas .cart-footer .subtotal .old-price {
  font-weight: normal;
  font-size: 12px;
  color: var(--text-gray);
  text-decoration: line-through;
  margin-left: 8px;
}

.cart-offcanvas .cart-footer .checkout-btn {
  width: 100%;
  padding: 14px;
  background: var(--bg-red);
  color: var(--text-white);
  border: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-offcanvas .cart-footer .checkout-btn:hover {
  background: var(--background-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow);
}

/* Empty cart */
.cart-offcanvas .empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-primary);
  flex: 1;
}

.cart-offcanvas .empty-cart i {
  font-size: 48px;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.cart-offcanvas .empty-cart p {
  margin-bottom: 20px;
  font-size: 16px;
}

.cart-offcanvas .empty-cart .continue-shopping-btn {
  padding: 10px 20px;
  background: var(--bg-red);
  color: var(--text-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

.cart-offcanvas .empty-cart .continue-shopping-btn:hover {
  background: var(--background-red);
}

.cart-offcanvas hr {
  border: none;
  border-top: 1px solid var(--color-hover);
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 576px) {
  .cart-offcanvas {
    width: 100%;
  }

  .cart-offcanvas .cart-item .cart-title {
    font-size: 13px;
  }

  .cart-offcanvas .cart-item .cart-img {
    width: 70px;
    height: 70px;
  }

  .cart-offcanvas .cart-header {
    padding: 12px;
  }

  .cart-offcanvas .cart-footer {
    padding: 12px;
  }
}

/* checkout offcanvas in home page  */

/* page checkout  */

.checkout-container {
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
}

.checkout-container .checkout-row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.checkout-container .checkout-row .checkout-left {
  flex: 2;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 1px solid var(--color-hover);
}

.checkout-container .checkout-row .checkout-right {
  flex: 1;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 8px 32px var(--shadow);
  border: 1px solid var(--color-hover);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.checkout-container .checkout-row .checkout-left .checkout-section {
  margin-bottom: 35px;
  position: relative;
}

.checkout-container .checkout-row .checkout-left .checkout-section:last-child {
  margin-bottom: 0;
}

.checkout-container .checkout-row .checkout-left .checkout-section h3 {
  color: var(--text-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--bg-card);
  position: relative;
}

.checkout-container .checkout-row .checkout-left .checkout-section h3::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--btn-bg);
  border-radius: 2px;
}

.checkout-container .checkout-row .checkout-left .form-group {
  margin-bottom: 25px;
  position: relative;
}

.checkout-container .checkout-row .checkout-left .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

.checkout-container .checkout-row .checkout-left .form-group input,
.checkout-container .checkout-row .checkout-left .form-group select {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--color-hover);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--body-background);
  color: var(--text-primary);
}

.checkout-container .checkout-row .checkout-left .form-group input:focus,
.checkout-container .checkout-row .checkout-left .form-group select:focus {
  outline: none;
  border-color: var(--bg-red);
  box-shadow: 0 0 0 4px rgba(214, 41, 87, 0.15);
  background: var(--bg-white);
  transform: translateY(-2px);
}

.checkout-container .checkout-row .checkout-left .form-group input::placeholder {
  color: var(--text-secondary);
  /* font-style: italic; */
}

.checkout-container .checkout-row .checkout-left .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.checkout-container .checkout-row .checkout-left .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.checkout-container .checkout-row .checkout-left .checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 15px;
  background: var(--body-background);
  border-radius: 10px;
  border: 1px solid var(--color-hover);
  transition: all 0.3s ease;
}

.checkout-container .checkout-row .checkout-left .checkbox-group:hover {
  background: var(--bg-card);
  border-color: var(--bg-red);
}

.checkout-container .checkout-row .checkout-left .checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--bg-red);
}

.checkout-container .checkout-row .checkout-left .checkbox-group label {
  margin: 0;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
}

.checkout-container .checkout-row .checkout-left .login-link {
  float: right;
  color: var(--bg-red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(214, 41, 87, 0.1);
  transition: all 0.3s ease;
}

.checkout-container .checkout-row .checkout-left .login-link:hover {
  background: rgba(214, 41, 87, 0.2);
  text-decoration: none;
  transform: translateY(-1px);
}

.checkout-container .checkout-row .checkout-right h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.checkout-container .checkout-row .checkout-right .product-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-hover);
  transition: all 0.3s ease;
}

.checkout-container .checkout-row .checkout-right .product-item:hover {
  padding: 20px;
  margin: 0 -20px;
}

.checkout-container .checkout-row .checkout-right .product-item:last-child {
  border-bottom: none;
}

.checkout-container .checkout-row .checkout-right .product-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--color-hover);
  transition: all 0.3s ease;
}

.checkout-container .checkout-row .checkout-right .product-details-checkout {
  flex: 1;
}

.checkout-container .checkout-row .checkout-right .product-name-check {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.4;
}

.checkout-container .checkout-row .checkout-right .product-price {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 16px;
}

.checkout-container .checkout-row .checkout-right .product-original-price {
  text-decoration: line-through;
  color: var(--text-gray);
  margin-right: 12px;
  font-size: 14px;
}

.checkout-container .checkout-row .checkout-right .product-discount {
  color: var(--verified);
  font-size: 14px;
  font-weight: 600;
}

.checkout-container .checkout-row .checkout-right .quantity-badge {
  background: var(--btn-bg);
  color: var(--text-white);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--shadow);
}

.checkout-container .checkout-row .checkout-right .discount-input {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  padding: 20px;
  background: var(--body-background);
  border-radius: 15px;
  border: 1px solid var(--color-hover);
}

.checkout-container .checkout-row .checkout-right .discount-input input {
  flex: 1;
  border: 2px solid var(--color-hover);
  background: var(--bg-white);
  font-weight: 500;
  border-radius: 10px;
  padding: 10px;
}

.checkout-container .checkout-row .checkout-right .discount-input button {
  padding: 15px 25px;
  background: var(--bg-red);
  color: var(--text-white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.checkout-container .checkout-row .checkout-right .discount-input button:hover {
  background: var(--background-red);
  transform: translateY(-2px);
}

.checkout-container .checkout-row .checkout-right .order-summary {
  background: var(--body-background);
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
  border: 1px solid var(--color-hover);
}

.checkout-container .checkout-row .checkout-right .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-hover);
}

.checkout-container .checkout-row .checkout-right .summary-row:last-child {
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 2px solid var(--color-hover);
  border-bottom: none;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
}

.checkout-container .checkout-row .checkout-right .summary-row.total-savings {
  color: var(--bg-red);
  font-weight: 700;
  font-size: 18px;
  background: var(--bg-card);
  padding: 12px 15px;
  border-radius: 8px;
  margin: 15px 0;
  border: 1px solid rgba(214, 41, 87, 0.2);
}

.checkout-container .checkout-row .checkout-left .checkout-section .pay-methods {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
}

.checkout-container .checkout-row .checkout-left .checkout-section .pay-methods .pay-method {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  margin-right: 10px;
  padding: 20px;
  border: 2px solid var(--color-hover);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--body-background);
}

.checkout-container .checkout-row .checkout-left .checkout-section .pay-methods .pay-method:hover {
  border-color: var(--bg-red);
  background: rgba(214, 41, 87, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow);
}

.checkout-container .checkout-row .checkout-left .checkout-section .pay-methods .pay-method input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--bg-red);
}

[type=radio]:checked,
[type=radio]:checked:focus {
  background-color: var(--bg-red) !important;
  accent-color: var(--bg-red) !important;
}

.checkout-container .checkout-row .checkout-right .pay-method label {
  margin: 0;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  cursor: pointer;
}

.checkout-container .checkout-row .checkout-right .pay-method.selected {
  border-color: var(--bg-red);
  background: rgba(214, 41, 87, 0.1);
  box-shadow: 0 4px 15px var(--shadow);
}

.checkout-container .checkout-row .checkout-right .checkout-button {
  width: 100%;
  padding: 18px;
  background: var(--bg-red);
  color: var(--text-white);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-container .checkout-row .checkout-right .checkout-button:hover {
  background: var(--background-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow);
}

.checkout-container .checkout-row .checkout-right .checkout-button:disabled {
  background: var(--text-gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .checkout-container {
    max-width: 100%;
    margin: 30px auto;
    padding: 0 15px;
  }

  .checkout-container .checkout-row {
    gap: 25px;
  }

  .checkout-container .checkout-row .checkout-left,
  .checkout-container .checkout-row .checkout-right {
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .checkout-row {
    flex-direction: column;
    gap: 25px;
  }

  .checkout-container .checkout-row .checkout-right {
    position: static;
  }

  .checkout-container .checkout-row .checkout-left .form-row {
    flex-direction: column;
    gap: 0;
  }

  .checkout-container .checkout-row .checkout-left .form-row .form-group {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .checkout-container {
    margin: 20px auto;
    padding: 0 10px;
  }

  .checkout-container .checkout-row .checkout-left,
  .checkout-container .checkout-row .checkout-right {
    padding: 20px;
  }

  .checkout-container .checkout-row .checkout-left .checkout-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .checkout-container .checkout-row .checkout-left .form-group input,
  .checkout-container .checkout-row .checkout-left .form-group select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .checkout-container .checkout-row .checkout-right .discount-input {
    flex-direction: column;
    gap: 10px;
  }

  .checkout-container .checkout-row .checkout-right .discount-input button {
    width: 100%;
  }

  .checkout-container .checkout-row .checkout-right .product-item {
    text-align: left;
    gap: 15px;
  }

  .checkout-container .checkout-row .checkout-right .product-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {

  .checkout-container .checkout-row .checkout-left,
  .checkout-container .checkout-row .checkout-right {
    padding: 15px;
  }

  .checkout-container .checkout-row .checkout-left .checkout-section h3 {
    font-size: 18px;
  }

  .checkout-container .checkout-row .checkout-left .form-group label {
    font-size: 13px;
  }

  .checkout-container .checkout-row .checkout-right .checkout-button {
    padding: 15px;
    font-size: 16px;
  }

  .checkout-container .checkout-row .checkout-left .checkout-section .pay-methods {
    display: block;
  }

  .offcanvas-mobile,
  .offcanvas.offcanvas-end {
    width: 80% !important;
  }
}

/* Enhanced animations */
.checkout-container .checkout-row .checkout-left,
.checkout-container .checkout-row .checkout-right {
  animation: fadeInUp 0.6s ease-out;
}

.checkout-container .checkout-row .checkout-left .checkout-section {
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.checkout-container .checkout-row .checkout-left .checkout-section:nth-child(1) {
  animation-delay: 0.1s;
}

.checkout-container .checkout-row .checkout-left .checkout-section:nth-child(2) {
  animation-delay: 0.2s;
}

.checkout-container .checkout-row .checkout-left .checkout-section:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced focus states */
.checkout-container .checkout-row .checkout-left .form-group:focus-within label {
  color: var(--bg-red);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Enhanced hover effects */
.checkout-container .checkout-row .checkout-right .product-item:hover .product-details-checkout {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* Loading state for button */
.checkout-container .checkout-row .checkout-right .checkout-button.loading {
  position: relative;
  color: transparent;
}

.checkout-container .checkout-row .checkout-right .checkout-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.coming-soon-large {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  margin: 0rem auto;
}

.purchase-notice p {
  color: var(--text-primary);
}

/* Privacy Policy Section */
.privacy-policy {
  padding: 40px 0;
}

.privacy-policy .container-privacy {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 15px;
}

.privacy-policy .container-privacy h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
}

.privacy-policy .container-privacy h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--bg-red), var(--text-rating));
  border-radius: 2px;
}

.privacy-policy .container-privacy>p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 40px;
}

.privacy-policy .row {
  margin: 0;
}

.privacy-policy .row .col-lg-12,
.privacy-policy .row .col-md-10,
.privacy-policy .row .col-sm-12 {
  padding: 0;
}

.privacy-policy .row .col-lg-12 .mb-4 {
  margin-bottom: 40px;
  padding: 30px;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.privacy-policy .row .col-lg-12 .mb-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-policy .row .col-lg-12 .mb-4 h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-red);
  display: inline-block;
}

.privacy-policy .row .col-lg-12 .mb-4 p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 15px;
  text-align: justify;
}

.privacy-policy .row .col-lg-12 .mb-4 ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.privacy-policy .row .col-lg-12 .mb-4 ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.privacy-policy .row .col-lg-12 .mb-4 ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bg-red);
  font-weight: bold;
  font-size: 1.2rem;
}

.privacy-policy .row .col-lg-12 .mb-4 ul li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy-policy .row .col-lg-12 .mb-4 p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy-policy .row .col-lg-12 .mb-4 a {
  color: var(--bg-red);
  text-decoration: underline !important;
  transition: all 0.3s ease;
  font-weight: 500;
}

.privacy-policy .row .col-lg-12 .mb-4 a:hover {
  color: var(--text-rating);
  text-decoration: none !important;
}

.privacy-policy .row .col-lg-12 .mb-4:last-child {
  margin-bottom: 0;
}

/* Responsive Design for Privacy Policy */
@media screen and (max-width: 1024px) {
  .privacy-policy {
    padding: 60px 0;
  }

  .privacy-policy .container-privacy {
    padding: 40px 50px;
  }

  .privacy-policy .container-privacy h2 {
    font-size: 2.3rem;
  }

  .privacy-policy .row .col-lg-12 .mb-4 {
    padding: 25px;
  }

  .privacy-policy .row .col-lg-12 .mb-4 h3 {
    font-size: 1.4rem;
  }

  .privacy-policy .row .col-lg-12 .mb-4 p,
  .privacy-policy .row .col-lg-12 .mb-4 ul li {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .privacy-policy {
    padding: 40px 0;
  }

  .privacy-policy .container-privacy {
    padding: 30px 25px;
    border-radius: 10px;
  }

  .privacy-policy .container-privacy h2 {
    font-size: 2rem;
  }

  .privacy-policy .container-privacy h2::after {
    width: 60px;
    height: 3px;
  }

  .privacy-policy .container-privacy>p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .privacy-policy .row .col-lg-12 .mb-4 {
    padding: 20px;
    margin-bottom: 25px;
  }

  .privacy-policy .row .col-lg-12 .mb-4 h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .privacy-policy .row .col-lg-12 .mb-4 p,
  .privacy-policy .row .col-lg-12 .mb-4 ul li {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .privacy-policy .row .col-lg-12 .mb-4 ul li {
    padding-left: 25px;
  }

  .privacy-policy .row .col-lg-12 .mb-4 ul li::before {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .privacy-policy {
    padding: 30px 0;
  }

  .privacy-policy .container-privacy {
    padding: 20px 15px;
  }

  .privacy-policy .container-privacy h2 {
    font-size: 1.7rem;
  }

  .privacy-policy .container-privacy h2::after {
    width: 50px;
  }

  .privacy-policy .container-privacy>p {
    font-size: 0.85rem;
  }

  .privacy-policy .row .col-lg-12 .mb-4 {
    padding: 15px;
    margin-bottom: 20px;
  }

  .privacy-policy .row .col-lg-12 .mb-4 h3 {
    font-size: 1.15rem;
  }

  .privacy-policy .row .col-lg-12 .mb-4 p,
  .privacy-policy .row .col-lg-12 .mb-4 ul li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .privacy-policy .row .col-lg-12 .mb-4 ul li {
    padding-left: 20px;
    margin-bottom: 12px;
  }
}

/* Pharmacovigilance page  */

.pharmacovigilance_questions-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pharmacovigilance_section-header {
  text-align: center;
  margin-bottom: 50px;
}

.pharmacovigilance_section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.pharmacovigilance_section-header p {
  color: #6b7280;
  font-size: 1.1rem;
}

.pharmacovigilance_accordion-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pharmacovigilance_accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* === CSS-ONLY ACCORDION STYLES === */
.pharmacovigilance_accordion-toggle {
  display: none;
}

.pharmacovigilance_accordion-header {
  display: block;
  padding: 25px;
  cursor: pointer;
  background: white;
  border: none;
  transition: background 0.3s ease;
}

.pharmacovigilance_accordion-header:hover {
  background: #f9fafb;
}

.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header {
  background: linear-gradient(135deg, #d62957 0%, #b91c4a 100%);
}

.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_question-header,
.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_user-info h5,
.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_user-info p,
.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_question-text,
.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_question-date {
  color: white !important;
}

.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_user-avatar {
  background: white;
  color: #d62957;
}

.pharmacovigilance_question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.pharmacovigilance_user-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pharmacovigilance_user-avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d62957 0%, #b91c4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.pharmacovigilance_user-info h5 {
  margin: 0;
  font-size: 1.1rem;
  color: #1f2937;
  font-weight: 600;
}

.pharmacovigilance_user-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.pharmacovigilance_accordion-icon {
  font-size: 1.5rem;
  color: #d62957;
  transition: transform 0.3s ease;
}

.pharmacovigilance_accordion-toggle:checked+.pharmacovigilance_accordion-header .pharmacovigilance_accordion-icon {
  color: white;
  transform: rotate(180deg);
}

.pharmacovigilance_question-content {
  padding-left: 0;
}

.pharmacovigilance_question-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 10px;
}

.pharmacovigilance_question-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pharmacovigilance_question-date {
  font-size: 0.85rem;
  color: #9ca3af;
}

.pharmacovigilance_accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9fafb;
}

.pharmacovigilance_accordion-toggle:checked~.pharmacovigilance_accordion-body {
  max-height: 1000px;
}

.pharmacovigilance_answer-content {
  padding: 25px;
  border-top: 2px solid #e5e7eb;
}

.pharmacovigilance_answer-label {
  display: inline-block;
  background: linear-gradient(135deg, #d62957 0%, #b91c4a 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.pharmacovigilance_answer-text {
  color: #374151;
  line-height: 1.8;
  font-size: 1rem;
}

.pharmacovigilance_ask-btn-app {
  display: flex;
  justify-content: right;
  align-items: right;
  gap: 20px;
}

.pharmacovigilance_ask-btn {
  border-radius: 20px;
  background: linear-gradient(135deg, #d62957 0%, #b91c4a 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(214, 41, 87, 0.4);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 12px;
  transition: all 0.3s ease;
  z-index: 1000;
  margin-bottom: 15px;
}

.pharmacovigilance_ask-btn:hover {
  background: linear-gradient(135deg, #b91c4a 0%, #d62957 100%);
  transform: translateY(-2px);
}

/* Modal Styles (unchanged – still uses Bootstrap JS, but accordion doesn't) */
.modal-content-ask {
  border-radius: 20px;
}

.pharmacovigilance_modal-header {
  background: linear-gradient(135deg, #d62957 0%, #b91c4a 100%);
  color: white;
  padding: 15px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pharmacovigilance_modal-header h5 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.pharmacovigilance_modal-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.pharmacovigilance_modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pharmacovigilance_modal-body {
  padding: 20px 15px;
}

.pharmacovigilance_form-label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
  display: block;
}

.pharmacovigilance_form-control,
.pharmacovigilance_form-select {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  padding: 12px;
  transition: border-color 0.3s ease;
  font-size: 1rem;
}

.pharmacovigilance_form-control:focus,
.pharmacovigilance_form-select:focus {
  outline: none;
  border-color: #d62957;
  box-shadow: 0 0 0 0.2rem rgba(214, 41, 87, 0.25);
}

.pharmacovigilance_form-group {
  margin-bottom: 10px;
}

.pharmacovigilance_submit-btn {
  background: linear-gradient(135deg, #d62957 0%, #b91c4a 100%);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
}

.pharmacovigilance_submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 41, 87, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .pharmacovigilance_questions-section {
    padding: 40px 0;
  }

  .pharmacovigilance_section-header h2 {
    font-size: 2rem;
  }

  .pharmacovigilance_accordion-header {
    padding: 20px 15px;
  }

  .pharmacovigilance_user-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .pharmacovigilance_user-info h5 {
    font-size: 1rem;
  }

  .pharmacovigilance_user-info p {
    font-size: 0.8rem;
  }

  .pharmacovigilance_question-text {
    font-size: 0.95rem;
  }

  .pharmacovigilance_modal-header {
    padding: 10px;
  }

  .pharmacovigilance_modal-header h5 {
    font-size: 1.3rem;
  }

  .pharmacovigilance_answer-content {
    padding: 20px 15px;
  }

  .pharmacovigilance_question-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pharmacovigilance_accordion-icon {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .pharmacovigilance_section-header h2 {
    font-size: 1.75rem;
  }

  .pharmacovigilance_section-header p {
    font-size: 1rem;
  }

  .pharmacovigilance_user-section {
    gap: 10px;
  }

  .pharmacovigilance_modal-header h5 {
    font-size: 1.1rem;
  }
}


/* related Article */

.section-related-articles {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.section-related-articles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23cbd5e0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23a0aec0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* Articles Container */
.section-related-articles .articles-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-related-articles .articles-header {
  margin-bottom: 3rem;
}

.section-related-articles .articles-header .header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 15px;
}

.section-related-articles .articles-header .articles-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-related-articles .articles-header .articles-subtitle {
  font-size: 1.1rem;
  color: #606b7b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Articles Grid */
.section-related-articles .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 1rem;
}

/* Article Card */
.section-related-articles .article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

/* Card Media */
.section-related-articles .article-card .card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}

.section-related-articles .article-card .card-media .article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.section-related-articles .article-card .card-media .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-related-articles .article-card:hover .card-media .card-overlay {
  opacity: 1;
}

.section-related-articles .article-card .card-media .read-time {
  background: rgba(255, 255, 255, 0.9);
  color: #4a5568;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(10px);
}

.section-related-articles .article-card .card-media .read-time i {
  font-size: 0.8rem;
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  backdrop-filter: blur(10px);
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge.health {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge.nutrition {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.section-related-articles
  .article-card
  .card-media
  .article-category
  .category-badge.lifestyle {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Card Content */
.section-related-articles .article-card .card-content {
  padding: 1.5rem;
}

.section-related-articles .article-card .card-content .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 10px;
}

.section-related-articles .article-card .card-content .article-meta span {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-related-articles .article-card .card-content .article-meta i {
  font-size: 0.8rem;
  color: #94a3b8;
}

.section-related-articles .article-card .card-content .article-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.section-related-articles .article-card .card-content .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn {
  background-color: var(--bg-red);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
  color: white;
  text-decoration: none;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn
  i {
  transition: transform 0.3s ease;
}

.section-related-articles
  .article-card
  .card-content
  .card-actions
  .read-more-btn:hover
  i {
  transform: translateX(3px);
}

/* Articles Footer */
.section-related-articles .articles-footer .view-all-articles-btn {
  background: white;
  color: var(--bg-red);
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--bg-red);
  font-size: 1rem;
}

.section-related-articles .articles-footer .view-all-articles-btn:hover {
  background: var(--bg-red);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  text-decoration: none;
}

.section-related-articles .articles-footer .view-all-articles-btn i {
  transition: transform 0.3s ease;
}

.section-related-articles .articles-footer .view-all-articles-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-related-articles .articles-container {
      padding: 0 15px;
  }

  .section-related-articles .articles-header .articles-main-title {
      font-size: 2rem;
  }

  .section-related-articles .articles-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .section-related-articles .article-card .card-content {
      padding: 1.25rem;
  }

  .section-related-articles .article-card .card-content .article-meta {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
  }

  .section-related-articles .article-card .card-content .card-actions {
      gap: 15px;
      align-items: stretch;
  }

  .section-related-articles
      .article-card
      .card-content
      .card-actions
      .social-share {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .section-related-articles
      .articles-header
      .header-decoration
      .decoration-line {
      width: 40px;
  }

  .section-related-articles .articles-header .header-decoration .header-icon {
      font-size: 1.5rem;
      padding: 12px;
  }

  .section-related-articles .articles-header .articles-main-title {
      font-size: 1.75rem;
  }

  .section-related-articles .article-card .card-media {
      height: 180px;
  }

  .section-related-articles .article-card .card-content .article-title {
      font-size: 1.1rem;
  }
}
/* end related Article */




/* Articles page specific styles */
.articles-hero-actives {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
      var(--footer-bg) 0%,
      var(--secondary) 50%,
      var(--accent-teal) 100%
      );
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  }

.articles-hero-actives::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(6,144,162,0.15);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(6,144,162,0);stop-opacity:0" /></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23grad)"/><circle cx="800" cy="400" r="150" fill="url(%23grad)"/><circle cx="400" cy="800" r="120" fill="url(%23grad)"/></svg>')
      center/cover;
  animation: float 8s ease-in-out infinite;
  }

@keyframes float {
  0%, 100% {
      transform: translateY(0px) rotate(0deg) scale(1);
      opacity: 0.8;
  }
  25% {
      transform: translateY(-15px) rotate(2deg) scale(1.02);
      opacity: 1;
  }
  50% {
      transform: translateY(-25px) rotate(5deg) scale(1.05);
      opacity: 0.9;
  }
  75% {
      transform: translateY(-15px) rotate(3deg) scale(1.02);
      opacity: 1;
  }
}

.hero-content-actives {
  text-align: center;
  z-index: 2;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
  opacity: 0;
  transform: translateY(30px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}

.hero-content-actives h1 {
font-size: 3.5rem;
font-weight: 900;
color: var(--text-white);
margin-bottom: 1rem;
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from {
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  to {
      text-shadow: 0 4px 25px rgba(6, 144, 162, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
}
        }

.hero-content-actives p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;  
  animation: fadeInUp 1s ease-out 0.3s both; 
 }

.articles-container-actives {
    padding: 4rem 0;
    background: var(--bg-white);
}

.articles-grid-actives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem; 
}

.article-card-actives {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--bg-card);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    position: relative;
    animation: cardFadeIn 0.6s ease-out;  
}

        .article-card-actives:nth-child(1) { animation-delay: 0.1s; }
        .article-card-actives:nth-child(2) { animation-delay: 0.2s; }
        .article-card-actives:nth-child(3) { animation-delay: 0.3s; }
        .article-card-actives:nth-child(4) { animation-delay: 0.4s; }
        .article-card-actives:nth-child(5) { animation-delay: 0.5s; }
        .article-card-actives:nth-child(6) { animation-delay: 0.6s; }

        @keyframes cardFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .article-card-actives::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(6, 144, 162, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .article-card-actives:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 25px 50px rgba(6, 144, 162, 0.25), 0 15px 35px rgba(0, 0, 0, 0.3);
            border-color: transparent;
            background: rgba(255, 255, 255, 0.12);
        }

        .article-card-actives:hover::before {
            opacity: 1;
        }

        .article-image-actives {
            height: 250px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .article-image-actives img {
            width: 100%;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Fallback styles for articles without images */
        .article-image-actives:not(:has(img))::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .article-image-actives:not(:has(img))::after {
            content: "\f15c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .article-card-actives:hover .article-image-actives:not(:has(img))::before {
            background: rgba(6, 144, 162, 0.3);
            transform: translate(-50%, -50%) scale(1.1);
        }

          .article-card-actives:hover .article-image-actives:not(:has(img))::after {
            color: var(--accent-teal);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .article-content-actives {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .article-category-actives {
            display: inline-block;
            background: #ddd;
            color: #000;
            padding: 0.4rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px #ddd;
        }


        .article-title-actives {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        .article-excerpt-actives {
            color: var(--text-dark);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            transition: color 0.3s ease;
        }

        .article-meta-actives {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: .5rem;
            border-top: 1px solid var(--bg-card);
            transition: border-color 0.3s ease;
        }

        .article-card-actives:hover .article-meta-actives {
            border-color: var(--bg-card);
        }

        .article-date-actives {
            color: var(--text-dark);
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .article-card-actives:hover .article-date-actives {
            color: var(--text-dark);
        }

        .read-more-actives {
            color: var(--bg-red);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 10px;
            background: var(--bg-card);
        }

        .read-more-actives::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-red);
            border-radius: 10px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            z-index: -1;
        }

          .read-more-actives:hover {
            color: white;
            transform: translateX(5px);
        }

        .read-more-actives:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .section-title-actives {
            text-align: center;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        .section-title-actives h2 {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--text-white), var(--bg-red));
            -webkit-background-clip: text;
            /* -webkit-text-fill-color: transparent; */
            background-clip: text;
        }

        .section-title-actives p,
        .section-product-list-description {
            color: var(--text-dark);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content-actives h1 {
                font-size: 2.5rem;
            }

            .hero-content-actives p {
                font-size: 1rem;
                padding: 0 1rem;
            }

            .articles-grid-actives {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .section-title-actives h2 {
                font-size:22px;
            }
        }

        @media (max-width: 480px) {
            .articles-hero-actives {
                height: 40vh;
            }

            .hero-content-actives h1 {
                font-size: 2rem;
            }

            .articles-container-actives {
                padding: 2rem 0;
            }

            .articles-grid-actives {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .article-content-actives {
              padding: 1rem .5rem;
            }
        }

/* ==============================
  SINGLE ARTICLE PAGE STYLES
   ============================== */

/* Article Main Container */
.article-main-actives {
    
    padding: 2rem 0;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Article Header */
.article-header-actives {
    margin-bottom: 2rem;
    text-align: center;
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-breadcrumb-actives {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.article-breadcrumb-actives .breadcrumb-link-actives {
    color: var(--bg-red);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.article-breadcrumb-actives .breadcrumb-link-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    border-radius: 15px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* .article-breadcrumb-actives .breadcrumb-link-actives:hover {
    color: var(--text-white);
    transform: translateX(5px);
} */

.article-breadcrumb-actives .breadcrumb-link-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.article-breadcrumb-actives .breadcrumb-separator-actives {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.article-breadcrumb-actives .breadcrumb-current-actives {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.article-meta-info-actives {
    margin-bottom: 1rem;
}

.article-category-badge-actives {
    display: inline-block;
    background: linear-gradient(135deg, var(--bg-red), #0580a0);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--bg-red);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px var(--bg-red);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px var(--bg-red);
    }
}

  .article-meta-details-actives {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* .article-meta-details-actives span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
} */

.article-title-main-actives {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    /* background: linear-gradient(135deg, var(--text-dark), var(--bg-red)); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    /* animation: titleGlow 3s ease-in-out infinite alternate; */
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 5px var(--bg-red));
    }
    to {
        filter: drop-shadow(0 0 15px var(--bg-red));
    }
}

.article-subtitle-actives {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Image */
.article-featured-image-actives {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.featured-image-container-actives {
    position: relative;
    width: 100%;
    height: 450px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px var(--bg-card);
    transition: all 0.4s ease;
    animation: imageSlideIn 1s ease-out 0.5s both;
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.featured-image-actives {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.featured-image-container-actives:hover .featured-image-actives {
    transform: scale(1.05);
}

.featured-image-container-actives:hover {
    box-shadow: 0 35px 70px var(--bg-card), 0 25px 50px var(--bg-card);
}

.image-overlay-actives {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--bg-card));
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.featured-image-container-actives:hover .image-overlay-actives {
    opacity: 1;
}

.image-caption-actives {
    color: white;
    font-size: 1rem;
    text-align: center;
}

/* Article Content Wrapper */
    .article-content-wrapper-actives {
    margin-top: 3rem;
}

.article-content-main-actives {
    /* background: var(--bg-card); */
    /* border-radius: 20px; */
    padding: 3rem 1rem;
    /* border: 2px solid var(--bg-card); */
    transition: all 0.4s ease;
    animation: contentSlideIn 1s ease-out 0.8s both;
      /* box-shadow: 0 15px 35px var(--bg-card); */
}

@keyframes contentSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Content Sections */
.content-section-actives {
    margin-bottom: 3rem;
}

.content-heading-actives {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    transition: all 0.3s ease;
}

.content-heading-actives::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bg-red), #0580a0);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.content-heading-actives:hover::after {
    width: 80px;
}

.content-heading-actives:hover {
    color: var(--bg-red);
    transform: translateX(10px);
}

.content-paragraph-actives {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Quote Styling */
.content-quote-actives {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card));
    border-left: 5px solid var(--bg-red);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 0 15px 15px 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-quote-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, var(--bg-card) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.content-quote-actives:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card));
    box-shadow: 0 10px 30px var(--bg-card);
}

    .content-quote-actives:hover::before {
    transform: translateX(0);
}

.quote-text-actives {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author-actives {
    color: var(--bg-red);
    font-weight: 600;
}

/* Strategy List */
.strategy-list-actives {
    margin-top: 2rem;
}

.strategy-item-actives {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 2px solid var(--bg-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.strategy-item-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, var(--bg-card) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.strategy-item-actives:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--bg-card);
    border-color: var(--bg-card);
    box-shadow: 0 15px 35px var(--bg-card);
}

.strategy-item-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.strategy-number-actives {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--bg-red), #0580a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--bg-red);
    position: relative;
    z-index: 2;
}

.strategy-item-actives:hover .strategy-number-actives {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px var(--bg-red);
}

.strategy-title-actives {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.strategy-description-actives {
    color: var(--text-dark);
    line-height: 1.6;
}


/* Social Share */
      .social-share-actives {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--bg-card);
}

.share-heading-actives {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons-actives {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button-actives {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.share-button-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-card);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.share-button-actives.facebook-actives {
    background: #1877f2;
    color: white;
}

.share-button-actives.twitter-actives {
    background: #1da1f2;
    color: white;
}

.share-button-actives.linkedin-actives {
    background: #0077b5;
    color: white;
}

.share-button-actives.email-actives {
    background: var(--bg-red);
    color: white;
}

.share-button-actives:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px var(--bg-card);
    color: white;
}

.share-button-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

/* Sidebar */
.article-sidebar-actives {
    padding-left: 2rem;
}

    .sidebar-section-actives {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--bg-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* .sidebar-section-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, var(--bg-card) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
} */

.sidebar-section-actives:hover {
    transform: translateY(-5px);

}

.sidebar-section-actives:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.sidebar-heading-actives {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-heading-actives::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bg-red);
}

/* Related Articles */
.related-articles-actives {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.related-item-actives {
    display: flex;
    gap: 1.5rem;
    padding: .5rem;
    /* background: var(--bg-card); */
    border-radius: 15px;
    transition: all 0.4s ease;
    /* border: 2px solid var(--bg-card); */
    position: relative;
    overflow: hidden;
}

/* .related-item-actives::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, var(--bg-card) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
} */

.related-item-actives:hover {
    background: var(--bg-card);
    transform: translateX(8px) scale(1.02);
    border-color: var(--bg-card);
    box-shadow: 0 10px 25px var(--bg-card);
}

.related-item-actives:hover::before {
    transform: scaleX(1);
    transform-origin: right;
}

.related-image-actives {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image-actives img {
    width: 100%;
    height: 100%;
    
}

.related-title-actives {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-date-actives {
    font-size: 0.85rem;
      color: var(--text-dark);
}

/* Newsletter */
/* .newsletter-actives {
    text-align: center;
}

.newsletter-description-actives {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form-actives {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-actives {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-input-actives:focus {
    outline: none;
    border-color: var(--bg-red);
    background: var(--bg-card);
}

.newsletter-input-actives::placeholder {
    color: var(--text-dark);
}

    .newsletter-button-actives {
    background: var(--bg-red);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
        color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-button-actives:hover {
        background: var(--bg-red);
    transform: translateY(-2px);
} */

/* Responsive Design for Article Page */
@media (max-width: 1200px) {
  .featured-image-container-actives{
    height: auto;
  }
}
@media (max-width: 768px) {
    .article-main-actives {
        padding: 1rem 0;
    }
    
    .article-title-main-actives {
        font-size: 2rem;
    }
    
    .article-subtitle-actives {
        font-size: 1rem;
    }
    
    .article-content-main-actives {
        padding: 1rem .5rem;
    }
    
    .benefits-grid-actives {
        grid-template-columns: 1fr;
    }
    
    .strategy-item-actives {
        flex-direction: column;
        text-align: center;
    }
    
    .article-sidebar-actives {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .article-meta-details-actives {
        flex-direction: column;
        gap: 0.5rem;
    }

    
    /* .share-buttons-actives {
        justify-content: center;
    } */
}

@media (max-width: 480px) {
    .article-header-actives {
        margin-bottom: 2rem;
    }
    
    .article-title-main-actives {
        font-size: 1.8rem;
    }
    
    .content-heading-actives {
        font-size: 1.5rem;
    }
    
    .article-content-main-actives {
        padding: 1rem .5rem;
    }
    
    .benefit-item-actives,
    .strategy-item-actives {
        padding: 1rem;
    }
    
    .sidebar-section-actives {
        padding: 1rem;
    }
}

/* Related Papers Section */
.related-papers-section {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 32px var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.related-papers-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.related-papers-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--bg-red);
    border-radius: 2px;
}

.related-papers-list {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.related-paper-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-paper-item:hover {
    background: var(--bg-card);
    transform: translateX(5px);
}

.related-paper-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-paper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-paper-item:hover .related-paper-image img {
    transform: scale(1.1);
}

.related-paper-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-paper-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-paper-item:hover .related-paper-title {
    color: var(--bg-red);
}

.related-paper-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 991.98px) {
    .related-papers-section {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .related-papers-section {
        padding: 1.25rem;
    }
    
    .related-papers-title {
        font-size: 1.2rem;
    }
    
    .related-paper-item {
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .related-paper-image {
        width: 70px;
        height: 70px;
    }
    
    .related-paper-title {
        font-size: 0.9rem;
    }
    
    .related-paper-date {
        font-size: 0.8rem;
    }
}

/* Pharmacovigilance Notes */


.thunderdome__page,
.thunderdome__page * {
    font-style: normal !important;
}
.thunderdome__page {
  padding: 40px 0 ;
  color: var(--text-primary);
  font-style: normal !important;
  overflow-x: clip;
}

/* ── Hero heading ── */
.thunderdome__page .wraith__hero {
  padding: 0;
  max-width: 1300px;
  margin: 0 auto;
}

.thunderdome__page .wraith__hero .wraith__hero--eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}



.thunderdome__page .wraith__hero .wraith__hero--title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.18;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.thunderdome__page .wraith__hero .wraith__hero--title em {
  font-style: normal;
  background: var(--btn-bg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--bg-red);
}

.thunderdome__page .wraith__hero .wraith__hero--sub {
  margin-top: 18px;
  font-size: var(--normal-font-size);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 540px;
}

/* ── Main 2-col grid ── */
.thunderdome__page .marrow__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
  min-width: 0;
}

.thunderdome__page .marrow__grid > * {
  min-width: 0;
}

/* ================================================
   LEFT COLUMN — .marrow__grid .nebula__cradle
================================================ */
.thunderdome__page .marrow__grid .nebula__cradle {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Search bar */
.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(102, 112, 133, 0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}



.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--icon {
  padding: 0 18px;
  color: var(--text-gray);
  font-size: 1.1rem;
  flex-shrink: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-primary);
}

.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--input::placeholder {
  color: var(--text-secondary);
}

.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--btn {
  background: var(--btn-bg);
  background-size: 200% 100%;
  background-position: 0% 0%;
  border: none;
  padding: 16px 26px;
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-white);
  cursor: pointer;
  transition: background-position 0.35s ease, transform 0.2s ease;
  text-transform: uppercase;
  flex-shrink: 0;
}

.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--btn:hover {
  background-position: 100% 0%;
}

.thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--btn:active {
  transform: scale(0.97);
}

/* Upload drop zone */
.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop {
  border: 2px dashed rgba(214, 41, 87, 0.35);
  border-radius: 20px;
  background: var(--bg-white);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--shadow);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}


.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop.ghostship__drop--active {
  border-color: var(--bg-red);
  background: rgba(214, 41, 87, 0.04);
  transform: scale(1.01);
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 41, 87, 0.12), rgba(64, 18, 234, 0.08));
  border: 1px solid rgba(214, 41, 87, 0.22);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-red);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 1;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop:hover .ghostship__drop--icon {
  transform: translateY(-5px);
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--sub {
  font-size: var(--small-font-size);
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--sub strong {
  color: var(--bg-red);
  font-weight: 700;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--formats {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--formats .ghostship__drop--tag {
  font-family: var(--body-font);
  font-size: var(--smaller-font-size);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid rgba(102, 112, 133, 0.15);
  color: var(--text-secondary);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--formats .ghostship__drop--tag:hover {
  background: var(--bg-red);
  color: var(--text-white);
  transform: translateY(-1px);
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--browse {
  display: inline-block;
  margin-top: 26px;
  background: transparent;
  border: 1.5px solid var(--bg-red);
  color: var(--bg-red);
  font-family: var(--body-font);
  font-size: var(--small-font-size);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--browse:hover {
  background: var(--bg-red);
  color: var(--text-white);
  box-shadow: 0 8px 22px rgba(214, 41, 87, 0.32);
  transform: translateY(-1px);
}

/* Hidden file input */
.thunderdome__page .marrow__grid .nebula__cradle #spectral__file__input {
  display: none;
}

/* Progress / file list */
.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1px solid rgba(102, 112, 133, 0.18);
  border-radius: 12px;
  box-shadow: 0 4px 14px var(--shadow);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: slideInUp 0.3s ease forwards;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item:hover {
  border-color: var(--bg-red);
  transform: translateX(2px);
  box-shadow: 0 8px 22px var(--shadow);
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(214, 41, 87, 0.12), rgba(64, 18, 234, 0.08));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bg-red);
  flex-shrink: 0;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--meta {
  flex: 1;
  min-width: 0;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--meta .miasma__filelist--name {
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--meta .miasma__filelist--progress-bar {
  height: 4px;
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--meta .miasma__filelist--progress-bar .miasma__filelist--fill {
  height: 100%;
  background: var(--btn-bg);
  border-radius: 4px;
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--size {
  font-family: var(--body-font);
  font-size: var(--smaller-font-size);
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  font-size: 1rem;
  padding: 6px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--remove:hover {
  color: var(--color-red);
  background: rgba(255, 0, 0, 0.08);
}

/* Submit button */
.thunderdome__page .marrow__grid .nebula__cradle .specter__submit {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 32px;
  background: var(--bg-red);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-white);
  cursor: pointer;
  width: 100%;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.thunderdome__page .marrow__grid .nebula__cradle .specter__submit:hover {
transform: translateY(-2px);
}

.thunderdome__page .marrow__grid .nebula__cradle .specter__submit.specter__submit--visible {
  display: flex;
}

/* ================================================
   RIGHT COLUMN — .marrow__grid .velvet__oracle
================================================ */
.thunderdome__page .marrow__grid .velvet__oracle {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: sticky;
  top: 20px;
}

.thunderdome__page .marrow__grid .velvet__oracle .velvet__oracle--header {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bg-red);
  padding: 0 4px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}


/* Tip cards */
.thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard {
  padding: 5px 0px;
}



.thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--top .labyrinth__tipcard--dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--top .labyrinth__tipcard--label {
    font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--body {
  font-size: var(--small-font-size);
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
}

/* Stat strip */
.thunderdome__page .marrow__grid .velvet__oracle .abyss__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.thunderdome__page .marrow__grid .velvet__oracle .abyss__stats .abyss__stats--cell {
  background: var(--bg-white);
  border: 1px solid rgba(102, 112, 133, 0.15);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 4px 14px var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.thunderdome__page .marrow__grid .velvet__oracle .abyss__stats .abyss__stats--cell:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 41, 87, 0.3);
  box-shadow: 0 10px 24px var(--shadow);
}

.thunderdome__page .marrow__grid .velvet__oracle .abyss__stats .abyss__stats--cell .abyss__stats--num {
  font-family: var(--body-font);
  font-size: 1.7rem;
  font-weight: 700;
  background: var(--btn-bg);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--bg-red);
  display: block;
  letter-spacing: -0.02em;
}

.thunderdome__page .marrow__grid .velvet__oracle .abyss__stats .abyss__stats--cell .abyss__stats--lbl {
  font-size: var(--smaller-font-size);
  color: var(--text-secondary);
  font-family: var(--body-font);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
}

/* Supported journals */
.thunderdome__page .marrow__grid .velvet__oracle .cryptid__journals {
  background: var(--bg-white);
  border: 1px solid rgba(102, 112, 133, 0.15);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px var(--shadow);
}

.thunderdome__page .marrow__grid .velvet__oracle .cryptid__journals .cryptid__journals--title {
  font-size: var(--small-font-size);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--body-font);
}

.thunderdome__page .marrow__grid .velvet__oracle .cryptid__journals .cryptid__journals--list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.thunderdome__page .marrow__grid .velvet__oracle .cryptid__journals .cryptid__journals--list .cryptid__journals--chip {
  font-family: var(--body-font);
  font-size: var(--smaller-font-size);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(214, 41, 87, 0.08);
  border: 1px solid rgba(214, 41, 87, 0.18);
  color: var(--bg-red);
  cursor: default;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.thunderdome__page .marrow__grid .velvet__oracle .cryptid__journals .cryptid__journals--list .cryptid__journals--chip:hover {
  background: var(--bg-red);
  color: var(--text-white);
  transform: translateY(-1px);
}

/* ================================================
   TOAST NOTIFICATION
================================================ */
.thunderdome__page .wraith__toast {
  position: fixed;
  top: 32px;
  right: 32px;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: var(--small-font-size);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 340px;
  box-shadow: 0 16px 48px var(--shadow);
}

.thunderdome__page .wraith__toast.wraith__toast--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.thunderdome__page .wraith__toast .wraith__toast--icon {
  color: var(--verified);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(40, 167, 69, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   RESPONSIVE BREAKPOINTS (mobile: less padding + smaller type)
================================================ */
@media (max-width: 900px) {
  .thunderdome__page {
    padding: 22px 0 48px;
  }

  .thunderdome__page .marrow__grid {
    grid-template-columns: 1fr;
    padding: 0 14px;
    gap: 14px;
  }

  .thunderdome__page .wraith__hero {
    padding: 16px 14px 12px;
    max-width: none;
  }

  .thunderdome__page .wraith__hero .wraith__hero--eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
    gap: 8px;
  }

  .thunderdome__page .wraith__hero .wraith__hero--title {
    font-size: clamp(1.4rem, 5.2vw, 2.1rem);
    line-height: 1.2;
  }

  .thunderdome__page .wraith__hero .wraith__hero--sub {
    font-size: 0.8125rem;
    margin-top: 10px;
    line-height: 1.55;
    max-width: none;
  }

  .thunderdome__page .marrow__grid .nebula__cradle {
    gap: 14px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--icon {
    padding: 0 12px;
    font-size: 1rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--input {
    padding: 12px 0;
    font-size: 0.8125rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--btn {
    padding: 12px 14px;
    font-size: 0.65rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop {
    padding: 28px 14px;
    border-radius: 14px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--icon svg {
    width: 24px;
    height: 24px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--title {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--sub {
    font-size: 0.75rem;
    line-height: 1.55;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--formats {
    margin-top: 14px;
    gap: 5px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--formats .ghostship__drop--tag {
    font-size: 0.6rem;
    padding: 3px 8px;
    letter-spacing: 0.05em;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--browse {
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item {
    padding: 10px 12px;
    gap: 10px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--icon {
    width: 34px;
    height: 34px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .miasma__filelist .miasma__filelist--item .miasma__filelist--meta .miasma__filelist--name {
    font-size: 0.75rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .specter__submit {
    padding: 12px 16px;
    font-size: 0.875rem;
    border-radius: 10px;
  }

  .thunderdome__page .marrow__grid .velvet__oracle {
    position: static;
    gap: 10px;
  }

  .thunderdome__page .marrow__grid .velvet__oracle .velvet__oracle--header {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    padding: 0 0 2px;
  }

  .thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--top {
    margin-bottom: 8px;
  }

  .thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--top .labyrinth__tipcard--label {
    font-size: 0.78rem;
  }

  .thunderdome__page .marrow__grid .velvet__oracle .labyrinth__tipcard .labyrinth__tipcard--body {
    font-size: 0.72rem;
    line-height: 1.5;
    padding-left: 14px;
  }

  .thunderdome__page .wraith__toast {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 520px) {
  .thunderdome__page {
    padding: 12px 0 36px;
  }

  .thunderdome__page .marrow__grid {
    padding: 0 10px;
    gap: 12px;
  }

  .thunderdome__page .wraith__hero {
    padding: 12px 10px 8px;
  }

  .thunderdome__page .wraith__hero .wraith__hero--eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .thunderdome__page .wraith__hero .wraith__hero--title {
    font-size: clamp(1.2rem, 6vw, 1.55rem);
  }

  .thunderdome__page .wraith__hero .wraith__hero--sub {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop {
    padding: 20px 10px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--icon svg {
    width: 22px;
    height: 22px;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--title {
    font-size: 0.95rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--sub {
    font-size: 0.6875rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .ghostship__drop .ghostship__drop--browse {
    padding: 7px 12px;
    font-size: 0.62rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .specter__submit {
    padding: 11px 12px;
    font-size: 0.8125rem;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .specter__submit svg {
    width: 16px;
    height: 16px;
  }

  .thunderdome__page .marrow__grid .velvet__oracle .abyss__stats {
    grid-template-columns: 1fr 1fr;
  }

  .thunderdome__page .wraith__toast {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox {
    flex-wrap: wrap;
  }

  .thunderdome__page .marrow__grid .nebula__cradle .phosphor__searchbox .phosphor__searchbox--btn {
    width: 100%;
    padding: 12px;
  }
}