
/* ===== Базовые стили ===== */
:root {
  --primary-color: #3d6a80;
  --primary-hover: #355a6d;
  --text-light: white;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  
}


/* Шрифт для заголовков */
@font-face {
    font-family: 'Brigantina';
    src: url('ST-Brigantina-free.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Шрифт для основного текста */
@font-face {
    font-family: 'Alegreya';
    src: url('Alegreya-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Brigantina', serif;
  letter-spacing: 0.4vw !important; 
  
  font-weight: 500;
}

body {
  font-family: 'Alegreya', 'Arial', sans-serif;
  margin: 0;
  padding: 0px;
  background: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}




.main-title {
  font-size: 8vw;
 
   
   
  color: var(--primary-color);
  text-align: center;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}












/* ===== Контейнер вкладок ===== */
.tabs-container {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 100vw; /* ===== влияет на поля ===== */
  
}

/* ===== Кнопки навигации ===== */
.tab-nav-button {
  width: 60px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.tab-nav-button:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.tab-nav-button:active {
  transform: scale(0.98);
}

/* ===== Основной блок вкладок ===== */
.tabs {
  flex-grow: 1;
  background-image: url("../images/background_2.jpg"); /* 🔹 путь к твоей картинке */
  background-size: cover;       /* чтобы картинка растягивалась */
  background-position: center top;;  /* центрируем изображение */
  background-repeat: no-repeat; /* не повторяем */
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background-attachment: fixed;
}

/* ===== Панель с кнопками вкладок ===== */
.tab-buttons {
  display: flex;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 500;
  flex: 1;
  text-align: center;
  background: #aeb9c2;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  min-height: 60px;
}

.tab-btn:hover {
  background: #9CA6AE;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color), #1e4a63);
  color: var(--text-light);
  font-weight: bold;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
}

/* ===== Контент вкладок ===== */
.tab-contents {
  padding: 10px 0px 30px 30px;
}

.tab-content {
  display: none;
  font-size: 16px;
  line-height: 1;
  color: #333;
}

.tab-content h2 {
  font-size: 9vw;
  margin-top: 0;
  margin-bottom: 0px;
  color: var(--primary-color);
  text-align: center;
}

.tab-content p {
	 margin-top: 0;
  margin-bottom: 15px;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}















.gallery-container {
    margin: 0px 0;
    padding: 0 15px;
    margin-right: auto;
    max-width: 32%;
}
#tab6 .gallery-container {
        margin: 20px 0;
    padding: 0 15px;
    margin-right: auto;
    max-width: 49%;
}
.swiper {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    
}

#tab6 .swiper {
    
	 aspect-ratio: 4 / 3; 
     
}

.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}



#tab6 .swiper-slide img {
    width: 100%;
    height: 100%;
    max-height: 100%;
	max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}







        .swiper-pagination-bullet-active {
            background: #fff;
        }
        
        .art-description {
            margin-top: 15px;
            text-align: center;
            font-style: italic;
            color: #666;
        }
		
		
		
		
		.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color); /* Используем ваш основной цвет */
  background: transparent !important;;
  width: 40px;
  height: 40px;
  
  transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--primary-hover); /* Цвет при наведении */
  background: transparent !important;;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-hover);
}
		
		
		
		
		.juxtapose {
     width 100%;  /* Или любой другой размер */
     
}







/* Полностью скрывает логотип и ссылку JuxtaposeJS */
.jx-knightlab {
    display: none !important;
}
/* Скрывает логотип juxtapose.js */
.jx-logo, .jx-credit {
    display: none !important;
}
		
		
		.content-wrapper {
    display: flex;          /* Включаем flex-расположение */
    align-items: flex-start;    /* Выравниваем по вертикали */
    gap: 0;         
	 margin-top: 20px;
	 margin-bottom: 100px;
	
    /* Расстояние между слайдером и текстом */
}

