/* ====== Сайдбар с категориями ====== */
.pc-sidebar {
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 6px;
  padding: 16px;
}
.pc-sidebar__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
.pc-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pc-categories li {
  padding: 6px 0;
}
.pc-categories a {
  color: #2a2a2a;
  text-decoration: none;
}
.pc-categories .current-cat > a {
  color: #6b1e2e;
  font-weight: 700;
}

/* ====== Карточки товаров ====== */
ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pc-card {
  list-style: none;
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
}
.pc-card__title {
  font-weight: 700;
  margin-bottom: 6px;
  text-decoration: none;
  color: #2a2a2a;
}
.pc-card__price {
  margin-top: auto; /* цена + кнопка всегда прижаты вниз */
  font-weight: 700;
}
.pc-card__btn.button {
  width: 100% !important;
  margin-top: 8px;
  padding: 12px 14px;
  text-align: center;
  background: #6b1e2e;
  color: #fff;
  border-radius: 4px;
  border: 0;
  font-weight: 600;
}
.pc-card__btn.button:hover {
  background: #541624;
  color: #fff;
}

/* ====== Страница товара ====== */
.pc-single__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}
.pc-single__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.pc-single__price {
  font-size: 22px;
  font-weight: 800;
  margin: 12px 0 16px;
}
.pc-single__cart .single_add_to_cart_button {
  background: #6b1e2e;
  border: 0;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 700;
}
.pc-single__cart .single_add_to_cart_button:hover {
  background: #541624;
}
/* Ограничение размера картинок в карточках */
.pc-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f9;
  aspect-ratio: 4/5;   /* Пропорции */
  overflow: hidden;
}

.pc-card__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Если Woo подставляет product-categories */
.product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-categories li {
  padding: 6px 0;
}
.product-categories a {
  color: #2a2a2a;
  text-decoration: none;
}
.product-categories .current-cat > a {
  color: #6b1e2e;
  font-weight: 700;
}
/* ====== Сайдбар аддона (woo-ajax-shop) ====== */
.shop-sidebar {
  background: #fff;
  border: 1px solid #e8e8ec;
  border-radius: 6px;
  padding: 16px;
}

.shop-sidebar .zag1 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.shop-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-categories li {
  padding: 6px 0;
}

.shop-categories a {
  color: #2a2a2a;
  text-decoration: none;
  display: block;
}

.shop-categories li.is-active > a,
.shop-categories a:hover {
  color: #6b1e2e;
  font-weight: 700;
}

