/* ============================================================
 * page-content.css — контентные секции тела страницы
 * (карусели, галерея, видео, дизайн-услуги, FAQ, SEO-блоки,
 *  доставка, таблица цен, реквизиты/форма, лайтбокс).
 *
 * Извлечено из iso-prod-carousel.css БЕЗ стилей старого калькулятора.
 * Все правила заперты под обёрткой .page-content-scope — они не могут
 * дотянуться до калькулятора нового шаблона. Палитра — новая (синий
 * акцент вместо жёлтого), переменные переопределены ниже.
 * Файл генерируется tools-скриптом; правки — можно и руками.
 * ============================================================ */
.page-content-scope {
  /* Палитра нового шаблона (page-leaflets.css) поверх legacy-имён */
  --brand-color: #0071E3;
  --color-yellow: #0071E3;
  --color-yellow-light: #EFF6FF;
  --color-yellow-dark: #DBEAFE;
  --color-green: #2E7D32;
  --color-green-light: rgba(46, 125, 50, 0.1);
  --color-text-dark: #1D1C1F;
  --color-text-body: #3C3C43;
  --color-text-light: #6E6E73;
  --color-text-gray: #6E6E73;
  --color-border-new: #D2D2D7;
  --color-border-dark: #D2D2D7;
  --color-border-light: #D2D2D7;
  --color-white: #FFFFFF;
  --color-red: #FF3B30;
  --color-blue: #0071E3;
  --color-green-highlight: #E8F5E9;
  --color-green-cross: #C8E6C9;
  --background-color: #FAFAFC;
  --font-family: inherit;
  --border-radius-main: 12px;
  --border-radius-small: 8px;
  --shadow-main: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.page-content-scope .action-button {
  background-color: var(--color-green);
  color: var(--color-white);
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: var(--border-radius-small);
  padding: 15px 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none !important;
  display: inline-block;
  text-align: center;
}

.page-content-scope .action-button:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.page-content-scope .section-padding-wrapper {
  margin: 100px auto;
}

.page-content-scope .product-gallery {
  display: flex;
  gap: 15px;
  flex: 1 1 500px;
  max-width: 550px;
  min-width: 280px;
  padding: 15px;
  border-radius: var(--border-radius-main);
  border: 1px solid var(--color-border-new);
  background-color: var(--color-white);
}

@media (min-width: 970px) {
.page-content-scope .product-gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}

.page-content-scope .thumbnails-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  flex-shrink: 0;
}

.page-content-scope .thumb-arrow {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border-new);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
  flex-shrink: 0;
}

.page-content-scope .thumb-arrow:hover {
  background: var(--color-white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-content-scope .thumb-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-content-scope .thumb-arrow svg {
  width: 18px;
  color: var(--color-text-dark);
}

.page-content-scope .thumbnails-scroller {
  flex-grow: 1;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  padding: 5px 2px;
  max-height: 435px;
}

.page-content-scope .thumbnails-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease-out;
}

.page-content-scope .thumbnail {
  width: 75px;
  height: 100px;
  border-radius: var(--border-radius-small);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition:
    transform 0.2s ease-out,
    border-color 0.2s ease-out;
}

.page-content-scope .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-content-scope .thumbnail:not(.active):hover {
  transform: scale(1.05);
}

.page-content-scope .thumbnail.active {
  border-color: var(--brand-color);
  transform: scale(1.05);
}

.page-content-scope .thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  backdrop-filter: blur(2px);
}

.page-content-scope .play-icon svg {
  width: 18px;
}

.page-content-scope .video-thumbnail {
  margin-top: auto;
}

.page-content-scope .video-count {
  font-size: 12px;
  color: var(--color-text-gray);
  text-align: center;
  flex-shrink: 0;
}

.page-content-scope .main-image-container {
  flex-grow: 1;
  position: relative;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  background-color: var(--background-color);
  aspect-ratio: 750 / 1000;
}

.page-content-scope .main-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}

.page-content-scope .loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s,
    visibility 0.2s;
}

.page-content-scope .loader-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.page-content-scope .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border-light);
  border-top: 4px solid var(--brand-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.page-content-scope .main-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

.page-content-scope .main-play-icon.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.page-content-scope .main-play-icon svg {
  width: 40px;
  padding-left: 5px;
}

.page-content-scope .pagination-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: none;
}

