.card__info-wrap {
  display: grid;
  grid-template-columns: minmax(200px, 600px) auto;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .card__info-wrap {
    grid-template-columns:1fr;
    margin-top: 20px;
  }
}

.product_title {
  font-size: 26px;
  font-weight: 500;
}
@media (max-width: 768px) {
 .product_title {
    font-size: 22px;
  }
}
.woocommerce-product-gallery {
  position: relative;
}

.card__info-wrap .yith-wcwl-add-to-wishlist-button {
    font-size: 14px;
    font-weight: 700;
}

/* Контейнер главного изображения */
.woocommerce-product-gallery .woocommerce-product-gallery__image {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff; /* фон по бокам, если фото вертикальное */
}
.woocommerce-product-gallery .woocommerce-product-gallery__image a {
  width: 100%;
  background-color: var(--bg-color);
}

/* Само изображение */
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    aspect-ratio: 1/1;
    border-radius: 10px;

}

.woocommerce-product-gallery__trigger {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  transition: all .25s ease;
}

.woocommerce-product-gallery__trigger::before {
  content: "";
  width: 22px;
  height: 22px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23111' fill='none' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21'/%3E%3C/svg%3E");
}

.woocommerce-product-gallery__trigger:hover {
  transform: scale(1.08);
  background: #fff;
}
.card__info-wrap form.cart {
  margin-block: 20px;
}
.card__info-wrap .add_to_cart_button {
  border-radius: 35px;
  font-weight: 700;
  color: #fff;
  background-color: var(--accent-color);
  padding: 10px 15px;
  display: block;
  width: fit-content;
}
.card__info-wrap .add_to_cart_button:hover {
  background-color: var(--accent-color-hover);
}
.card__info-wrap .price {
  font-size: 42px;
}

.card__info-wrap .product-sku {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 5px ;
  background-color: #dfb9b9 ;
  color: #fff;
  width: fit-content;
  font-weight: 600;
}
.card__info-wrap .product-sku span{
  font-weight: 400;
}

.single-stock-status {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  width: fit-content;
}

.single-stock-status.in-stock {

}

.single-stock-status.available-on-backorder {
  color: #d97706;
  /* padding: 5px 10px;
  background: var(--yellow-label);
  border-radius:999px; */
}

.single-stock-status.out-of-stock {
  color: #c62828;
}

.single-contact-block {
  margin-top: 24px;
}

.single-contact-block__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}


.single-price-wrap {
  position: relative;
  width: fit-content;
}

.single-price-wrap .reazy-wholesale-note {
  position: absolute;
  top: 8px;
  right: -30px;
}

.woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.woocommerce-product-gallery .flex-control-thumbs li {
  margin: 0;
  padding: 0;
  width: calc(25% - 9px);
}

.woocommerce-product-gallery .flex-control-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.woocommerce-product-gallery .flex-control-thumbs img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  box-shadow: 0 0 0 2px rgba(212, 176, 138, 0.2);
}

.woocommerce-product-gallery .flex-control-thumbs li:not(:has(img.flex-active)) img {
  opacity: 0.78;
}

.woocommerce-product-gallery .flex-control-thumbs li:hover img {
  opacity: 1;
}

@media (max-width: 767px) {
  .woocommerce-product-gallery .flex-control-thumbs {
    gap: 10px;
    margin-top: 14px;
  }

  .woocommerce-product-gallery .flex-control-thumbs li {
    width: calc(25% - 7.5px);
  }

  .woocommerce-product-gallery .flex-control-thumbs img {
    border-radius: 12px;
  }
}