.loader {
    border: 6px solid #f3f3f3; /* светлый фон */
    border-top: 6px solid #592027; /* цвет вращения */
    border-radius: 60%;
    width: 80px;
    height: 80px;
    margin: 40px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =======================
   📱 Мобильная адаптация
   ======================= */
@media (max-width: 992px) {
    .shop-wrapper {
        flex-direction: column;
    }

.products.columns-3{padding-left: 0; text-align: center;}
 .attachment-woocommerce_thumbnail.size-woocommerce_thumbnail{width: 200px; height: 200px;}
.shop-wrapper{
    align-items: center;
    align-content: center;
    justify-content: center;}
    .shop-sidebar {
        
        width: 100%;
        margin-bottom: 20px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        
    }
h1.zagl{display: none;}
    .shop-sidebar.is-open {
        display: block;
        max-height: 1000px; /* достаточно большое значение */
        opacity: 1;
        text-align: center;
     
    }
.loaader {display: flex; justify-content: center;}
    
    .shop-products ul.products {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .shop-filter-toggle {
        display: block;
        background:#592027;
        color: #fff;
        padding: 12px 15px;
        text-align: center;
        border-radius: 6px;
        margin-bottom: 15px;
        cursor: pointer;
        margin: 0;
    }
    .shop-filter-toggle:hover{
        background-color:rgb(141, 30, 30) ;
    }
}

@media (max-width: 576px) {
    .shop-products ul.products {
        grid-template-columns: 1fr;
    }
}

/* === Кнопка Каталог === */
@media (max-width: 992px) {
  .shop-filter-toggle {
    position: relative;
    display: block;
    width: 100%;
    background: #6b1e2e;
    color: #fff;
    padding: 14px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background .25s ease;
    z-index: 101;
  }
  .shop-filter-toggle:hover {
    background:#541624;
  }

}

/* === Сайдбар === */
@media (max-width: 992px) {
  .shop-sidebar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, transform 0.35s ease;
    transform: translateY(-10px);
    z-index: 102;
    position: relative;

    /* скрытое состояние — убираем пустое место */
    padding: 0;
    border: none;
    margin: 0;
  }
  .shop-sidebar.active {
    transform: translateY(0);
    max-height: 1000px; /* запас для анимации */
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
    background: #fff;
  }

  /* скрываем содержимое при закрытии */
  .shop-sidebar:not(.active) h1,
  .shop-sidebar:not(.active) ul {
    display: none;
  }
}

/* === Оверлей === */
@media (max-width: 992px) {
  .shop-overlay {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
  }
  .shop-overlay.active {
    display: block;
  }
}

/* === Десктоп: меню всегда видно, кнопки нет === */
@media (min-width: 993px) {
  .shop-sidebar {
    max-height: none !important;
    overflow: visible !important;
    padding: 15px;
    border: 1px solid #ddd;
    margin: 0 0 16px 0;
    background: #fff;
  }
  .shop-filter-toggle {
    display: none !important;
  }
}
/* === Кнопка Каталог === */
@media (max-width: 992px) {
  .shop-filter-toggle {
    position: relative;
    display: block;
    width: 100%;
    background: #6b1e2e;
    color: #fff;
    padding: 14px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background .25s ease;
    z-index: 101;
  }
  .shop-filter-toggle:hover {
    background:#541624;
  }


}

/* === Сайдбар === */
@media (max-width: 992px) {
  .shop-sidebar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, transform 0.35s ease;
    transform: translateY(-10px);
    z-index: 102;
    position: relative;

    /* скрытое состояние — убираем пустое место */
    padding: 0;
    border: none;
    margin: 0;
  }
  .shop-sidebar.active {
    transform: translateY(0);
    max-height: 1000px; /* запас для анимации */
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
    background: #fff;
  }

  /* скрываем содержимое при закрытии */
  .shop-sidebar:not(.active) h1,
  .shop-sidebar:not(.active) ul {
    display: none;
  }
}

/* === Оверлей === */
@media (max-width: 992px) {
  .shop-overlay {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    z-index: 100;
  }
  .shop-overlay.active {
    display: block;
  }
}

/* === Десктоп: меню всегда видно, кнопки нет === */
@media (min-width: 993px) {
  .shop-sidebar {
    max-height: none !important;
    overflow: visible !important;
    padding: 15px;
    border: 1px solid #ddd;
    margin: 0 0 16px 0;
    background: #fff;
  }
  .shop-filter-toggle {
    display: none !important;
  }
}

/* === Очень маленькие экраны (до 400px) === */
@media (max-width: 400px) {
  .shop-filter-toggle {
    padding: 10px 12px;
    font-size: 14px;
  }
  .shop-filter-toggle::after {
    right: 12px;
    font-size: 12px;
  }
  .shop-sidebar.active {
    padding: 10px;
  }
  .shop-sidebar.active h1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .shop-sidebar.active ul li a {
    font-size: 14px;
    padding: 6px 0;
  }
}

@media (min-width: 993px) {
  .shop-sidebar {
    width: 390px; /* фиксированная ширина */
    flex-shrink: 0; /* запрещаем сжимать */
  }
  .shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .shop-sidebar ul li a {
    display: block;
    white-space: nowrap;       /* не переносить строки */
    overflow: hidden;          /* скрывать лишнее */
    text-overflow: ellipsis;   /* троеточие, если не влезает */
  }
}
.shop-sidebar ul li a.is-active {
  color: #fff;
  background: #6b1e2e;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
  display: block;
}

.related-carousel .swiper-wrapper {
    display: flex;
}

.related-carousel .product {
    width: auto; /* карточки сами подстраиваются */
}

.related-products {
    margin-top: 40px;
}

.related-products h2 {
    font-size: 22px;
    margin-bottom: 20px;
}
/* Унификация карточек внутри карусели */
.related-carousel .swiper-slide .product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    box-sizing: border-box;
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
}

/* Минимальная высота карточек */
.related-carousel .swiper-slide {
    height: auto;
}

.related-carousel .swiper-slide .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 600;
    min-height: 40px; /* одинаковая высота заголовка */
    margin: 10px 0;
    line-height: 1.3;
}

