#testimonials-section {
  background: #ffffff;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 2rem 0 3rem 0;
}

#testimonials-section h3 {
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.testimonials-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.testimonials-carousel-container:active {
  cursor: grabbing;
}

.testimonials-carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonials-carousel-track .testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  width: calc(33.333% - 20px);
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 0 15px;
  margin-right: 12px;
}

.video-card .video-container {
  width: 100%;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.video-card .video-container vturb-smartplayer {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.video-card .user-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.video-card .user-details {
  flex: 1;
}

.video-card .user-name {
  margin-bottom: 4px;
}

.video-card .post-info {
  font-size: 0.75rem;
  color: #6c757d;
  margin: 0;
  font-weight: 400;
}

.video-card .rating {
  margin-left: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .video-card .video-container {
    padding: 0;
  }

  .video-card .video-container vturb-smartplayer {
    width: 100%;
    height: auto;
  }

  .video-card .post-info {
    font-size: 0.7rem;
  }
}
.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.before-after-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.before-after-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.testimonial-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

.rating {
  display: flex;
  gap: 1px;
}

.star {
  color: #ffa500;
  font-size: 0.8rem;
}

.benefits {
  margin-bottom: 12px;
  border-top: 1px solid #eee;
  padding-top: 8px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
}

.benefit-icon {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: 0.85rem;
  color: var(--text-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
  font-weight: bold;
}

.testimonial-description {
  margin-bottom: 12px;
}

.testimonial-description p {
  font-size: 0.75rem;
  color: var(--text-color);
  margin: 0;
  line-height: 1.3;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.read-more:hover {
  text-decoration: underline;
  color: #e67e22;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.product-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-details {
  flex: 1;
}

.product-details h5 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.price {
  font-size: 0.7rem;
  color: #666;
  margin: 0 0 8px 0;
}

.shop-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.shop-btn:hover {
  background: #e67e22;
}

.testimonials-carousel-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 2rem 0 1rem 0;
}

.testimonials-carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 3px;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.testimonials-carousel-indicators button.active {
  background-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

.img-adp {
  max-width: 70%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .testimonial-card {
    padding: 0 6px;
  }
}

@media (max-width: 768px) {
  .testimonials-carousel-track {
    width: 95%;
    gap: 20px;
    margin: 0 auto;
  }

  .testimonials-carousel-track .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 20px;
    margin-right: 0;
  }

  .testimonial-card {
    margin: 0;
  }

  .testimonials-carousel-indicators {
    margin: 2rem 2rem 1rem 2rem;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 0 2px;
  }

  #testimonials-section h3 {
    font-size: 1.2rem;
  }

  .testimonials-carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }

  .img-adp {
    max-width: 100%;
  }
}
#press-section {
  background: #f4f4f4;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 3rem 0;
  overflow: hidden;
}

#press-section .container-fluid {
  padding: 0;
  margin: 0;
  width: 100%;
}

#press-section h3 {
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0rem;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 0 15px;
}

@media (max-width: 991px) {
  #press-section h3 {
    font-size: 1.2rem;
  }
}

.press-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.press-carousel-container:active {
  cursor: grabbing;
}

.press-carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: calc(100% * 22 / 7);
}

.press-carousel-track .press-item {
  flex: 0 0 calc(100% / 22);
  min-width: calc(100% / 22);
  max-width: calc(100% / 22);
}

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 8px;
  height: 200px;
  width: 100%;
  position: relative;
}

.press-item:last-child {
  border-right: none;
}

.press-logo {
  width: 100px !important;
  height: 50px !important;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
  filter: grayscale(0);
  flex-shrink: 0;
}

.press-text {
  font-family: sans-serif;
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--text-color);
  text-align: center;
  margin: 12px 0 0 0;
  padding: 0 3px;
  max-width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0rem 0 1rem 0;
  position: relative;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 3px;
  opacity: 0.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
  cursor: pointer;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
  opacity: 1;
  transform: scale(1.2);
}

@media (max-width: 1200px) {
  .press-item {
    height: 180px;
    padding: 15px 6px;
  }

  .press-logo {
    width: 90px !important;
    height: 45px !important;
  }

  .press-text {
    font-size: 0.7rem;
    height: 30px;
    margin: 10px 0 0 0;
  }
}

@media (max-width: 991px) {
  .press-item {
    height: 160px;
    padding: 12px 4px;
  }

  .press-logo {
    width: 70px !important;
    height: 35px !important;
  }

  .press-text {
    font-size: 0.65rem;
    height: 25px;
    margin: 8px 0 0 0;
    padding: 0 2px;
  }

  #press-section h3 {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .press-item {
    height: 140px;
    padding: 10px 3px;
  }

  .press-logo {
    width: 60px !important;
    height: 30px !important;
  }

  .press-text {
    font-size: 0.6rem;
    height: 20px;
    margin: 6px 0 0 0;
  }
}

