.infusion-pump-container {
  display: flex;
  gap: 40px 102px;
  margin: 0 auto;
  /*padding: 20px;*/
  font-family: "Raleway", sans-serif;
  box-sizing: border-box;
  margin-top: 40px;
}

.infusion-pump-container .product-title {
  margin-top: 0px;
}

.infusion-pump-container .product-price {
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "liga" off;
  font-size: 28px;
  line-height: 32px;
  margin-top: 0px;
  margin-bottom: 27px;
  font-weight: 700;
  color: #00A5AA;
}

.price-and-buttons-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-and-buttons-row .product-price {
  margin-bottom: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.price-and-buttons-row .button-container {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .price-and-buttons-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .infusion-pump-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 30px !important;
  }
}

.image-column {
  display: flex;
  flex-direction: column;
  width: 40%;
  /*max-width: 455px;*/
  align-items: center;
}

@media (max-width: 991px) {
  .image-column {
    width: 100%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 490px) {
  .product-showcase {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .image-column {
    max-width: 100%;
    margin-top: 0px;
  }
}

.main-image-wrapper {
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  padding: 40px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .main-image-wrapper {
    padding: 20px;
  }
}

.main-image {
  aspect-ratio: 0.85;
  object-fit: contain;
  width: 254px;
  max-width: 100%;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.thumbnail {
  aspect-ratio: 1.14;
  object-fit: contain;
  width: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.thumbnail.active {
  border: 2px solid #00a6aa;
}

.info-column {
  display: flex;
  flex-direction: column;
  width: 50%;
}

@media (max-width: 991px) {
  .info-column {
    width: 100%;
    margin-top: 30px;
  }
}

.product-title {
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 30px;
}

.feature-list {
  display: flex;
  gap: 20px 30px;
  margin-bottom: 30px;
  font-size: 12px;
  color: #3b3e3e;
  font-weight: 500;
  letter-spacing: 0.4px;
  line-height: 16px;
  flex-wrap: wrap;

}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 123px;
}

.feature-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 40px;
}

.feature-text {
  align-self: stretch;
}

.product-codes {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
  font-size: 14px;
  color: rgba(25, 40, 48, 0.9);
  font-weight: 600;
}

.product-description {
  color: #3b3e3e;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 30px;
}

.button-container {
  display: flex;
  justify-content: start;
  gap: 20px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  min-height: 44px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-secondary {
  background-color: #f9f9f9;
  color: #00a6aa;
  border: 1px solid #00a6aa;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
}

.btn-primary {
  background-color: #00a6aa;
  color: #fff;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #008c8f;
}

.product-showcase {
  display: flex;
  /*max-width: 455px;*/
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-image-container {
  border-radius: 20px 20px 20px 20px;
  border: 1px solid var(--Base-04, #e0e0e0);
  display: flex;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.swiper-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .swiper-container {
    height: 400px;
  }
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.additional-content {
  display: flex;
  margin-top: 28px;
  align-items: flex-start;
  gap: 18px;
}

.additional-image {
  aspect-ratio: 1.14;
  object-fit: contain;
  object-position: center;
  width: 100px;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: border-color 0.3s ease;
  padding: 5px;
}

.additional-image.active {
  border-color: #00A6AA;
  border-width: 2px;
}

.tabs-container {
  margin-top: 60px;
}

.tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
}

.tab {
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tab.active {
  border-bottom-color: #00a5aa;
  color: #00a5aa;
  font-weight: 700;
}

.tab-content {
  display: none;
  background-color: #fff;
  padding-top: 25px;
}

.tab-content.active {
  display: block;
}

.accordion-header {
  display: none;
}

.accordion-content ul {
  list-style-type: none;
  padding-left: 0;
}

.accordion-content ul li {
  position: relative;
  padding-left: 20px;
}

.accordion-content ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 11px;
  width: 3px;
  height: 3px;
  background-color: #3b3e3e;
  border-radius: 50%;
}

.accordion-content ol {
  counter-reset: list-counter;
  list-style-type: none;
  padding-left: 0;
}

.accordion-content ol li {
  position: relative;
  padding-left: 20px;
}

.accordion-content ol li:before {
  content: counter(list-counter) ".";
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  color: #00a8a3;
  font-weight: semibold;
}

.accordion-content li ul {
  margin-top: 10px;
}

.accordion-content li li {
  margin-bottom: 5px;
}

.accordion-content>ul:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .tabs-container {
    margin-top: 60px;
  }

  .tabs {
    display: none;
  }

  .tab-content {
    display: block;
    padding: 0;
    background-color: transparent;
  }

  .accordion-item {
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1), 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
  }

  .accordion-title {
    font-size: 14px;
    font-weight: bold;
  }

  .accordion-icon {
    transition: transform 0.3s ease;
  }

  .accordion-content {
    display: none;
    padding: 15px;
  }

  .accordion-item.active .accordion-icon {
    transform: rotate(180deg);
  }

  .accordion-item.active .accordion-content {
    display: block;
    padding-top: 0px;
  }

  .product-codes {
    margin-bottom: 15px;
  }
}

.product-image-container {
  margin-bottom: 20px;
}

.swiper-pagination {
  position: static;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 1px;
  border-radius: 0;
  background: #E0E0E0;
  opacity: 1;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(to right, #00A6AA, #A2E8EA);
}

@media (max-width: 768px) {
  .additional-content {
    display: none;
  }

  .swiper-pagination {
    display: flex;
  }

  .product-showcase {
    position: relative;
  }

  .product-image-container {
    margin-bottom: 5px;
  }
}

@media (min-width: 769px) {
  .swiper-pagination {
    display: none !important;
  }
}


.medical-encyclopedia {
  background-color: #00a5aa;
  border-radius: 30px;
  width: 100%;
  padding: 46px 80px;
  overflow: hidden;
  height: 297px;
  box-sizing: border-box;
  margin-top: 70px;
}

.medical-encyclopedia .content-wrapper {
  display: flex;
  gap: 20px;
  height: 100%;
}

.medical-encyclopedia .image-column {
  width: 27%;
  position: relative;
}

.medical-encyclopedia .book-cover {
  aspect-ratio: 0.83;
  object-fit: contain;
  width: 209px;
  border-radius: 20px 20px 0 0;
  max-width: 100%;
  position: absolute;
  bottom: -55px;
}

.medical-encyclopedia .text-column {
  width: 73%;
  margin-left: 20px;
}

.medical-encyclopedia .text-content {
  display: flex;
  margin-top: 4px;
  width: 100%;
  flex-direction: column;
  font-family: Raleway, sans-serif;
  color: #fff;
}

.medical-encyclopedia .book-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin-right: 47px;
  margin-bottom: 20px;
  margin-top: 0px;
}

.medical-encyclopedia .book-description {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 55px;
}

.medical-encyclopedia .details-button {
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #fff;
  align-self: start;
  display: inline-flex;
  height: 44px;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  padding: 0 18px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  align-items: center;
}

.medical-encyclopedia .details-button:hover,
.medical-encyclopedia .details-button:focus {
  background-color: #fff;
  color: #00a5aa;
}

.infusion-pump-container>.product-title {
  display: none;
}

@media (max-width: 768px) {
  .infusion-pump-container>.product-title {
    display: block;
  }

  .medical-encyclopedia {
    margin-top: 60px;
  }

  .info-column .product-title {
    display: none;
  }

  .product-title {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .medical-encyclopedia {
    padding: 20px;
    height: auto;
    border-radius: 20px;
  }

  .medical-encyclopedia .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .medical-encyclopedia .image-column,
  .medical-encyclopedia .text-column {
    width: 100%;
    margin-left: 0;
  }

  .medical-encyclopedia .image-column {
    order: 1;
    height: 225px;
  }

  .medical-encyclopedia .book-cover {
    position: absolute;
    width: 209px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    right: 0px;
  }

  .medical-encyclopedia .text-content {
    max-width: 100%;
  }

  .medical-encyclopedia .book-title {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .medical-encyclopedia .book-description {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 15px;
    margin-left: 10px;
  }

  .medical-encyclopedia .details-button {
    align-self: flex-start;
    height: 44px;
    font-size: 13px;
    padding: 0 23px;
    margin-top: 5px;
  }

  .accordion-content img {
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .medical-encyclopedia {
    padding: 46px 20px !important;
  }

  .medical-encyclopedia .book-title {
    margin-top: 0px;
  }

  .medical-encyclopedia .book-description {
    margin-bottom: 20px;
  }

  .infusion-pump-container {
    margin-top: 0px;
  }

}

.fancybox__container {
  --fancybox-bg: rgba(24, 24, 27, 0.98);
}

.fancybox__content {
  padding: 0;
  max-width: 800px;
  max-height: 800px;
  background: transparent;
  position: relative;
}

.fancybox__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#panorama {
  width: 800px;
  height: 800px;
}

.fancybox__close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: #5ad8db;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: background-color 0.3s;
}

.fancybox__close-button:hover {
  background: #008f5d;
}

.fancybox__close-button svg {
  width: 20px;
  height: 20px;
}

.spritespin-stage::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background-image: url('/img/mouse.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}

a.additional-image {
  display: flex;
}

a.additional-image img {
  margin: auto;
}



/*.product-price{
	display:none;
}*/

@media (min-width: 491px) {
  .button-container .product-price {
    display: block;
  }
}

@media (min-width: 1200px) {
  .accordion-content {
    width: 80%;
  }
}

@media (max-width: 490px) {
  .price-and-buttons-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-container {
    /*position: fixed;*/
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 20%);
    padding: 28px 0;
    padding-top: 0px;
    z-index: 100;
    margin-top: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }

  .button-container .add-to-cart-button {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 6px !important;
    white-space: nowrap !important;
  }

  .button-container .add-to-cart-button .button-label {
    padding: 0 4px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .button-container .add-to-cart-button .button-icon {
    flex: 0 0 20px !important;
    width: 20px !important;
  }

  .button-container .btn-primary,
  .button-container .open-popup-btn {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 6px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .tabs-container {
    margin-top: 0px;
  }

  .product-price {
    display: block;
  }

  .hide-btn {
    display: none;
  }
}

.request_price {
  line-height: 45px;
  color: #00A6AA;
  font-size: 15px;
  font-weight: 700;
}

.accordion-item table {
  border-collapse: collapse;
}

.accordion-item table th {
  background: #00a0b0;
  border: 1px solid #00a0b0;
  color: #fff;
  padding: 13px 10px;

}

.accordion-item table tbody tr:nth-child(odd) {
  background: #e0f2f6;
}

.accordion-item table tbody tr:nth-child(even) {
  background: #fff;
}

.accordion-item table tbody tr td {
  border: 1px solid #01a7a6;
  padding: 0 10px;
}

.product-image-container {
  position: relative;
}

.feature-item-clickable {
  cursor: pointer;
  width: 153px;
}

.chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.chevron-icon.rotated {
  transform: rotate(180deg);
}

.equipment-card {
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #ededed;
  background-color: #f6f6f6;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 640px) {
  .logo-container {
    gap: 15px;
  }
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.equipment-description {
  color: #3b3e3e;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.order-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-container {
  display: flex;
  padding: 0px 4px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  /* Пользовательское изменение */
}

.badge-number {
  color: #00a6aa;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.4px;
}

.emblem-image {
  width: 45px;
  height: 46.954px;
}

.standards-block {
  margin-top: -20px;
  margin-bottom: 10px;
}

.swiper-navigation-icon {
  display: none;
}

.swiper-container-thumbs .swiper-slide-thumb-active img {
  border-color: #32b6ba !important;
  border-width: 2px;
}

.standards-doc-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.standards-doc-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #00a6aa;
}

.standards-doc-item:not(:last-child)::after {
  content: ", ";
  white-space: pre;
  color: #00a6aa;
}

.standards-doc-name {
  color: #00a6aa;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.standards-doc-item:hover .standards-doc-name {
  color: #009095;
}

.standards-doc-item--plain {
  cursor: default;
}

.standards-doc-item--plain .standards-doc-name {
  text-decoration: none;
}