.page-content-scope .pagination-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.page-content-scope .pagination-dots .dot.active {
  background-color: var(--color-white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
.page-content-scope .product-gallery {
    flex-direction: column;
  }
.page-content-scope .main-image-container {
    order: -1;
  }
.page-content-scope .thumbnails-column {
    display: none;
  }
.page-content-scope .thumbnails-scroller {
    overflow-x: auto;
    overflow-y: hidden;
  }
.page-content-scope .thumbnails-list {
    flex-direction: row;
  }
.page-content-scope .thumb-arrow {
    display: none;
  }
.page-content-scope .video-thumbnail {
    margin-top: 0;
    margin-left: 10px;
  }
.page-content-scope .video-count {
    display: none;
  }
.page-content-scope .pagination-dots {
    display: flex;
  }
}

@media (max-width: 970px) {
.page-content-scope .product-gallery {
    position: static;
  }
}

.page-content-scope .carousel-container {
  position: relative;
  padding: 0;
  text-align: left;
}

.page-content-scope .carousel-viewport {
  overflow: hidden;
  padding: 20px 0;
}

.page-content-scope .carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.4s ease-out;
}

.page-content-scope .carousel-arrow {
  position: absolute;
  bottom: -70px;
  transform: translateY(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border-new);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
}

.page-content-scope .carousel-arrow:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-50%) scale(1.05);
}

.page-content-scope .carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
}

.page-content-scope .carousel-arrow svg {
  width: 20px;
  color: var(--color-text-dark);
}

.page-content-scope .carousel-arrow.prev {
  right: 60px;
}

.page-content-scope .carousel-arrow.next {
  right: 0px;
}

.page-content-scope .product-carousel-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 40px;
}

.page-content-scope .product-carousel-section .carousel-container {
  position: relative;
  padding: 0;
  text-align: left;
}

.page-content-scope .product-carousel-section .carousel-viewport {
  overflow: hidden;
}

.page-content-scope .product-card {
  display: block;
  text-decoration: none !important;
  border-radius: var(--border-radius-main);
  border: 1px solid var(--color-border-new);
  background: var(--color-white);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-basis: calc(33.333% - 15px);
  flex-shrink: 0;
}

.page-content-scope .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.page-content-scope .product-card img {
  width: 100%;
  height: 200px;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  display: block;
  background-color: var(--color-border-light);
}

.page-content-scope .product-card span {
  display: block;
  padding: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: center;
  font-size: 16px;
}