@media (max-width: 576px) {
  .press-item {
    height: 120px;
    padding: 8px 2px;
  }

  .press-logo {
    width: 50px !important;
    height: 25px !important;
  }

  .press-text {
    font-size: 0.55rem;
    line-height: 1.2;
    height: 18px;
    margin: 5px 0 0 0;
    padding: 0 1px;
  }

  #press-section h3 {
    font-size: 0.9rem;
    padding: 0 5px;
  }

  #pressCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }
}

.col-7-item {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 14.285714%;
  max-width: 14.285714%;
  min-width: 14.285714%;
}

#pressCarousel .carousel-control-prev,
#pressCarousel .carousel-control-next {
  display: none;
}

#press-section .container-fluid {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 576px) {
  #pressCarousel .carousel-indicators {
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 10px;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .press-carousel-track {
    width: calc(100% * 22);
  }

  .press-carousel-track .press-item {
    flex: 0 0 calc(100% / 22);
    min-width: calc(100% / 22);
    max-width: calc(100% / 22);
  }

  .press-item {
    height: 180px;
    padding: 15px 20px;
  }

  .press-logo {
    width: 120px !important;
    height: 60px !important;
  }

  .press-text {
    font-size: 0.8rem;
    height: 40px;
    margin: 15px 0 0 0;
  }
}

@media (max-width: 576px) {
  .press-item {
    height: 120px;
    padding: 12px 15px;
  }

  .press-logo {
    width: 100px !important;
    height: 50px !important;
  }

  .press-text {
    font-size: 0.75rem;
    height: 35px;
    margin: 12px 0 0 0;
  }

  .carousel-indicators {
    gap: 3px;
    margin: 0;
  }

  .carousel-indicators button {
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }

  .user-name {
    font-size: 1rem;
  }

  .benefit-item {
    font-size: 0.8rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .testimonial-description p {
    font-size: 1rem;
  }

  .product-details h5 {
    font-size: 1rem;
  }
}

.comparison-table {
  overflow: hidden;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 30px 20px;
  border-bottom: 1px solid #232323;
}

#video {
  background-image: none !important;
}

.header-left,
.header-right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.bottle-img {
  max-height: 180px;
  width: auto;
}

.capsules-img {
  max-height: 180px;
  width: auto;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #232323;
  margin: 0;
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #232323;
  gap: 10px;
}

.icon-left,
.icon-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-left i {
  font-size: 1.2rem;
  color: #07906c;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-right i {
  font-size: 1.2rem;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #232323;
  line-height: 1.3;
  text-align: center;
}

.comparison-row .feature-text:nth-child(4) {
  text-align: center;
}

.feature-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: black;
  padding: 12px 12px;
  background: #4dbef861;
  text-align: center;
  min-width: 200px;
  grid-column: 3;
  grid-row: 1;
}

.comparison-rows-desktop {
  display: block;
}

.comparison-rows-mobile {
  display: none;
}

@media (max-width: 768px) {
  .comparison-rows-desktop {
    display: none;
  }

  .comparison-rows-mobile {
    display: block;
  }

  .comparison-header {
    padding: 20px 15px;
    gap: 15px;
  }

  .product-image {
    height: 100px;
  }

  .bottle-img {
    max-height: 100px;
  }

  .capsules-img {
    max-height: 80px;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .comparison-row-mobile {
    padding: 15px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #232323;
  }

  .comparison-row-mobile:last-child {
    border-bottom: none;
  }

  /* Mobile layout styles */
  .mobile-row-left,
  .mobile-row-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-row-left {
    width: 100%;
    flex-direction: column;
  }

  .mobile-row-right {
    justify-content: flex-end;
    flex-direction: column-reverse;
    width: 100%;
  }

  .comparison-row-mobile .icon-left,
  .comparison-row-mobile .icon-right {
    flex-shrink: 0;
  }

  .comparison-row-mobile .feature-text {
    flex: 1;
  }

  .mobile-row-left .feature-text {
    text-align: center;
  }

  .mobile-row-right .feature-text {
    text-align: center;
  }

  .comparison-row-mobile .feature-category {
    grid-column: 1;
    grid-row: 2;
    writing-mode: horizontal-tb;
    text-orientation: initial;
    margin: 5px 0;
    width: 100% !important;
    min-width: auto;
    border-radius: 0 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .comparison-section {
    padding: 20px 0 !important;
  }

  .comparison-header {
    padding: 15px 10px;
  }

  .product-image {
    height: 80px;
  }

  .bottle-img {
    max-height: 80px;
  }

  .capsules-img {
    max-height: 60px;
  }

  .product-name {
    font-size: 0.85rem;
  }

  .comparison-row {
    padding: 12px 15px;
  }

  .feature-text {
    font-size: 0.8rem;
    text-wrap: auto;
  }

  .feature-category {
    font-size: 0.7rem;
    margin: 8px 0;
    text-wrap: auto;
  }

  .icon-left i,
  .icon-right i {
    width: 26px;
    height: 26px;
    font-size: 1.1rem;
  }
}