.slider-container {
    flex: 0.5;               /* Слайдер занимает доступное пространство */
   /* max-width: 600px; */  
margin-top: 20px;    /* Ограничиваем ширину (по желанию) */
}

.text-content {
    flex:  1;               /* Текст также занимает доступное пространство */
    padding-left: 20px;  
	 /* Добавляем только левый отступ если нужен */
    text-align: left; /* Выравнивание текста по левому краю */
    margin: 0; /* Убираем внешние отступы */
     	/* Отступы для текста */
}
		
		.text-content p {
    color: #470b47;
   line-height: 1.1;
    font-size: 2vw;
   font-weight: 400;
    
}





.highlight1 {
    color: #9f1d4b; /* оранжевый */
    
}

.highlight2 {
    color: #864108; /* оранжевый */
    
}

.highlight3 {
    color: #0e76d7; /* оранжевый */
    
}










.text-with-icons {
    display: flex;
    align-items: flex-start;
    gap: 15px; /* Расстояние между иконками и текстом */
}

.icons-column {
    display: flex;
    flex-direction: column;
    gap: 10%; /* Расстояние между иконками */
    flex-shrink: 0;
     width: 15%;	/* Чтобы не сжимался */
}

.icon {
    width: 100%; /* или любой другой размер в vw */
    height: auto; /* высота автоматически по пропорциям */
    aspect-ratio: 613/784; /* ≈ 0.782 */
    object-fit: cover;
    border-radius: 10%;
}

.text-part {
	padding-top: 2.5%;
    flex: 1; /* Текст занимает всё оставшееся пространство */
}








.image-content {
    flex: 1;
    padding-left: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column; /* Меняем направление на колонку */
    align-items: flex-start; /* Выравниваем по центру */
    gap: 15px; /* Отступ между заголовком и картинкой */
}

.side-image {
    max-width: 40%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}










/* ===== Кнопка оформления заказа ===== */
.order-button-container {
    position: fixed;
    bottom: 30px;
    right: 60px;
    z-index: 1000;
}

.order-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-color),#1e4a63);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 100;
    font-size: 2vw;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.order-button:hover {
    background: linear-gradient(135deg, var(--primary-hover), #2e4a63);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: var(--text-light);
    text-decoration: none;
}

.order-button:active {
    transform: translateY(-1px);
}

.order-button i {
    font-size: 3vw;
}


		/* ===== Стили для формы заказа ===== */
.order-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.order-form-container h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 100;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color),#1e4a63);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--primary-color),#2e4a63);
    transform: translateY(-2px);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 100;
}

.back-link:hover {
    text-decoration: underline;
}
		
		/* ===== Стили для загрузки файлов ===== */
.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: #f0f8f0;
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: #e8f5e8;
    transform: scale(1.02);
}

.file-upload-area i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
    transition: var(--transition);
}

.file-upload-area:hover i {
    color: var(--primary-color);
}

.file-upload-area p {
    margin: 10px 0;
    font-weight: 100;
    color: #333;
}

.file-types {
    font-size: 12px;
    color: #888;
}

.file-input {
    display: none;
}

.file-preview {
    margin-top: 20px;
    display: none;
}

.file-preview.active {
    display: block;
}

.preview-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 10px;
}

.preview-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.preview-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.change-image {
    background: var(--primary-color);
    color: white;
}

.change-image:hover {
    background: var(--primary-hover);
}

.remove-image {
    background: #ff4757;
    color: white;
}

.remove-image:hover {
    background: #ff3742;
}

