/* =============================
   ОБЩИЙ ФУТЕР
   ============================= */
.samp-footer {
  background: linear-gradient(135deg, #0b0b0b 40%, #1a0000 100%);
  color: #ddd;
  padding: 60px 20px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

/* ЛОГО + БРЕНД */
.footer-brand {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(255,28,28,0.15);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
}

.footer-logo .logo-accent {
  color: #ff1c1c;
  text-shadow: 0 0 10px rgba(255,28,28,0.5);
}

.footer-logo .logo-suffix {
  color: #fff;
}

.footer-tagline {
  margin: 15px 0 25px;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* СОЦИАЛКИ */
.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,28,28,0.1);
  color: #ff1c1c;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social .social-link:hover {
  background: #ff1c1c;
  color: #fff;
  box-shadow: 0 0 15px rgba(255,28,28,0.4);
}

/* ОПЛАТА */
.payment-methods img {
  max-width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.payment-methods img:hover {
  opacity: 1;
}

/* КОЛОНКИ НАВИГАЦИИ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-column .footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff1c1c;
  text-transform: uppercase;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link i {
  color: #ff1c1c;
  min-width: 16px;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(3px);
}

/* НИЖНЯЯ ЧАСТЬ */
.footer-bottom {
  background-color: #0f0f0f; /* тёмный фон */
  padding: 20px 0;
  border-top: 2px solid #a40000; /* красная линия сверху */
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between; /* копирайт слева, ссылки справа */
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy {
  color: #ddd;
  font-size: 14px;
  text-align: left;
  margin-bottom: 10px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  text-align: right;
}

.legal-link {
  color: #ff3333;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.legal-divider {
  color: #666;
  margin: 0 5px;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
    text-align: center;
  }
}