/* ===== ОБЩИЕ СТИЛИ ===== */
body {
  margin: 0;
  font-family: 'Cinzel Decorative', 'Goudy Bookletter 1911', serif;
  background: linear-gradient(180deg, #050505 0%, #0a0a12 50%, #0d0d1a 100%);
  color: #e6e6e6;
  text-align: center;
  line-height: 1.6;
}

/* ===== ВЕРХНЯЯ ПАНЕЛЬ ===== */
.top-bar {
  padding: 12px 0;
  background: rgba(5, 5, 15, 0.92);
  border-bottom: 2px solid rgba(231, 15, 195, 0.25);
  box-shadow: 0 0 20px rgba(152, 4, 165, 0.15);
}

.logo-container {
  margin-right: 1rem;
}

.hero-logo {
  max-width: 320px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0, 40, 255, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(0, 60, 255, 0.8);
}

/* ===== Актуальная информация ===== */
.btn-info {
  display: inline-block;
  font-size: 1.6rem;   /* сделаем больше */
  font-weight: bold;
  color: #c084fc;      /* фиолетовый */
  text-decoration: none;
  margin-top: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.btn-info:hover {
  color: #0be930;       /* золотой при наведении */
  transform: scale(1.1);
}

/* ===== Ссылка "Назад на главную" ===== */
.back-home {
  display: inline-block;
  margin-top: 30px;         /* отодвигаем от верха */
  font-size: 1.4rem;        /* делаем крупнее */
  font-weight: bold;
  color: #f829ba;           /* фиолетовый (видимый) */
  text-decoration: none;    /* убираем стандартное подчёркивание */
  transition: color 0.3s ease, transform 0.3s ease;
}

.back-home:hover {
  color: #f829ba;           /* золотой при наведении */
  text-shadow: 0 0 10px #0e033f;
  transform: scale(1.05);
}


/* ===== HERO (Индекс Ангеркоу тен) ===== */
.hero {
  padding: 60px 20px;
  background: linear-gradient(145deg, rgba(10, 10, 20, 0.9), rgba(0, 0, 30, 0.7));
  border-bottom: 2px solid rgba(206, 17, 206, 0.3);
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #beb5f5;
  text-shadow: 0 0 15px #120066, 0 0 30px #0044ff;
}

/* Все P */
.hero p {
  font-size: 1.8rem;
  max-width: 900px;
  margin: auto;
  color: #c0c0ff;
  text-shadow: 0 0 5px rgba(0, 0, 40, 0.8);
}


/* ===== СОЦСЕТИ слева (индекс хтмл) ===== */
.social-icons {
  position: fixed;       /* фиксируем сбоку */
  top: 30%;              /* по центру экрана */
  left: 25px;            /* отступ слева */
  transform: translateY(-50%); /* выравнивание по центру */
  
  display: flex;
  flex-direction: column; /* вертикально */
  gap: 20px;             /* расстояние между иконками */
}

.social-icons img {
  width: 70px;
  height: 70px;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 6px;
}

.social-icons img:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}


/* ===== Языки ===== */
.lang-switch {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 200;
  display: flex;
}

.lang-switch button {
  background: rgba(15, 15, 30, 0.6);
  border: 1px solid rgba(76, 5, 241, 0.678);
  color: #eaeaea;
  padding: 8px 37px;
  margin-left: 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.lang-switch button:hover {
  background: rgba(27, 13, 223, 0.2);
  color: #fff;
  box-shadow: 0 0 15px #0c45e0;
}

/* ===== ЗАГОЛОВКИ для всех ===== */
h1 {
  font-size: 2.7rem;
  color: #e6ddff;
  text-shadow: 0 0 15px #120066, 0 0 25px #0044ff;
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
}

h2 {
  font-size: 2rem;
  color: #d6b6ff;
  margin-bottom: 20px;
}

h2 {
  font-size: 2rem;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(129, 161, 190, 0.7), 0 0 20px rgba(140, 0, 255, 0.781);
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  color: #d4c8ff;
  text-shadow: 0 0 8px #120066, 0 0 16px #0044ff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}

/* ===== СЕКЦИИ ===== */
.section {
  padding: 40px 20px;
  background: rgba(15, 15, 30, 0.65);
  border-radius: 12px;
  margin: 20px auto;
  max-width: 1100px;
  border: 1px solid rgb(47, 33, 243);
  box-shadow: 0 0 25px rgba(0, 0, 60, 0.4);
}

/* Стили для ссылок внутри секций */
.section a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #e6b3ff;  /* ярко-фиолетовый */
  text-decoration: none;
  text-shadow: 0 0 8px rgba(180, 0, 255, 0.7), 0 0 15px rgba(120, 0, 200, 0.6);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* ===== ПРОДУКТЫ ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  background: rgba(10, 10, 25, 0.9);
  border: 1px solid rgba(0, 80, 200, 0.4);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 120, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 60, 255, 0.6), 0 0 40px rgba(255, 215, 0, 0.25);
}

.price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #116df7; 
}