.page-content-scope .gallery-carousel-section {
  max-width: 1310px;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

.page-content-scope .gallery-carousel-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.page-content-scope .gallery-carousel-section p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-content-scope .carousel-track > .product-gallery {
  flex-basis: calc(50% - 11px);
  flex-shrink: 0;
  max-width: none;
}

@media (max-width: 1100px) {
.page-content-scope .product-card {
    flex-basis: calc(33.333% - 14px);
  }
}

@media (max-width: 900px) {
.page-content-scope .carousel-track > .product-gallery {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
.page-content-scope .carousel-container {
    padding: 0;
  }
.page-content-scope .carousel-arrow {
    top: 40%;
  }
.page-content-scope .carousel-arrow.prev {
    left: 10px;
  }
.page-content-scope .carousel-arrow.next {
    right: 10px;
  }
.page-content-scope .product-card {
    flex-basis: calc(50% - 10px);
  }
.page-content-scope .product-carousel-section .carousel-container {
    padding: 0;
  }
.page-content-scope .product-carousel-section .carousel-arrow {
    top: 35%;
  }
.page-content-scope .product-carousel-section .carousel-arrow.prev {
    left: 10px;
  }
.page-content-scope .product-carousel-section .carousel-arrow.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
.page-content-scope .product-card {
    flex-basis: 70%;
  }
.page-content-scope .product-carousel-section .carousel-track {
    padding: 0 15px;
  }
}

.page-content-scope .video-section {
  max-width: 1270px;
  padding: 30px;
  background-color: var(--background-color);
  border: 1px solid var(--color-border-new);
  border-radius: 16px;
  box-sizing: border-box;
}

.page-content-scope .video-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-content-scope .video-player-block {
  flex: 1 1 55%;
  position: relative;
  border-radius: var(--border-radius-main);
  overflow: hidden;
  background-color: #000;
}

.page-content-scope .video-iframe-wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  visibility: hidden;
}

.page-content-scope .video-player-block.video-active .video-iframe-wrapper {
  visibility: visible;
}

.page-content-scope .video-player-block iframe,
.page-content-scope .video-player-block video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-content-scope .video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.page-content-scope .video-player-block.video-active .video-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-content-scope .video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-content-scope .video-poster .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.page-content-scope .video-poster:hover .play-icon {
  transform: translate(-50%, -50%) scale(1);
}

.page-content-scope .video-poster .play-icon svg {
  width: 40px;
  padding-left: 2px;
}

.page-content-scope .video-text-block {
  flex: 1 1 45%;
}

.page-content-scope .video-text-block h2 {
  max-width: 400px;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  text-align: left;
}

.page-content-scope .separator-line {
  border: none;
  border-top: 3px solid var(--brand-color);
  width: 80px;
  margin: 0 0 20px 0;
  opacity: 1;
}

.page-content-scope .video-text-block p {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-content-scope .video-text-block p a {
  color: var(--color-text-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-dark);
}

@media (max-width: 900px) {
.page-content-scope .video-content-wrapper {
    flex-direction: column;
  }
.page-content-scope .video-player-block,
.page-content-scope .video-text-block {
    flex-basis: auto;
    width: 100%;
  }
.page-content-scope .video-text-block {
    text-align: center;
  }
.page-content-scope .separator-line {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-content-scope .design-services-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-content-scope .design-services-section .section-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.page-content-scope .design-services-section .section-header p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.page-content-scope .design-services-content {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border-new);
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.page-content-scope .design-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.page-content-scope .option-block h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-color);
  display: inline-block;
}

.page-content-scope .services-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-content-scope .services-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed var(--color-border-new);
  font-size: 16px;
  color: var(--color-text-body);
}

.page-content-scope .services-list li:last-child {
  border-bottom: none;
}

.page-content-scope .services-list .price {
  font-weight: 600;
  color: var(--color-text-dark);
  white-space: nowrap;
  padding-left: 20px;
}

.page-content-scope .service-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-content-scope .service-contact .phone-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.page-content-scope .self-prepare p {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-content-scope .self-prepare p:last-of-type {
  margin-bottom: 30px;
}

.page-content-scope .self-prepare p a {
  color: var(--color-text-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-dark);
}

.page-content-scope .accepted-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.page-content-scope .accepted-formats span {
  background-color: #edf2f7;
  color: var(--color-text-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--color-border-new);
}

.page-content-scope .download-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: var(--background-color);
  border: 1px solid var(--color-border-new);
  border-radius: var(--border-radius-small);
  color: var(--color-text-body);
  text-decoration: none !important;
  font-weight: 600;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

.page-content-scope .download-link:hover {
  color: var(--color-text-body);
  background-color: #edf2f7;
  border-color: var(--color-border-dark);
}

.page-content-scope .download-link .download-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

@media (max-width: 900px) {
.page-content-scope .design-options {
    grid-template-columns: 1fr;
    gap: 50px;
  }
.page-content-scope .design-services-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
.page-content-scope .design-services-content {
    padding: 20px;
  }
.page-content-scope .option-block h3 {
    font-size: 20px;
  }
.page-content-scope .services-list li {
    font-size: 15px;
  }
.page-content-scope .service-contact {
    flex-direction: column;
    align-items: stretch;
  }
.page-content-scope .service-contact .phone-number {
    text-align: center;
    margin-top: 10px;
  }
.page-content-scope .self-prepare p {
    font-size: 15px;
  }
.page-content-scope .download-link {
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
}

.page-content-scope .faq-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-content-scope .faq-section .section-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}

.page-content-scope .faq-section .section-header p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.page-content-scope .faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-content-scope .faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-new);
  border-radius: var(--border-radius-main);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 0;
}

/* Свечение фокуса у FAQ убрано (был полупрозрачный жёлтый остаток
   старой темы — rgba(255,200,10,.4)). Активное состояние и так видно
   по голубой заливке вопроса. */
.page-content-scope .faq-item:focus-within {
  box-shadow: none;
}

.page-content-scope .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: var(--background-color);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: background-color 0.2s ease;
}

.page-content-scope .faq-question:hover {
  background-color: #e9ecef;
}

.page-content-scope .faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-light);
  transition: transform 0.3s ease-out;
  margin-left: 15px;
  flex-shrink: 0;
}

.page-content-scope .faq-item.active .faq-question {
  background-color: #e9ecef;
}

