@charset "UTF-8";
.single-product .entry-header {
  padding-top: 30px;
}
.single-product .entry-title {
  font-family: var(--default-font);
  font-size: 30px;
  line-height: normal;
  font-weight: 700;
}

.breadcrumbs {
  margin-top: 15px;
}
.breadcrumbs a {
  color: #737577;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.breadcrumbs a:hover {
  color: var(--accent-color);
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.breadcrumbs span {
  color: var(--accent-color);
}

.info-table {
  background-color: #F7F7F7;
  padding: 30px;
}
.info-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--white-color);
}
.info-table__row:first-child {
  padding-top: 0;
}
.info-table__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

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

.label {
  font-family: var(--product-tabs-font);
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.value {
  font-family: var(--product-tabs-font);
  font-weight: 500;
  color: #000;
  text-align: right;
}

.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--accent-color);
  padding: 20px;
}

.social-block p {
  margin: 0;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}

.social-block .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin: 0;
}
.social-block .social-icons li {
  list-style: none;
}
.social-block .social-icons li a {
  height: 100%;
  display: block;
}
.social-block .social-icons li a svg {
  fill: var(--black-color);
}

.icon {
  width: 24px;
  height: 24px;
  background-size: cover;
}

.product-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  margin: 40px 0 60px;
}
@media (max-width: 768px) {
  .product-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .product-header__item {
    width: 33.3%;
  }
}
.product-header__item .btn-default {
  width: 100%;
}
.product-header .project-slider:after {
  display: none;
}

.price-block {
  margin-bottom: 15px;
  border: 1px solid var(--divider-color);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.product-price {
  margin-bottom: 10px;
  font-family: var(--default-font);
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  color: var(--black-color);
  letter-spacing: -0.48px;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.product-availability {
  display: block;
  font-family: var(--product-tabs-font);
  font-size: 14px;
  line-height: 140%;
  color: var(--accent-color);
  font-weight: 400;
}

.quantity-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  font-size: 25px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}
.quantity-btn:hover {
  background: var(--primary-color);
  color: var(--accent-color);
  -webkit-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}

.quantity-input {
  width: 70px;
  text-align: center;
  border: 1px solid #ccc;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none; /* Дополнительное удаление стрелок */
  margin: 0;
}

.accordion {
  margin-top: 20px;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #e8e8e8;
  margin-top: 10px;
}
.accordion-item.active .accordion-title {
  color: var(--accent-color);
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.accordion-title {
  font-family: var(--third-font);
  font-size: 22px;
  font-weight: bold;
  color: #000;
  padding: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.accordion-title:hover {
  color: var(--accent-color);
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}

.accordion-content {
  height: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0px 10x;
  font-size: 14px;
  color: #333;
  -webkit-transition: height 0.5s, padding-top 0.5s, padding-bottom 0.5s, margin 0.5s, opacity 0.5s, visibility 0.5s, max-height 0.5s, padding 0.5s;
  transition: height 0.5s, padding-top 0.5s, padding-bottom 0.5s, margin 0.5s, opacity 0.5s, visibility 0.5s, max-height 0.5s, padding 0.5s;
}
.accordion-content p {
  margin: 0;
  font-family: var(--product-tabs-font);
  font-size: 16px;
  color: var(--text-color);
}
.accordion-content h4 {
  margin: 10px 0;
  font-size: 16px;
}

.accordion-item.active .accordion-content {
  height: 100%;
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
  padding: 10px;
  -webkit-transition: height 0.5s, padding-top 0.5s, padding-bottom 0.5s, margin 0.5s, opacity 0.5s, visibility 0.5s, max-height 0.5s, padding 0.5s;
  transition: height 0.5s, padding-top 0.5s, padding-bottom 0.5s, margin 0.5s, opacity 0.5s, visibility 0.5s, max-height 0.5s, padding 0.5s;
}
.accordion-item.active .accordion-title:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.accordion-title:after {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none'%3E%3Cpath fill='%230E0D1B' d='M10.771 8.467V.59H8.525v7.877H.648v2.246h7.877v7.877h2.246v-7.877h7.877V8.467h-7.877Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.tab-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .tab-nav {
    overflow: auto;
  }
}

.tab-link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(10px, 2.344vw, 18px);
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: none;
  border: 1px solid var(--accent-color);
  font-size: clamp(18px, 2.865vw, 22px);
  text-wrap: nowrap;
  font-weight: 600;
  color: var(--black-color);
  -webkit-transition: background-color 0.3s, border-bottom-color 0.3s;
  transition: background-color 0.3s, border-bottom-color 0.3s;
}

.tab-link.active,
.tab-link:hover {
  background-color: var(--accent-color);
}

.tab-content {
  display: none;
  padding: 40px 0;
  color: #000;
}
.tab-content h2,
.tab-content h3 {
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: var(--product-tabs-font);
  font-size: 22px;
  line-height: 160%;
  font-weight: 700;
}
.tab-content strong {
  font-family: var(--product-tabs-font);
  font-size: 16px;
  line-height: 160%;
  font-weight: 600;
}
.tab-content ul li, .tab-content ol li {
  list-style-position: inside;
  font-family: var(--product-tabs-font);
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}
.tab-content ul li {
  list-style-type: disc;
}
.tab-content img {
  display: block;
  margin: auto;
}
.tab-content p {
  font-family: var(--product-tabs-font);
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}

.tab-content.active {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table tr:nth-child(even) {
  background: #F3F3F3;
}

table th,
table td {
  padding: 15px 40px;
  font-family: var(--second-font);
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
}

table td {
  text-align: right;
}
table td:first-child {
  text-align: left;
}

ul {
  list-style: none;
  padding: 0;
}

#instructions ul li {
  list-style: none;
}
#instructions a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-family: var(--second-font);
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  color: var(--black-color);
  text-decoration: underline;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#instructions a:hover {
  color: var(--accent-color);
}

.similar-products {
  padding: 80px 0 55px;
  background-color: var(--light-yellow-color);
}
.similar-products .section-row {
  margin-bottom: 40px;
}