/* ===== КАТЕГОРИИ на index html ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.category-card {
  display: block;
  padding: 20px;
  background: rgba(20, 20, 40, 0.7);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 80, 0.5);
  transition: transform 0.3s ease, 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  background: rgba(60, 0, 100, 0.85);
}



/* ========== СЛАЙДЕР (только для .product-slider) ========== */
.product-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.slider-window {
  width: 500%;
  max-width: 800px;
  position: relative;
}

/* Карточки внутри слайдера */
.product-slider .product-card {
  display: none;
  text-align: center;
  
}

.product-slider .product-card.active {
  display: block;
  opacity: 1;
}

/* Изображения */
.slider-window .product-card img {
  max-width: 100%;
  height: 104%;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(170, 0, 255, 0.5);
  transition: transform 0.3s ease-in-out;
}



/* Кнопки управления слайдера */
button.prev,
button.next {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  z-index: 2;
  transition:  0.3s ease, color 0.3s ease;
}

button.prev:hover,
button.next:hover {
  background: rgba(170, 0, 255, 0.8);
  color: #fff;
}

/* Позиции кнопок слайдера */
button.prev {
  position: left;
  left: 10px;
}

button.next {
  position: right;
  right: 10px;
}

/* ===== Основной Badges.HTML стиль картинок ===== */
body.badges .product-card img {
  max-width: 650px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(100, 0, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

body.badges .product-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(170, 0, 255, 0.8);
}

/* ===== Модалка (Lightbox) ===== */
.image-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(10, 0, 30, 0.95);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Класс, который включает fade-in */
.image-modal.show {
  display: block;
  opacity: 1;
}

/* ===== Изображение в модалке ===== */
.image-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(180, 0, 255, 0.8);
  transition: transform 0.3s ease;
  animation: zoomIn 0.4s ease;
}

/* Эффект увеличения при появлении */
@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0.8;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.image-modal img:hover {
  transform: scale(1.02);
}

/* ===== Кнопка закрытия ===== */
.image-modal .close-btn {
  position: absolute;
  top: 25px;
  right: 70px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
  user-select: none;
}

.image-modal .close-btn:hover {
  color: #ff70ff;
  transform: scale(1.2);
}
    /* FOR LOMOCARDS */
body.lomocards .product-card img {
  max-width: 650px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(100, 0, 255, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}




/* ========== СЛАЙДЕР (только для вкладки Collectibles) ========== */
.collectibles-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1000px; /* шире, чем обычный */
  margin: 0 auto;
}

/* карточки */
.collectibles-slider .product-card {
  display: none;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
}

.collectibles-slider .product-card.active {
  display: block;
  opacity: 1;
}

/* изображения — делаем крупнее */
.collectibles-slider .product-card img {
  max-width: 100%;
  width: 700px; /* можешь менять: 700–900px по вкусу */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(170, 0, 255, 0.6);
  transition: transform 0.3s ease-in-out;
}


/* стрелки управления */
.collectibles-slider button.prev,
.collectibles-slider button.next {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2.6rem; /* чуть крупнее стрелки */
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 50%;
  z-index: 2;
  transition:  0.3s ease, color 0.3s ease;
}

.collectibles-slider button.prev:hover,
.collectibles-slider button.next:hover {
  background: rgba(170, 0, 255, 0.8);
  color: #fff;
}

/* позиционирование стрелок */
.collectibles-slider button.prev {
  position: absolute;
  left: 5%;
}

.collectibles-slider button.next {
  position: absolute;
  right: 5%;
}



/* ===== Ul  (точки, инфо) ===== */
ul {
  list-style-position: inside;
  padding-left: 0;
  color: #d6b3ff;
}