.page-content-scope .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.page-content-scope .faq-answer-wrapper {
  max-height: 0;
  max-width: 900px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.page-content-scope .faq-answer {
  padding: 25px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.page-content-scope .faq-answer p {
  margin-top: 0;
  margin-bottom: 1em;
}

.page-content-scope .faq-answer p:last-child {
  margin-bottom: 0;
}

.page-content-scope .faq-answer a {
  color: var(--color-text-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--color-text-dark);
}

@media (max-width: 768px) {
.page-content-scope .faq-question {
    padding: 15px;
    font-size: 16px;
  }
.page-content-scope .faq-answer {
    padding: 20px;
    font-size: 15px;
  }
}

.page-content-scope .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  padding: 20px;
  box-sizing: border-box;
  gap: 20px;
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.page-content-scope .lightbox.open {
  opacity: 1;
  visibility: visible;
}

.page-content-scope .lightbox.open .lightbox-main {
  transform: scale(1);
}

.page-content-scope .lightbox-thumbnails {
  flex-basis: 100px;
  overflow-y: auto;
  padding: 5px;
  box-sizing: content-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-content-scope .lightbox-thumbnails::-webkit-scrollbar {
  display: none;
}

.page-content-scope .lightbox-thumbnails .thumbnail {
  margin-bottom: 10px;
}

.page-content-scope .lightbox-thumbnails.active-drag {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.page-content-scope .lightbox-main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  gap: 20px;
  align-items: stretch;
}

.page-content-scope .lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-grow: 1;
}

.page-content-scope .lightbox-image,
.page-content-scope .lightbox-video {
  max-width: 100%;
  max-height: 100%;
  display: none;
}

.page-content-scope .lightbox-image.active,
.page-content-scope .lightbox-video.active {
  display: block;
}

.page-content-scope .lightbox-arrow,
.page-content-scope .lightbox-close {
  background: rgba(30, 30, 30, 0.6);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  position: absolute;
  z-index: 10;
}

.page-content-scope .lightbox-arrow:hover,
.page-content-scope .lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.page-content-scope .lightbox-arrow svg,
.page-content-scope .lightbox-close svg {
  width: 24px;
}

.page-content-scope .lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.page-content-scope .lightbox-prev {
  left: 10px;
}

.page-content-scope .lightbox-next {
  right: 10px;
}

.page-content-scope .lightbox-close {
  top: 26px;
  right: 26px;
}

.page-content-scope .lightbox-info-panel {
  flex-basis: 320px;
  flex-shrink: 0;
  background: rgba(40, 40, 40, 0.7);
  border-radius: var(--border-radius-main);
  padding: 30px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-content-scope .lightbox-info-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 15px 0;
}

.page-content-scope .lightbox-info-panel p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
  opacity: 0.9;
}

.page-content-scope .lightbox-info-panel .action-button {
  width: 100%;
  margin-top: auto;
  box-sizing: border-box;
}

.page-content-scope .lightbox-main .lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.page-content-scope .lightbox-main .lightbox-prev {
  left: 10px;
}

.page-content-scope .lightbox-main .lightbox-next {
  right: 10px;
}

@media (max-width: 1100px) {
.page-content-scope .lightbox {
    flex-direction: column;
    padding: 10px;
  }
.page-content-scope .lightbox-thumbnails {
    min-height: 120px;
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    flex-shrink: 0;
  }
.page-content-scope .lightbox-main {
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
  }
.page-content-scope .lightbox-info-panel {
    flex-basis: auto;
    flex-grow: 0;
    flex-shrink: 0;
    order: 2;
    overflow-y: auto;
  }
.page-content-scope .lightbox-content {
    flex-grow: 1;
    flex-basis: 0;
    min-height: 0;
  }
}

@media (max-width: 768px) {
.page-content-scope .lightbox {
    flex-direction: column;
  }
.page-content-scope .lightbox-thumbnails {
    flex-basis: auto;
    overflow-x: auto;
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    min-height: 120px;
  }
.page-content-scope .lightbox-thumbnails .thumbnail {
    margin-bottom: 0;
  }
.page-content-scope .lightbox-close {
    top: 174px;
    right: 20px;
  }
.page-content-scope .lightbox-prev {
    left: 12px;
  }
.page-content-scope .lightbox-next {
    right: 12px;
  }
}

.page-content-scope .price-table-section .section-header {
  text-align: center;
  margin-bottom: 20px;
}

.page-content-scope .price-table-section h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.page-content-scope .table-description-wrapper {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.page-content-scope .table-description-wrapper p {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

.page-content-scope .table-description-wrapper a {
  color: var(--color-text-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content-scope .price-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
}

.page-content-scope .price-table-wrapper {
  border: 1px solid var(--color-border-new);
  border-radius: var(--border-radius-main);
  overflow: hidden;
  min-width: 800px;
}

.page-content-scope .price-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  table-layout: fixed;
  border-style: hidden;
}

.page-content-scope .price-table-wrapper th,
.page-content-scope .price-table-wrapper td {
  padding: 18px 20px;
  border: 1px solid var(--color-border-new);
  font-size: 16px;
  vertical-align: middle;
}

.page-content-scope .price-table-wrapper thead th {
  background-color: var(--color-yellow);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
}

.page-content-scope .price-table-wrapper thead th:first-child {
  text-align: center;
}

.page-content-scope .price-table-wrapper tbody td {
  background-color: var(--color-white);
  transition: background-color 0.15s ease-out;
}

.page-content-scope .price-table-wrapper .format-cell {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  text-align: center;
  border-left: none;
}

.page-content-scope .price-table-wrapper tbody td:not(.format-cell):not(.price-cell) {
  color: var(--color-text-dark);
  font-weight: 600;
}

.page-content-scope .price-table-wrapper th:last-child,
.page-content-scope .price-table-wrapper td:last-child {
  border-right: none;
}

.page-content-scope .price-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

.page-content-scope .price-table-wrapper tbody td.highlighted {
  background-color: var(--color-green-cross);
}

.page-content-scope .price-table-wrapper tbody td.price-cell {
  text-align: center;
  font-weight: 400;
  color: var(--color-text-body);
}

.page-content-scope .price-table-wrapper tbody td.price-cell:hover {
  cursor: pointer;
}

.page-content-scope .price-table-wrapper td.highlight-row:not(.highlighted) {
  background-color: var(--color-green-highlight);
}

.page-content-scope .price-table-wrapper td.highlight-col:not(.highlighted) {
  background-color: var(--color-green-highlight);
}

.page-content-scope .price-table-wrapper td.highlight-cell:not(.highlighted) {
  background-color: var(--color-green-cross);
}

.page-content-scope .table-cta-wrapper {
  text-align: right;
  margin-top: 30px;
}

.page-content-scope .info-content-section {
  display: flex;
  gap: 40px;
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
}

.page-content-scope .info-main-content {
  flex: 2 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-content-scope .info-sidebar {
  flex: 1 1 0;
  min-width: 280px; /* Мин. ширина для сайдбара */
  top: 20px;
  align-self: flex-start;
}

.page-content-scope .info-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.page-content-scope .info-block-image {
  flex: 1 1 40%;
  border-radius: var(--border-radius-main);
  overflow: hidden;
  background-color: var(--background-color);
}

.page-content-scope .info-block-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.page-content-scope .info-block-text {
  flex: 1 1 60%;
}

.page-content-scope .info-block-text h2 {
  max-width: 100%;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 20px;
  text-align: left;
}

.page-content-scope .info-block-text p {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 0;
}

.page-content-scope .info-block-text p:last-child {
  margin-bottom: 0;
}

.page-content-scope .info-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 20px 20px;
  font-size: 16px;
  color: var(--color-text-body);
}

.page-content-scope .info-list li {
  margin-bottom: 8px;
}

.page-content-scope .info-block-text .separator-line {
  border: none;
  border-top: 3px solid var(--brand-color);
  width: 80px;
  margin: 0 0 20px 0;
  opacity: 1;
}

.page-content-scope .styled-info-box {
  background-color: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border-new);
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.page-content-scope .styled-info-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-top: 0;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-color);
  display: inline-block;
}

.page-content-scope .styled-dot-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.page-content-scope .styled-dot-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}

