.product-page-wrapper
{
  width: 1200px;
  background: none;
}

/*
.product-page-breadcrumbs
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.product-page-breadcrumbs-inner
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
*/

.product-page-breadcrumbs
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.product-page-breadcrumbs-inner
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  margin: 0 0 16px 0;
}
.product-page-breadcrumbs-inner a,
.product-page-breadcrumbs-inner span
{
  font-size: 12px;
  line-height: 12px;
}

.product-spacer
{
  width: 100%;
  height: 75px;
}

.product-page
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.product-page-inner
{
  position: relative;

  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;

  gap: 32px;
}
.product-page-gallery
{
  width: 65%;
}

.product-page-gallery-previews
{
  width: 48px;
  background: white;

  position: sticky;
  top: 100px;

  margin: 0 0 64px 0;
}
.product-page-gallery-previews-list
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
img.product-page-gallery-image-preview
{
  cursor: pointer;
  filter: opacity(50%);
}
img.product-page-gallery-image-preview:hover
{
  filter: opacity(75%);
}
img.product-page-gallery-image-preview.active
{
  filter: opacity(100%);
}

.product-page-content
{
  width: 30%;
  position: sticky;
  top: 100px;
}
.product-page-content-sticky
{
  width: 100%;
  position: sticky;
  top: 100px;
}
.product-page-title
{
  width: 100%;

  font-family: 'Ysabeau Infant', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  color: #442D26;
  margin: 0 0 24px 0;
}
.product-page-content-order-form
{
  margin: 0 0 24px 0;
}
.product-page-title-content-text
{


  margin: 0 0 64px 0;

}

.product-page-show-features-button
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  text-align: left;

  border: 0;
  background: none;

  cursor: pointer;
  box-sizing: border-box;
  padding: 8px 0;

  margin: 0 0 24px 0;
}


#slidePanel {
    position: fixed;
    top: 0;
    right: -400px; /* Начальное положение за пределами экрана */
    width: 400px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

#slidePanelCloseBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.product-page-gallery-inner
{
  width: 100%;
}

.gallery-dots
{
  display: none;
}
.gallery-cart
{
  display: none;
}
.gallery-cart-btn
{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 0;
  background: #283818;
  color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  padding: 8px 32px;
  margin: 0 0 0 0;
}

@media (min-width: 0px) and (max-width: 1000px)
{
  .gallery-cart
  {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    width: 100%;

    position: absolute;
    bottom: 50px;
    z-index: 99999;
  }

  .product-page-inner
  {
    flex-direction: column;
  }
  .product-page-gallery
  {
    width: 100%;
  }
  .product-page-content
  {
    width: 100%;
    box-sizing: border-box;
    padding: 0 24px;
  }

  .product-page-gallery-previews
  {
    display: none;
  }

  .product-page-breadcrumbs-inner
  {
    display: none;
  }
  #slidePanel .product-page-features
  {
    width: 100% !important;
  }
  /*
  * Горизонтальный слайдер
  */

  .gallery-dots
  {
    display: flex;
    justify-content: center;
    padding: 10px 0;
  }
  .dot
  {
    width: 14px;
    height: 4px;
    border-radius: 4px;
    background: #f2f2f2;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .dot.active
  {
    background: #333;
  }

  .product-page-gallery
  {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
  }

  .product-page-gallery-inner
  {
      display: flex;

      transition: transform 0.3s ease;
      height: 600px;
  }

  .product-page-gallery-image
  {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
  }
}