.file-info {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.file-info .file-name {
    font-weight: bold;
    color: var(--primary-color);
}

.file-info .file-size {
    color: #888;
}

/* Стили для миниатюр в случае нескольких файлов */
.preview-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Стили для миниатюр нескольких файлов */
.preview-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid #ddd;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.thumbnail-remove:hover {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}

.thumbnail-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px;
    font-size: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.files-count {
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.files-size {
    color: #666;
    font-size: 14px;
}

/* Кнопка добавления файлов */
.add-more-button {
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.add-more-button:hover {
    background: var(--primary-hover);
}

.add-more-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}





/* ===== Полноэкранный просмотр изображений с навигацией ===== */
.image-modal {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  display: flex !important;
  opacity: 1;
}

.image-modal img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-modal .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.image-modal .close:hover {
  color: #ccc;
}

/* 🔹 Стрелки навигации */
.image-modal .arrow {
  position: absolute;
  top: 50%;
  font-size: 60px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  transition: 0.2s;
}

.image-modal .arrow.left {
  left: 40px;
}

.image-modal .arrow.right {
  right: 40px;
}

.image-modal .arrow:hover {
  color: #ccc;
  transform: translateY(-50%) scale(1.2);
}

.swiper-slide img {
  cursor: zoom-in;
}





/* ===== Анимации ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}










/* ===== Адаптивность ===== */
@media (max-width: 768px) {
  .tabs-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .tab-nav-button {
    width: 100%;
    height: 50px;
    border-radius: 8px;
  }
  
  .tab-buttons {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    min-width: 50%;
    padding: 15px;
    font-size: 16px;
  }
}



@media (max-width: 768px) {
    .order-button-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }
    
    .order-button {
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
}








/* По умолчанию (на компьютере) гамбургер скрыт */
.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
}

/* Мобильная версия */
@media (max-width: 768px) {

  /* Скрываем вкладки сверху */
  .tab-buttons {
    display: none !important;
  }

  /* Показываем всё содержимое подряд */
  .tab-content {
    display: block !important;
  }

  /* Гамбургер — закреплён сверху слева */
  .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), #2c3e50);
    color: white;
    font-size: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  }

  .menu-toggle.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: rotate(90deg);
  }

  /* Улучшенное выпадающее меню - компактное */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 86px;
    left: 20px;
    right: 20px;
    padding: 8px 0; /* Уменьшили паддинг сверху/снизу */
    border-radius: 16px;
    box-shadow: 
      0 10px 40px rgba(0,0,0,0.15),
      0 0 0 1px rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-height: 75vh; /* Увеличили максимальную высоту */
    overflow-y: auto;
	 width: fit-content; /* Ширина по содержимому */
    min-width: 200px; /* Минимальная ширина */
    max-width: 90%; /* Максимальная ширина на всякий случай */
	
	
	
	
  }

  /* Когда меню открыто */
  .mobile-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* Крупные ссылки с минимальными отступами */
  .mobile-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 20px; /* Увеличили шрифт */
    padding: 18px 20px; /* Увеличили вертикальные паддинги */
    margin: 2px 12px; /* Уменьшили отступы между пунктами */
    text-align: left;
    font-weight: 600; /* Более жирный шрифт */
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1.2;
	
	
	
  }

  /* Упрощенные иконки */
  .mobile-menu a::before {
    content: "▸";
    margin-right: 16px;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.7;
  }

  .mobile-menu a:hover {
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .mobile-menu a:hover::before {
    transform: translateX(4px);
    color: white;
    opacity: 1;
  }

  /* Плавное появление пунктов меню */
  .mobile-menu a {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }

  .mobile-menu.show a {
    opacity: 1;
    transform: translateX(0);
  }

  /* Задержка для анимации появления пунктов */
  .mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
  .mobile-menu a:nth-child(2) { transition-delay: 0.12s; }
  .mobile-menu a:nth-child(3) { transition-delay: 0.16s; }
  .mobile-menu a:nth-child(4) { transition-delay: 0.20s; }
  .mobile-menu a:nth-child(5) { transition-delay: 0.24s; }
  .mobile-menu a:nth-child(6) { transition-delay: 0.28s; }

  /* Компактный вариант - еще меньше свободного пространства */
  .mobile-menu.compact {
    padding: 4px 0; /* Еще меньше паддинг */
  }

  .mobile-menu.compact a {
    padding: 16px 20px;
    margin: 1px 10px;
    font-size: 26px;
  }

  /* Оверлей при открытом меню */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Адаптируем layout под длинную страницу */
  .tabs-container {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-container, .text-content {
    max-width: 100%;
  }
  
  .gallery-container {
	 
	 order: 2;
	 padding: 0 !important;
  }
  
  
  
   .text-content {
    order: 1; /* текст выше */
  }

  .slider-container {
    order: 2;                 /* слайдер ниже текста */
    display: flex;            
    justify-content: center;   /* центрируем по горизонтали */
    align-items: center;       /* центрируем по вертикали */
    width: 100%;     
    
	/* на всю ширину контейнера */
  }

  .juxtapose {
    width: 95%;         /* почти вся ширина экрана */
    max-width: none;    /* убираем ограничение 400px */
    height: 90vh;       /* почти весь экран по высоте */
    max-height: 700px;  /* ограничение по высоте */
    min-height: unset;  /* убираем старые минимальные значения */
    display: block;
    margin: 0 auto;     /* центрируем */
    border-radius: 10px; /* необязательно */
	
	
  }
  
  
}
















.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.custom-alert-box {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideUp 0.3s ease;
}

.custom-alert-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.custom-alert-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.custom-alert-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.custom-alert-input:focus {
    outline: none;
    border-color: #007bff;
}

.custom-alert-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.custom-alert-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.custom-alert-btn-primary {
    background: #007bff;
    color: white;
}

.custom-alert-btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.custom-alert-btn-secondary {
    background: #6c757d;
    color: white;
}

.custom-alert-btn-secondary:hover {
    background: #545b62;
    transform: translateY(-1px);
}

.custom-alert-btn-cancel {
    background: #dc3545;
    color: white;
}

.custom-alert-btn-cancel:hover {
    background: #c82333;
    transform: translateY(-1px);
}
























@media (max-width: 768px) {
  /* Скрываем иконки на первой вкладке */
  #tab1 .icons-column {
    display: none !important;
  }

  /* Адаптируем текстовый блок на первой вкладке */
   .text-with-icons {
    flex-direction: column;
    gap: 15px;
  }

  /* ОБЩИЕ стили для текстовых блоков (включая tab1) */
  .text-part {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .text-content p {
    font-size: 16px !important;
    line-height: 1.4 !important;
    text-align: justify;
  }

  /* Адаптация контента вкладок */
  .content-wrapper {
    flex-direction: column;
    margin: 10px 0;
    padding: 0 10px;
  }

  .gallery-container {
    max-width: 100% !important;
    margin: 0 auto 20px auto;
    order: 2;
  }

  .text-content {
    order: 1;
    padding: 0 10px;
    margin-bottom: 20px;
	margin-top: 15vw;
  }

  /* Заголовки */
  .main-title {
    font-size: 32px !important;
    text-align: center;
    margin-bottom: 15px !important;
  }

  .tab-content h2 {
    font-size: 14vw !important;
    text-align: center;
    margin-bottom: 15px !important;
  }

  /* Специфичные настройки для каждой вкладки */
  #tab6 .gallery-container {
    max-width: 100% !important;
  }

  #tab6 .content-wrapper {
    flex-direction: column;
  }

  #tab6 .image-content {
    width: 100%;
    padding: 0;
    align-items: center;
  }

  #tab6 .side-image {
    max-width: 80%;
    margin: 0 auto;
  }

  /* Слайдеры */
  .swiper {
    aspect-ratio: 3/4 !important;
  }

  #tab6 .swiper {
    aspect-ratio: 4/3 !important;
  }

  /* Кнопка заказа */
  

  /* Улучшаем отступы для мобильных */
  .tab-contents {
    padding: 10px 0 !important;
  }

  /* Адаптируем текстовые блоки с иконками для других вкладок (если есть) */
 

 

  
}













@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}