.page-content-scope .styled-dot-list li:last-child {
  margin-bottom: 0;
}

.page-content-scope .styled-dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.page-content-scope .styled-dot-list li:nth-child(1)::before {
  background-color: var(--color-yellow);
}

.page-content-scope .styled-dot-list li:nth-child(2)::before {
  background-color: var(--color-text-body);
}

.page-content-scope .styled-dot-list li:nth-child(3)::before {
  background-color: var(--color-blue);
}

.page-content-scope .styled-dot-list li:nth-child(4)::before {
  background-color: var(--color-red);
}

.page-content-scope .styled-dot-list li:nth-child(5)::before {
  background-color: var(--color-green);
}

.page-content-scope .styled-dot-list li:nth-child(6)::before {
  background-color: var(--color-yellow);
}

.page-content-scope .styled-dot-list li a {
  color: var(--color-text-body);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  font-weight: 500;
}

.page-content-scope .styled-dot-list li a:hover {
  color: var(--color-text-dark);
}

.page-content-scope .sidebar-cta-wrapper {
  text-align: left;
  margin-top: 30px;
}

.page-content-scope .info-hidden-content {
  /* Скрываем по умолчанию */
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  /* Плавный переход */
  transition:
    max-height 0.7s ease-out,
    opacity 0.5s ease-out,
    visibility 0.7s;

  /* Сохраняем gap от родителя */
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-content-scope .info-hidden-content.visible {
  max-height: 5000px; /* Достаточно большое значение */
  opacity: 1;
  visibility: visible;
}

.page-content-scope .info-expand-button-wrapper {
  text-align: left;
}

.page-content-scope .action-button-secondary {
  padding: 12px 30px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--border-radius-small);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  background-color: var(--color-white);
  color: var(--color-text-dark);

  display: inline-flex;
  align-items: center;
  gap: 8px; /* Расстояние между текстом и иконкой */
}

