.pagin{display:flex;flex-direction:column;align-items:center;font-size:large;margin-bottom:20px}.cell-6.cell-12-sm.footer-info{color:#968472}@media screen and (max-width:640px){.is-grid>[class*='cell-'],.row-products{padding-left:0;padding-right:0}}.product-item .product-image img,.product-image img{object-fit:cover !important;width:100% !important;height:100% !important;max-width:none !important;max-height:none !important}.product-item a.product-image.square[style]{padding-top:133.33% !important}.product-item .product-image.square{padding-top:133.33% !important}.icon{display:inline-block;width:1em;height:1em;vertical-align:middle;fill:currentColor}.icon-sm{width:0.875em;height:0.875em}.icon-lg{width:1.25em;height:1.25em}.icon-2x{width:2em;height:2em}.icon-3x{width:3em;height:3em}.icon-spin{animation:icon-spin 2s infinite linear}@keyframes icon-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}

/* Бегущая строка */
.marquee-box {
	overflow: hidden; 
	width: 100%;
	display: block;
	text-decoration: none;
    font-style: normal !important;
    font-weight: 400 !important;
	padding: 8px 0 8px 0;
    font-size: 13px !important;
    line-height: 20px !important;
	height: 36px;
}

.marquee-item {
	display: inline-block;
	padding-right: 500px;
}

.marguee-no-link {
	cursor: text !important;
}

/* Стилизация ошибки маски телефона (v23_mobile) */
input.phone-mask-invalid {
	border-color: #ff0000 !important;
	background-color: #fff5f5;
}/**
 * Simple Photo Viewer - стили
 * Размер: ~2 KB
 */

/* Модалка */
.photo-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-viewer.is-open {
  display: block;
  opacity: 1;
}

/* Затемнение фона */
.photo-viewer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

/* Контейнер */
.photo-viewer__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Фото */
.photo-viewer__content {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-viewer__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* Кнопка закрытия */
.photo-viewer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.photo-viewer__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Кнопки навигации */
.photo-viewer__prev,
.photo-viewer__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.photo-viewer__prev:hover,
.photo-viewer__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.photo-viewer__prev {
  left: 20px;
}

.photo-viewer__next {
  right: 20px;
}

/* Счетчик */
.photo-viewer__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 10;
}

/* Блокировка скролла body при открытой модалке */
body.photo-viewer-open {
  overflow: hidden;
}

/* Mobile адаптация */
@media screen and (max-width: 768px) {
  .photo-viewer__close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .photo-viewer__prev,
  .photo-viewer__next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .photo-viewer__prev {
    left: 10px;
  }

  .photo-viewer__next {
    right: 10px;
  }

  .photo-viewer__counter {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .photo-viewer__content {
    max-width: 95%;
    max-height: 95%;
  }
}

/* Анимация появления */
@keyframes photoViewerFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.photo-viewer.is-open .photo-viewer__image {
  animation: photoViewerFadeIn 0.3s ease;
}

/* ========================================
   SimpleModal Styles (v26_mobile)
   Легкая замена Fancybox: ~2 KB вместо 14 KB CSS
   ======================================== */

/* Overlay (темный фон) */
.simple-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}

.simple-modal-overlay.simple-modal-active {
  display: block;
}

.simple-modal-overlay.simple-modal-show {
  opacity: 1;
}

/* Модалка */
.simple-modal-active {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9999;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}

.simple-modal-active.simple-modal-show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  display: block;
}

/* Блокировка прокрутки body */
body.simple-modal-open {
  overflow: hidden;
}

/* Кнопка закрытия (совместимость с Fancybox классами) */
.simple-modal-close,
[data-fancybox-close],
.fancybox-button--close {
  cursor: pointer;
}

/* Адаптивность */
@media (max-width: 768px) {
  .simple-modal-active {
    max-width: 95%;
    max-height: 95vh;
  }
}

/* Анимации */
@keyframes simpleModalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes simpleModalFadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
}
