.product-container {
  background-color: #fff;
  padding: 40px 40px 0 40px;
  margin: auto;
  max-width: 1440px;
}

.product-container .woocommerce-breadcrumb {
  margin: 0;
  padding: 0;
}

.product-beadcrumb-title-holder {
  gap: 24px;
  display: flex;
  flex-direction: column;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.product__path {
  font-size: 12px;
  color: #00000a;
  opacity: 0.5;
}
.product__title {
  font-size: 32px;
  font-weight: 600;
  color: #000033;
}
.product__more {
  display: flex;
}

.product__content {
  display: flex;
  gap: 40px;

  & .ajax_add_to_cart {
    display: flex;
    padding: 12px 8px;
    border: 2px solid #000033;
    border-radius: 0 0 20px 0;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
  }
  & .ajax_add_to_cart:hover {
    background-color: #000033;
    color: #daf0f0;
  }

  & .added_to_cart {
    display: none;
  }
}

.product__content .minicarousel {
  display: flex;
  max-height: 600px;
  gap: 40px;
  flex: 3;
}

.product__content .minicarousel__thumbnails {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 46px;
}
.product__content .minicarousel__main {
  width: 100%;
  overflow: hidden;
}
.product__content .minicarousel__main .item {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  display: none;
}
.product__content .minicarousel__main .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.product__content .minicarousel__main .item.active {
  opacity: 1;
  display: block;
}
.product__content .minicarousel .btn {
  width: -moz-fit-content;
  width: fit-content;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.product__content .minicarousel .dots {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  gap: 10px;
}
.product__content .minicarousel .dots .dot {
  cursor: pointer;
  height: 84px;
  width: 84px;
  aspect-ratio: 1/1;
}
.product__content .minicarousel .dots .dot__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product__content .minicarousel .dots .dot.active,
.product__content .minicarousel .dots .dot:hover {
  border: 2px solid #00abba;
}
.product__content .details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 2;
}
.product__content .details__summary {
  display: flex;
  flex-direction: column;
  color: #000033;
  border: 2px solid #daf0f0;
  border-radius: 0 0 20px 0;
  padding: 24px;
  gap: 24px;
}

/*
.product__content .details__summary .article-info {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}*/

.product__content .details__summary .article-info__details {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.product__content .details__summary .article-info__buttons {
  display: flex;
  gap: 10px;
}
.product__content .details__summary .article-price {
  padding: 24px 0 0 0;
  gap: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #000033;
  border-top: 1px solid #daf0f0;
}
.product__content .details__summary .article-price__title {
  font-size: 21px;
  font-weight: 500;
}
.product__content .details__summary .article-price__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  line-height: 24px;
}
.product__content .details__summary .article-price__price__duration {
  font-size: 16px;
  opacity: 0.7;
}
.product__content .details__summary .article-price__price__old {
  text-decoration: line-through;
  font-size: 16px;
  opacity: 0.5;
}
.product__content .details__summary .article-price__price__new {
  font-size: 24px;
  font-weight: 700;
}
.product__content .details__summary .article-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product__content .details__summary .article-quantity__counter {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: #000033;
}
.product__content .details__summary .article-quantity__counter button,
.product__content .details__summary .article-quantity__counter #count {
  padding: 6px 4px;
  width: 40px;
}
.product__content .details__summary .article-quantity__counter button {
  height: 100%;
  border: 2px solid #daf0f0;
  background-color: transparent;
  opacity: 0.5;
}
.product__content .details__summary .article-quantity__counter button:hover {
  background-color: #daf0f0;
  font-size: 16px;
  font-weight: 700;
}
.product__content .details__summary .article-quantity__counter #count {
  border-top: 2px solid #daf0f0;
  border-bottom: 2px solid #daf0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}
.product__content .details__summary .article-quantity__cta {
  flex: 1;
  width: 100%;
}

.product__content .details__description {
  opacity: 0.7;
}

.technical-table-container {
  display: flex;
  gap: 40px;
}
.technical-table-container__left,
.technical-table-container__right {
  flex: 1;
}

.technical-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: #000033;
  font-size: 14px;
}
.technical-table tr {
  background-color: #f8fcfe;
}
.technical-table__key {
  font-weight: 500;
}
.technical-table__value {
  font-weight: 400;
}
.technical-table__key,
.technical-table__value {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #daf0f0;
}
.technical-table tr:nth-child(even) {
  background-color: #fff;
}

@media screen and (max-width: 1280px) {
  .product__content .details__summary .article-quantity {
    flex-direction: column;
  }
  .product__content .details__summary .article-quantity__counter {
    width: 100%;
  }
  .product__content .details__summary .article-quantity__counter button,
  .product__content .details__summary .article-quantity__counter #count {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .article-price {
    flex-direction: column;
  }
  .product__content .details__summary .article-price {
    align-items: flex-start;
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .product__content {
    flex-direction: column;
  }
  .product-container {
    padding: 24px 16px 0 16px;
  }
  .minicarousel {
    flex-direction: column-reverse;
  }
  .product__content .minicarousel .dots {
    flex-direction: row;
  }
  .product__content .minicarousel__thumbnails {
    flex-direction: row;
  }
  .product__content .minicarousel .btn {
    transform: rotate(-0.25turn);
  }
  .product__content .minicarousel__main {
    aspect-ratio: 16/9;
  }
}

@media screen and (max-width: 376px) {
  .product__content .minicarousel__thumbnails {
    flex-direction: row;
    gap: 14px;
  }
}