.page-content-scope .action-button-secondary:hover {
  border-color: var(--color-text-body);
  background: var(--background-color);
  box-shadow: var(--shadow-main);
}

.page-content-scope .action-button-secondary .expand-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease-out;
}

.page-content-scope .action-button-secondary.is-expanded .expand-icon {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
.page-content-scope .info-content-section {
    flex-direction: column;
  }
.page-content-scope .info-sidebar {
    position: static;
    width: 100%;
    margin-top: 30px;
    min-width: unset;
  }
}

@media (max-width: 768px) {
.page-content-scope .info-block {
    flex-direction: column;
  }
.page-content-scope .info-block-image,
.page-content-scope .info-block-text {
    flex-basis: auto;
    width: 100%;
  }
}

.page-content-scope .delivery-composite-section {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% / 50% */
  gap: 30px;
  align-items: stretch; /* Растягиваем колонки по высоте */
}

.page-content-scope .delivery-composite-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.page-content-scope .delivery-composite-right {
  display: flex;
}

.page-content-scope .delivery-option-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-main);
  border: 1px solid var(--color-border-new);
  padding: 30px;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
}

.page-content-scope .delivery-options-grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.page-content-scope .delivery-option-item {
  display: flex;
  flex-direction: column;
}

.page-content-scope .delivery-option-item:first-child {
  border-right: 1px dashed var(--color-border-new);
  padding-right: 25px;
}

.page-content-scope .delivery-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-content-scope .delivery-icon-wrapper svg {
  width: 30px;
  height: 30px;
}

.page-content-scope .delivery-option-card h3,
.page-content-scope .delivery-option-item h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 10px 0;
}

.page-content-scope .delivery-option-card p,
.page-content-scope .delivery-option-item p {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin: 0;
}

.page-content-scope .delivery-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 15px !important;
}

.page-content-scope .delivery-price.free {
  color: var(--color-green); /* Бесплатно - зеленым */
}

.page-content-scope .delivery-pricing-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  font-size: 16px;
}

.page-content-scope .delivery-pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border-new);
}

.page-content-scope .delivery-pricing-list li:last-child {
  border-bottom: none;
}

.page-content-scope .delivery-pricing-list li span {
  color: var(--color-text-body);
}

.page-content-scope .delivery-pricing-list li strong {
  color: var(--color-text-dark);
  white-space: nowrap;
  padding-left: 15px;
}

.page-content-scope .delivery-benefit-box {
  background-color: var(--color-yellow-light);
  border-color: var(--color-yellow);
  box-shadow: none;
}

.page-content-scope .delivery-benefit-box h3 {
  border-bottom: none;
  padding-bottom: 0;
}

.page-content-scope .benefit-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-green); /* Выделяем цену */
  margin-top: -10px;
}

.page-content-scope .delivery-benefit-box p {
  color: var(--color-text-body);
}

.page-content-scope .delivery-banner-card {
  width: 100%; /* Растягиваем на всю правую колонку */
  height: 100%; /* Растягиваем на всю высоту */
}

.page-content-scope .delivery-banner-card h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 20px 0;
  text-align: left;
}

.page-content-scope .delivery-banner-card .info-list {
  margin-bottom: 0;
  margin-left: 0; /* Сбрасываем отступ, т.к. это не .info-block-text */
  font-size: 15px;
}

.page-content-scope .delivery-banner-image-wrapper {
  margin-top: auto;
  padding-top: 10px;
  text-align: center;
}

.page-content-scope .delivery-banner-image-wrapper img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 900px) {
.page-content-scope .delivery-composite-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
.page-content-scope .delivery-options-grid-content {
    grid-template-columns: 1fr;
  }
.page-content-scope .delivery-option-item:first-child {
    border-right: none;
    border-bottom: 1px dashed var(--color-border-new);
    padding-right: 0;
    padding-bottom: 25px;
  }
}