/* ===== Фон ===== */
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #e2d9ff;
  background: radial-gradient(circle at top, #0a0a0f, #0a0d3d, #000000);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Исправление для partners-list */
.partners-list {
  padding: 20px 0;
}

.partners-list ul {
  list-style: none; /* Убираем точки списка */
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Выравнивание по центру горизонтально */
  gap: 40px; /* Расстояние между изображениями */
}

.partners-list img {
  width: 350px; /* Фиксированная ширина */
  height: 400px; /* Фиксированная высота */
  object-fit: cover; /* Сохранение пропорций и обрезка */
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 40, 255, 0.5); /* Сохраняем тень */
}

/* Видимость на индекс хтмл */
.partners-row {
  display: flex;
  justify-content: center;
  gap: 150px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .partners-list ul {
    flex-direction: column;
    gap: 20px;
  }
  
  .partners-list img {
    width: 200px;
    height: 200px;
  }
}


/* ===== Контентные рамки (например как у about и order html) ===== */
.content-box {
  background: rgba(15, 15, 30, 0.7); /* полупрозрачный фон */
  border: 2px solid rgba(170, 0, 255, 0.6); /* фиолетовая рамка */
  border-radius: 14px;
  padding: 25px;
  margin: 25px auto;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 0 25px rgba(170, 0, 255, 0.5), 
              inset 0 0 15px rgba(80, 0, 130, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
  transform: scale(1.01);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7), 
              inset 0 0 20px rgba(170, 0, 255, 0.5);
}

/* Вложенные заголовки */
.content-box h2, 
.content-box h3, 
.content-box h4 {
  margin-top: 15px;
  margin-bottom: 15px;
}

/* Анимация свечения логотипа */
#tenlogo {
  animation: glowPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px #0c0150) drop-shadow(0 0 20px #1a0a53);
  transition: transform 0.3s ease;
}

#tenlogo:hover {
  transform: scale(1.05); /* легкое увеличение при наведении */
}

@keyframes glowPulse {
  0% {
    filter: drop-shadow(0 0 5px #2be2ba) drop-shadow(0 0 10px #559ad3);
  }
  50% {
    filter: drop-shadow(0 0 20px #3fa2c9) drop-shadow(0 0 40px #090e50);
  }
  100% {
    filter: drop-shadow(0 0 5px #2be2ba) drop-shadow(0 0 10px #559ad3);
  }
}

/* ===== Улучшенный вид описания (ranks.html) ===== */
.info p {
  font-size: 1.7rem;
  color: #d8d8ff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4),
}

.info p:hover {
  text-shadow: 0 0 20px rgba(255, 220, 255, 0.9),
               0 0 35px rgba(160, 120, 255, 0.8);
  box-shadow: 0 0 40px rgba(180, 100, 255, 0.3);
  transform: scale(1.01);
}
.info div {
  font-size: 1.6rem;
  background: linear-gradient(180deg, rgba(40, 0, 80, 0.08), rgba(0, 0, 40, 0.15));
  border: 1px solid rgba(140, 100, 255, 0.2);
  box-shadow: 0 0 15px rgba(140, 100, 255, 0.1);
  border-radius: 10px;
  padding: 10px 15px;
  color: #cfcfff;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.info div:hover {
  box-shadow: 0 0 25px rgba(180, 100, 255, 0.25);
  transform: scale(1.005);
}

/* ===== Стили только для страницы order.html ===== */
body.order {
  font-size: 1.2rem; /* общий размер текста на странице заказа */
}

body.order .content-box div {
  font-size: 1.4rem; /* чуть больше текста в шагах и описаниях */
  color: #e5d9ff; /* мягкий светло-фиолетовый оттенок */
  text-shadow: 0 0 8px rgba(170, 0, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

body.order .content-box div:hover {
  transform: scale(1.02);
  color: #ffffff;
  text-shadow: 0 0 12px #b46cff, 0 0 25px #5e00ff;
}

body.order .content-box h2 {
  font-size: 2rem;
  color: #e3b6ff;
  text-shadow: 0 0 15px rgba(180, 100, 255, 0.8), 0 0 30px rgba(120, 0, 255, 0.6);
  margin-top: 25px;
}

body.order .btn-info {
  font-size: 1.5rem;
  color: #c084fc;
  font-weight: bold;
}

body.order .btn-info:hover {
  color: #22ffcc;
  transform: scale(1.1);
}


/* ===== ФУТЕР ===== */
footer {
  padding: 20px;
  background: rgba(6, 0, 17, 0.95);
  border-top: 3px solid rgba(129, 16, 221, 0.342);
  font-size: 0.9rem;
  color: #ffffff;
}