/* Цена прижимается вниз */
.related-carousel .price {
    margin-top: auto;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

/* Кнопка "В корзину" */
.related-carousel .button {
    background-color: #6b122e !important; /* тёмно-красный */
    color: #fff !important;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.related-carousel .button:hover {
    background-color: #8e1a3f !important; /* чуть светлее при ховере */
}

/* Стрелки навигации Swiper */
.related-carousel .swiper-button-next,
.related-carousel .swiper-button-prev {
    color: #6b122e; /* тёмно-красный */
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.related-carousel .swiper-button-next:hover,
.related-carousel .swiper-button-prev:hover {
    background: #6b122e;
    color: #fff;
}
.pc-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #6b122e; /* твой тёмно-красный */
    color: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    max-width: 320px;
    animation: slideIn .3s ease;
}

.pc-toast span {
    display: block;
    margin-bottom: 8px;
}

.pc-toast-btn {
    display: inline-block;
    background: #fff;
    color: #6b122e;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.pc-toast-btn:hover {
    background: #f1f1f1;
}

@keyframes slideIn {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* ===================================
   PRODUCT PAGE V2
=================================== */

.pc-product-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 460px;
    gap:40px;
    margin-bottom:40px;
}

.pc-product-gallery{
    background:#fff;
}

.pc-product-buybox{
    position:sticky;
    top:20px;
    align-self:start;

    background:#fff;

    border:1px solid #ececec;
    border-radius:20px;

    padding:24px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.pc-product-benefits{
    margin-top:24px;

    display:grid;
    gap:12px;

    padding-top:20px;

    border-top:1px solid #eee;
}

.pc-benefit{
    font-size:14px;
    color:#444;
}

.pc-product-section{
    margin:60px 0;
}

.pc-product-section h2{
    margin-bottom:25px;
}

.single_add_to_cart_button{
    width:100%;
    min-height:54px;

    border-radius:12px;
}

.pc-single_desc{
    max-width:100%;
}

@media(max-width:992px){

    .pc-product-layout{
        grid-template-columns:1fr;
    }

    .pc-product-buybox{
        position:static;
    }

}
/* ===================================
   PRODUCT PAGE WB/OZON STYLE V3
   Безопасно: работает через стандартные хуки WooCommerce
=================================== */

.single-product .pc-product-page{
  max-width:1240px;
  margin:0 auto;
  padding-top:28px;
}

.pc-product-hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 420px;
  gap:32px;
  align-items:start;
  margin-bottom:28px;
}

.pc-product-gallery-card{
  min-height:560px;
  background:#fff;
  border:1px solid #eee;
  border-radius:24px;
  padding:28px;
  box-shadow:0 12px 36px rgba(20,20,20,.04);
}

.pc-product-gallery-card .woocommerce-product-gallery{
  width:100% !important;
  float:none !important;
  margin:0 !important;
}

.pc-product-gallery-card .woocommerce-product-gallery__wrapper{
  margin:0;
}

.pc-product-gallery-card .woocommerce-product-gallery__image{
  text-align:center;
}

.pc-product-gallery-card .woocommerce-product-gallery__image img{
  width:auto !important;
  max-width:100%;
  max-height:520px;
  object-fit:contain;
  margin:0 auto;
}

.pc-product-buybox{
  position:sticky;
  top:24px;
  z-index:5;
  background:#fff;
  border:1px solid #eee;
  border-radius:24px;
  padding:26px;
  box-shadow:0 16px 46px rgba(20,20,20,.09);
}

.pc-product-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.pc-badge{
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  line-height:1;
}

.pc-badge--sale{background:#6b122e;color:#fff;}
.pc-badge--stock{background:#edf8ec;color:#2d7a35;border:1px solid #bfe3c1;}
.pc-badge--out{background:#f5f5f5;color:#777;}

.pc-product-title{
  font-size:30px;
  line-height:1.16;
  font-weight:800;
  color:#25252a;
  margin:0 0 12px;
}

.pc-product-rating-row{
  min-height:24px;
  margin-bottom:18px;
}

.pc-rating-link{
  display:flex;
  align-items:center;
  gap:9px;
  color:#555;
  text-decoration:none;
  font-size:14px;
}

.pc-rating-link:hover{color:#6b122e;}
.pc-rating-link .star-rating{margin:0;color:#f5a623;}
.pc-rating-link--empty{color:#6b122e;font-weight:700;}

.pc-product-price .price,
.single-product .pc-product-buybox .price{
  display:block;
  margin:0 0 18px;
  color:#202024 !important;
  font-size:36px !important;
  line-height:1.1;
  font-weight:900;
}

.pc-product-price .price del,
.single-product .pc-product-buybox .price del{
  color:#999 !important;
  font-size:20px;
  font-weight:600;
  margin-right:8px;
}

.pc-product-price .price ins,
.single-product .pc-product-buybox .price ins{
  text-decoration:none;
}

.pc-product-cart form.cart{
  margin:0 !important;
}

.pc-product-cart .quantity{
  display:inline-flex;
  margin:0 10px 14px 0 !important;
  vertical-align:middle;
}

.pc-product-cart .quantity input.qty{
  width:74px;
  height:46px;
  border:1px solid #ddd;
  border-radius:12px;
  text-align:center;
  font-size:16px;
  font-weight:700;
}

.pc-product-cart .single_add_to_cart_button,
.single-product .single_add_to_cart_button{
  width:100%;
  min-height:56px;
  background:#6b122e !important;
  color:#fff !important;
  border:0 !important;
  border-radius:14px !important;
  padding:0 22px !important;
  font-size:16px !important;
  font-weight:800 !important;
  transition:.2s ease;
}

.pc-product-cart .single_add_to_cart_button:hover,
.single-product .single_add_to_cart_button:hover{
  background:#8e1a3f !important;
  transform:translateY(-1px);
}

/* Вариации: аккуратный внешний вид + JS превратит select в плитки */
.pc-product-cart table.variations{
  width:100%;
  margin:0 0 14px !important;
  border:0;
}

.pc-product-cart table.variations tr{
  display:block;
  margin-bottom:14px;
}

.pc-product-cart table.variations th,
.pc-product-cart table.variations td{
  display:block;
  padding:0 !important;
  border:0 !important;
  text-align:left;
}

.pc-product-cart table.variations label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:800;
  color:#333;
}

.pc-product-cart table.variations select{
  width:100%;
  min-height:44px;
  border:1px solid #ddd;
  border-radius:12px;
  padding:0 12px;
  background:#fff;
}

.pc-variation-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}

.pc-variation-btn{
  min-width:76px;
  min-height:42px;
  padding:9px 14px;
  border:1px solid #ddd;
  border-radius:10px;
  background:#fff;
  color:#333;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.18s ease;
}

.pc-variation-btn:hover,
.pc-variation-btn.is-active{
  border-color:#6b122e;
  color:#6b122e;
  background:#fff7fa;
}

.pc-variation-btn.is-disabled{
  opacity:.4;
  cursor:not-allowed;
  text-decoration:line-through;
}

.pc-product-cart .reset_variations{
  display:inline-block;
  margin-top:8px;
  color:#6b122e;
  font-size:13px;
  text-decoration:none;
}

.pc-product-trust{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid #eee;
}

.pc-trust-item{
  position:relative;
  padding:14px 14px 14px 38px;
  min-height:78px;
  background:#fafafa;
  border:1px solid #eee;
  border-radius:16px;
}

.pc-trust-item span{
  position:absolute;
  left:14px;
  top:14px;
  color:#6b122e;
  font-weight:900;
}

.pc-trust-item strong{
  display:block;
  color:#26262a;
  font-size:13px;
  line-height:1.25;
  margin-bottom:4px;
}

.pc-trust-item small{
  display:block;
  color:#777;
  font-size:12px;
  line-height:1.25;
}

.pc-product-nav{
  position:sticky;
  top:0;
  z-index:4;
  display:flex;
  gap:28px;
  margin:18px 0 24px;
  padding:14px 22px;
  background:rgba(255,255,255,.94);
  border:1px solid #eee;
  border-radius:18px;
  backdrop-filter:blur(8px);
}

.pc-product-nav a{
  color:#333;
  text-decoration:none;
  font-size:15px;
  font-weight:800;
}

.pc-product-nav a:hover{color:#6b122e;}

.pc-product-info-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.4fr) minmax(320px, .8fr);
  gap:24px;
  align-items:start;
  margin-bottom:24px;
}

.pc-info-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 30px rgba(20,20,20,.04);
}

.pc-info-card h2{
  margin:0 0 18px;
  color:#25252a;
  font-size:26px;
  line-height:1.2;
  font-weight:900;
}

.pc-single-desc{
  color:#333;
  font-size:16px;
  line-height:1.75;
}

.pc-single-desc p{margin:0 0 16px;}

.pc-product-attrs{
  margin:0;
}

.pc-attr-row{
  display:grid;
  grid-template-columns:140px minmax(0, 1fr);
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid #f0f0f0;
}

.pc-attr-row:last-child{border-bottom:0;}
.pc-attr-row dt{color:#777;font-weight:600;}
.pc-attr-row dd{margin:0;color:#25252a;font-weight:800;}

.pc-reviews-card{
  margin-bottom:34px;
}

.pc-reviews-card .comment-reply-title,
.pc-reviews-card #reply-title{
  font-size:22px;
  font-weight:900;
}

.pc-reviews-card textarea,
.pc-reviews-card input[type="text"],
.pc-reviews-card input[type="email"]{
  width:100%;
  border:1px solid #ddd;
  border-radius:14px;
  padding:12px 14px;
}

.pc-reviews-card .form-submit input,
.pc-reviews-card button,
.pc-reviews-card input[type="submit"]{
  background:#6b122e;
  color:#fff;
  border:0;
  border-radius:12px;
  padding:13px 20px;
  font-weight:800;
}

.pc-related-products{
  margin-top:34px;
}

.pc-related-products > h2{
  margin-bottom:20px;
  font-size:26px;
  font-weight:900;
}

.pc-mobile-buybar{display:none;}

@media (max-width: 1100px){
  .pc-product-hero{grid-template-columns:minmax(0, 1fr) 380px;gap:22px;}
  .pc-product-title{font-size:26px;}
  .pc-product-price .price,.single-product .pc-product-buybox .price{font-size:32px !important;}
}

@media (max-width: 900px){
  .single-product .pc-product-page{padding-left:14px;padding-right:14px;}
  .pc-product-hero{grid-template-columns:1fr;}
  .pc-product-gallery-card{min-height:auto;padding:18px;border-radius:18px;}
  .pc-product-gallery-card .woocommerce-product-gallery__image img{max-height:420px;}
  .pc-product-buybox{position:static;border-radius:18px;padding:20px;}
  .pc-product-info-grid{grid-template-columns:1fr;}
  .pc-product-nav{overflow-x:auto;gap:18px;border-radius:14px;}
  .pc-product-nav a{white-space:nowrap;}
}

@media (max-width: 600px){
  .pc-product-title{font-size:23px;}
  .pc-product-price .price,.single-product .pc-product-buybox .price{font-size:28px !important;}
  .pc-product-trust{grid-template-columns:1fr;}
  .pc-info-card{padding:20px;border-radius:18px;}
  .pc-info-card h2{font-size:22px;}
  .pc-attr-row{grid-template-columns:1fr;gap:4px;}
  .pc-mobile-buybar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:50;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:10px 14px;
    background:#fff;
    border-top:1px solid #eee;
    box-shadow:0 -10px 30px rgba(0,0,0,.1);
  }
  .pc-mobile-buybar__price{font-weight:900;color:#25252a;}
  .pc-mobile-buybar__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:140px;
    min-height:46px;
    background:#6b122e;
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:900;
  }
  body.single-product{padding-bottom:72px;}
}
/* Исправление горизонтального скролла на мобильной карточке товара */
@media (max-width: 768px){

    .pc-product-page,
    .pc-single,
    .pc-product-info-grid,
    .pc-info-card,
    .pc-single-desc,
    .pc-product-attrs,
    .pc-attr-row,
    .pc-attr-row dd{
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        box-sizing: border-box;
    }

    .pc-product-info-grid{
        grid-template-columns: 1fr !important;
        overflow: hidden;
    }

    .pc-info-card{
        padding: 18px;
        overflow: hidden;
    }

    .pc-single-desc img,
    .pc-single-desc table,
    .pc-single-desc iframe{
        max-width: 100%;
    }

    .pc-attr-row{
        display: block;
    }

    .pc-attr-row dt{
        margin-bottom: 6px;
    }

    .pc-attr-row dd{
        margin-left: 0;
    }
}