.page-content-scope .po-contacts-section .po-contacts-grid {
  display: flex;
  flex-wrap: wrap; /* Для мобильной адаптации */
  margin-left: -15px; /* Компенсация отступов .col- */
  margin-right: -15px;
}

.page-content-scope .po-contacts-section .po-contacts-col-left,
.page-content-scope .po-contacts-section .po-contacts-col-right {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
.page-content-scope .po-contacts-section .po-contacts-col-left {
    flex: 0 0 40%; /* Как .col-md-7 */
    max-width: 40%;
  }
.page-content-scope .po-contacts-section .po-contacts-col-right {
    flex: 0 0 60%; /* Как .col-md-5 */
    max-width: 60$;
  }
}

.page-content-scope .po-contacts-details .po-contacts-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 25px 0;
  padding: 0;
  line-height: 1.3;
}

.page-content-scope .po-contacts-details .po-contacts-block {
  margin-bottom: 20px;
}

.page-content-scope .po-contacts-details .po-contacts-block p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-body);
  margin: 0 0 5px 0;
  padding: 0;
}

.page-content-scope .po-contacts-details .po-contacts-block p strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

.page-content-scope .po-contacts-details .po-contacts-email {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.page-content-scope .po-contacts-details .po-contacts-icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--brand-color); /* Оранжевый фон */
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white); /* Белая иконка */
}

.page-content-scope .po-contacts-details .po-contacts-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.page-content-scope .po-contacts-details .po-contacts-email-link {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-color); /* Оранжевый текст */
  text-decoration: none;
  transition: color 0.2s;
}

.page-content-scope .po-contacts-details .po-contacts-email-link:hover {
  color: var(--color-text-dark);
  text-decoration: none;
}

.page-content-scope .po-contacts-form-wrapper {
  background-color: var(--background-color); /* Светло-серый фон F8F9FA */
  border-radius: var(--border-radius-main);
  padding: 30px;
  height: 100%;
  box-sizing: border-box; /* Важно для padding */
}

.page-content-scope .po-contacts-form-wrapper .po-contacts-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-gray);
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.3;
}

.page-content-scope .po-contacts-form-wrapper .po-contacts-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin: 0 0 25px 0;
  padding: 0;
  line-height: 1.3;
}

.page-content-scope .po-contacts-form-group {
  margin-bottom: 15px;
}

.page-content-scope .po-contacts-input,
.page-content-scope .po-contacts-textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  border: 1px solid var(--color-border-new); /* Тонкая серая рамка */
  border-radius: var(--border-radius-small);
  box-sizing: border-box;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.page-content-scope .po-contacts-textarea {
  min-height: 120px;
  resize: vertical;
}

.page-content-scope .po-contacts-input:focus,
.page-content-scope .po-contacts-textarea:focus {
  outline: none;
  border-color: var(--brand-color);
  /* Лёгкое синее свечение в тон новой схеме (было жёлтое от старой темы). */
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}

.page-content-scope .po-contacts-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.page-content-scope .po-contacts-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-new);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

.page-content-scope .po-contacts-checkbox:checked {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
}

.page-content-scope .po-contacts-checkbox:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-text-dark); /* Темная галочка */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.page-content-scope .po-contacts-checkbox-label {
  font-size: 14px;
  color: var(--color-text-body);
  line-height: 1.5;
  cursor: pointer;
}

.page-content-scope .po-contacts-policy-link {
  color: var(--brand-color); /* Оранжевая ссылка */
  text-decoration: underline;
  transition: color 0.2s;
}

.page-content-scope .po-contacts-policy-link:hover {
  color: var(--color-text-dark);
}

.page-content-scope .po-contacts-submit-btn {
  display: inline-block;
  padding: 15px 30px; /* Как у .action-button */
  font-size: 16px;
  font-weight: 700; /* 700 это bold */
  color: var(--color-white); /* Белый текст */
  background-color: var(--color-green); /* Зеленый фон */
  border: none; /* Убираем рамку */
  border-radius: var(--border-radius-small);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); /* Тень от .action-button */
  transition:
    transform 0.2s,
    box-shadow 0.2s; /* Анимация от .action-button */
}

.page-content-scope .po-contacts-submit-btn:hover {
  color: var(--color-white); /* Белый текст */
  transform: translateY(-2px); /* Эффект от .action-button:hover */
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4); /* Эффект от .action-button:hover */
  text-decoration: none;
}

@media (max-width: 767px) {
.page-content-scope .po-contacts-form-wrapper {
    margin-top: 40px; /* Отступ на мобильных */
  }
}

