* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
}



nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 60px 10%;
  background: linear-gradient(135deg, #6a5acd, #00bcd4);
  color: white;
}

#catalog {
  padding: 40px 10%;
}

/* === СЕТКА === */
.product-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1400px;
  margin: 0 auto;
}

/* === КАРТОЧКА === */
.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* === СЛАЙДЕР === */
.slider {
  position: relative;
  width: 100%;
  height: 450px; /* ↑ было 240px — теперь больше */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* картинка заполняет контейнер без искажений */
  transition: transform 0.4s ease;
}

.slider img:hover {
  transform: scale(1.05);
}


.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 24px;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider .prev { left: 10px; }
.slider .next { right: 10px; }

.slider button:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* === ИНФО ВНУТРИ КАРТОЧКИ === */
.product-card div {
  padding: 15px 18px;
  text-align: left;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #222;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 8px;
}

.price {
  margin: 10px 0;
  font-weight: bold;
  color: #00796b;
  font-size: 1rem;
}

/* === ЭЛЕМЕНТЫ УПРАВЛЕНИЯ === */
.batch-select {
  padding: 8px;
  margin: 6px 0 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}

.order-btn {
  background: linear-gradient(135deg, #00796b, #009688);
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.order-btn:hover {
  background: linear-gradient(135deg, #005b4f, #00796b);
}

/* === СТАТУСНЫЕ СТИКЕРЫ === */
.status-sticker {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 10;
  animation: sticker-pop 0.6s ease;
}
.status-new { background: linear-gradient(135deg, #28a745, #60d060); }
.status-hit { background: linear-gradient(135deg, #ff0055, #ff9900); }
.status-premium { background: linear-gradient(135deg, #3b82f6, #8b5cf6); }

@keyframes sticker-pop {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  70% { transform: scale(1.1) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); }
}

/* === МЕДИА === */
@media (max-width: 1024px) {
  .slider { height: 450px; }
}

@media (max-width: 768px) {
  .slider { height: 450px; }
}

@media (max-width: 600px) {
  header { flex-direction: column; text-align: center; }
  .slider { height: 450px; }
}

.batch-select {
  padding: 6px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.order-btn {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 20px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.order-btn:hover {
  background: #005b4f;
}

/* Модальное окно */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

.modal input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal button {
  background: #00796b;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.modal button:hover {
  background: #005b4f;
}

.hidden {
  display: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #aaa;
  font-size: 0.9rem;
}



.slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
}

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

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 22px;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 50%;
}

.slider .prev { left: 10px; }
.slider .next { right: 10px; }

.slider button:hover {
  background: rgba(0, 0, 0, 0.6);
}


@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }
}



     /* === АНИМИРОВАННЫЙ БЛОК ЗАЯВКИ === */
.animated-block {
  position: relative;
  background: linear-gradient(135deg, #00796b, #00bcd4);
  color: #fff;
  text-align: center;
  padding: 80px 10%;
  border-radius: 25px 25px 0 0;
  overflow: hidden;
}

/* Плавающий фон-свечение */
.glow-bg::before,
.glow-bg::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  animation: floatGlow 6s infinite ease-in-out alternate;
}
.glow-bg::before {
  top: -80px;
  left: -100px;
}
.glow-bg::after {
  bottom: -60px;
  right: -80px;
  animation-delay: 2s;
}

@keyframes floatGlow {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  100% { transform: translateY(30px) scale(1.1); opacity: 0.9; }
}

/* 3D-иконка */
.icon-3d {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: floatIcon 3s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Заголовок с пульсацией */
.animated-block h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #fff, #b2ebf2, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 12px rgba(255,255,255,0.6); }
  50% { text-shadow: 0 0 25px rgba(255,255,255,0.9); }
}

/* Текст */
.animated-block p {
  max-width: 600px;
  margin: 0 auto 35px auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0f7fa;
}

/* Форма */
.custom-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: rgba(255,255,255,0.9);
  color: #333;
}

.custom-form input:focus,
.custom-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(0,188,212,0.8);
}

/* Кнопка */
.custom-form button {
  background: linear-gradient(135deg, #fff, #b2ebf2);
  color: #00796b;
  font-weight: 700;
  border: none;
  padding: 12px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.custom-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
}

/* Сообщение об успехе */
#customThanks {
  color: #c8ffce;
  font-weight: 500;
  margin-top: 10px;
}

/* адаптив */
@media (max-width: 768px) {
  .animated-block {
    padding: 60px 5%;
  }
  .icon-3d {
    font-size: 2.4rem;
  }
  .animated-block h2 {
    font-size: 1.6rem;
  }
}

    /* --- оформление стикеров статусов --- */
    .status-sticker {
      position: absolute;
      top: 10px;
      right: 10px;
      color: #fff;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 6px 12px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.25);
      z-index: 5;
      animation: sticker-pop 0.6s ease;
      user-select: none;
    }

    @keyframes sticker-pop {
      0% { transform: scale(0) rotate(-15deg); opacity: 0; }
      70% { transform: scale(1.1) rotate(3deg); opacity: 1; }
      100% { transform: scale(1) rotate(0); }
    }

    /* цветовые варианты статусов */
    .status-new { background: linear-gradient(135deg, #28a745, #60d060); }     /* Новинка */
    .status-hit { background: linear-gradient(135deg, #ff0055, #ff9900); }    /* Хит 2025 */
    .status-premium { background: linear-gradient(135deg, #3b82f6, #8b5cf6); } /* Премиум */

    /* оформление карточек */
    .product-card {
      position: relative;
      overflow: hidden;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
   /* === Виджет связи Lumof Style === */
.contact-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Контейнер с кнопками */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Общий стиль кнопок */
.contact-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 10px rgba(0, 255, 200, 0.2),
    inset 0 0 6px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  animation: softPulse 3s ease-in-out infinite;
}

/* === Иконки === */
.contact-btn.whatsapp {
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg');
  background-color: #25d366;
  animation-delay: 0.3s;
}

.contact-btn.telegram {
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg');
  background-color: #0088cc;
}

/* Ховер эффект — увеличение и более яркое свечение */
.contact-btn:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 25px rgba(0,255,200,0.5),
    inset 0 0 10px rgba(255,255,255,0.2);
}

/* Эффект мягкого дыхания/пульса */
@keyframes softPulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(0,255,200,0.2),
      0 0 25px rgba(0,255,200,0.15),
      inset 0 0 6px rgba(255,255,255,0.05);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 20px rgba(0,255,200,0.4),
      0 0 35px rgba(0,255,200,0.25),
      inset 0 0 8px rgba(255,255,255,0.15);
    transform: scale(1.05);
  }
}

/* Адаптив для телефонов */
@media (max-width: 600px) {
  .contact-btn {
    width: 50px;
    height: 50px;
  }
}



/* === ПОДСКАЗКА ПРИ ПЕРВОМ ВИЗИТЕ === */
.premium-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.premium-overlay.hidden {
  display: none;
}

.premium-hint {
  background: #fff;
  color: #333;
  max-width: 380px;
  padding: 25px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
  animation: fadeInUp 0.6s ease;
}

.premium-hint h3 {
  margin-bottom: 12px;
  color: #3b82f6;
  font-size: 1.3rem;
}

.premium-hint p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.premium-hint button {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.premium-hint button:hover {
  background: linear-gradient(135deg, #2b6ce3, #7a4de0);
}

/* Подсветка карточки премиум */
.highlight-premium {
  position: relative;
  z-index: 2100;
  box-shadow: 0 0 25px 8px rgba(59,130,246,0.9);
  transform: scale(1.05);
  transition: all 0.4s ease;
  pointer-events: none;
  animation: pulsePremium 1.2s infinite alternate;
}

@keyframes pulsePremium {
  0% { box-shadow: 0 0 20px 5px rgba(59,130,246,0.6); }
  100% { box-shadow: 0 0 30px 12px rgba(139,92,246,0.9); }
}

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

/* === КНОПКА "НАВЕРХ" === */
.to-top {
  position: fixed;
  bottom: 180px;
  right: 25px;
  width: 55px;
  height: 55px;
  border: none;
  background: linear-gradient(135deg, #00796b, #009688);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.3s ease;
  z-index: 2000;
}

.to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.to-top:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #005b4f, #00796b);
}

/* Мобильные */
@media (max-width: 600px) {
  .to-top {
      display:none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 177px;
    right: 21px;
  }
}

/* === БЛОК ИНДИВИДУАЛЬНОЙ ЗАЯВКИ === */
.custom-order {
  background: linear-gradient(135deg, #00796b, #00bcd4);
  color: #fff;
  padding: 60px 10%;
  text-align: center;
  border-radius: 20px 20px 0 0;
  margin-top: 60px;
}

.custom-order h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.custom-order p {
  max-width: 600px;
  margin: 0 auto 30px auto;
  font-size: 1rem;
  line-height: 1.5;
}

.custom-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.custom-form input:focus,
.custom-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.custom-form button {
  background: #fff;
  color: #00796b;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.custom-form button:hover {
  background: #f0f0f0;
}

#customThanks {
  margin-top: 10px;
  color: #eaffea;
  font-weight: 500;
  transition: opacity 0.4s ease;
}


    /* === КОНТАКТЫ === */
.contact-section {
  background: linear-gradient(135deg, #1a237e, #00bcd4);
  color: #fff;
  text-align: center;
  padding: 70px 10%;
  border-radius: 25px 25px 0 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 70%);
  pointer-events: none;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #b2ebf2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc {
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #e0f7fa;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #b2ebf2;
}

/* Иконки соцсетей */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.c-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #ffffff22;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.c-icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Иконки */
.whatsapp {
  background-color: #25D366;
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/whatsapp.svg');
}

.telegram {
  background-color: #0088cc;
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/telegram.svg');
}

.vk {
  background-color: #4a76a8;
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/vk.svg');
}

.ozon {
  background-color: #005bff;
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/ozon.svg');
}

.avito {
  background-color: #00aaef;
  background-image: url('https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/avito.svg');
}

/* адаптив */
@media (max-width: 768px) {
  .contact-section {
    padding: 5
}


    /* === Модальное окно — 3D стиль Lumof === */
.order-popup {
  max-width: 550px;
  width: 90%;
  background: rgba(255,255,255,0.98);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 0 25px rgba(0,255,200,0.3);
  border: 1px solid rgba(0,188,212,0.3);
  animation: popupFade 0.4s ease;
}

@keyframes popupFade {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.order-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.order-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.order-details h3 {
  margin-bottom: 6px;
  color: #00796b;
}

#order-sum {
  color: #009688;
  font-weight: 700;
}

/* поля формы */
#order-form input, #order-form select {
  width: 100%;
  margin: 8px 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  transition: box-shadow 0.3s ease;
}

#order-form input:focus, #order-form select:focus {
  box-shadow: 0 0 0 2px rgba(0,188,212,0.6);
  outline: none;
}

#order-form button {
  background: linear-gradient(135deg, #00bcd4, #009688);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

#order-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,188,212,0.5);
}

/* Закрывающая кнопка */
.close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  color: #444;
}

.close:hover {
  color: #009688;
}


    /* === МОДАЛЬНАЯ ГАЛЕРЕЯ === */
.img-modal {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

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

.img-modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,255,200,0.4);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

.close-img {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.close-img:hover {
  color: #00ffe6;
}

.img-caption {
  margin-top: 12px;
  color: #ddd;
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
}

/* Кнопки навигации */
.img-prev, .img-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 255, 200, 0.2);
  color: white;
  border: none;
  font-size: 40px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.img-prev:hover, .img-next:hover {
  background: rgba(0,255,200,0.4);
}

.img-prev { left: 40px; }
.img-next { right: 40px; }

/* Для телефонов */
@media (max-width: 600px) {
  .img-prev, .img-next {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }
}