.page-content-scope .po-contacts-error-message {
  display: none; /* Скрыт по умолчанию */
  font-size: 15px;
  font-weight: 600;
  color: var(--color-red); /* Красный цвет */
  background-color: rgba(229, 62, 62, 0.05); /* Легкий красный фон */
  border: 1px solid rgba(229, 62, 62, 0.2); /* Легкая красная рамка */
  border-radius: var(--border-radius-small);
  padding: 10px 15px;
  margin-bottom: 20px;
  text-align: center;
}

.page-content-scope .info-block-text ul,
.page-content-scope .info-block-text ol {
  /* Применяем те же стили, что и у <p> */
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.6;

  /* Управляем отступами, как у <p> */
  margin-top: 0;
  margin-bottom: 20px;

  /* Устанавливаем внутренний отступ для маркеров */
  /* (вместо margin-left: 0; из .container ul) */
  padding-left: 25px;
}

.page-content-scope .info-block-text ul {
  list-style-type: disc; /* Круглые маркеры */
}

.page-content-scope .info-block-text ol {
  list-style-type: decimal; /* Цифры */
}

.page-content-scope .info-block-text li {
  /* Отступ между пунктами списка */
  margin-bottom: 8px;
}

.page-content-scope .info-block-text li:last-child {
  margin-bottom: 0;
}

.page-content-scope .info-block-text ul:last-child,
.page-content-scope .info-block-text ol:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
.page-content-scope .product-gallery,
.page-content-scope .product-selector {
    order: 1; /* Явно указываем: быть первым */
    width: 100%;
    max-width: 100%; /* Растягиваем на всю ширину */
    flex: 0 0 auto;
    position: static !important; /* Убираем липкость (sticky) на мобильных, чтобы не ломать скролл */
    margin: 0;
  }
}

@media (max-width: 480px) {
.page-content-scope .section-padding-wrapper {
    margin: 20px auto !important;
  }
}

.page-content-scope .calc-loader-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-text-dark, #222);
    border-radius: 50%;
    animation: calc-loader-spin 0.9s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes calc-loader-spin { to { transform: rotate(360deg); } }

/* ============================================================
 * Правки поверх извлечённых стилей (2026-06-10, по замечаниям)
 * ============================================================ */

/* 1. Отступы между секциями компактнее (было 100px), первая секция —
 *    ближе к корзине калькулятора. */
.page-content-scope .section-padding-wrapper {
  margin: 64px auto;
}
.page-content-scope > section:first-child {
  margin-top: 28px;
}

/* 2. Кнопки-«пилюли»: чёрные, скруглённые, без теней. */
.page-content-scope .action-button,
.page-content-scope .po-contacts-submit-btn {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  border-radius: 999px;
  box-shadow: none;
}
/* Ховер — как у кнопки «Оформить заказ» в корзине калькулятора
   (.lf-cart-btn:hover): заливка синим + лёгкое увеличение. */
.page-content-scope .action-button:hover,
.page-content-scope .po-contacts-submit-btn:hover {
  background-color: var(--brand-color);
  color: var(--color-white);
  box-shadow: none;
  transform: scale(1.02);
}

/* 3. Активные состояния — голубые, как в калькуляторе
 *    (FAQ-аккордеон и подсветка таблицы цен; были серый/зелёный). */
.page-content-scope .faq-question:hover,
.page-content-scope .faq-item.active .faq-question {
  background-color: #E8F1FD;
}
.page-content-scope .faq-item.active .faq-icon {
  color: var(--brand-color);
}
.page-content-scope .price-table-wrapper td.highlight-row:not(.highlighted),
.page-content-scope .price-table-wrapper td.highlight-col:not(.highlighted) {
  background-color: #E8F1FD;
}
.page-content-scope .price-table-wrapper tbody td.highlighted,
.page-content-scope .price-table-wrapper td.highlight-cell:not(.highlighted) {
  background-color: #CFE3FB;
}

/* 4. Заголовок таблицы цен: серый чуть темнее фона страницы (#F6F5F8). */
.page-content-scope .price-table-wrapper thead th {
  background-color: #ECEBEF;
  color: var(--color-text-dark);
}

/* 5. Чекбокс согласия — стандартный белый, без цветной заливки. */
.page-content-scope .po-contacts-checkbox:checked {
  background-color: var(--color-white);
  border-color: var(--color-border-new);
}
.page-content-scope .po-contacts-checkbox:checked::after {
  color: var(--color-text-dark);
}
