﻿.footer {
  background-color: #0a0a0a;
  color: var(--white);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #888;
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #888;
  border: 1px solid #2a2a2a;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-icon:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Links columns */
.footer-links h3,
.footer-payment h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: #777;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-link-ofertas {
  color: #f97316 !important;
  font-weight: 700;
}

.footer-link-ofertas:hover {
  color: #fb923c !important;
}

/* Payment */
.footer-payment p {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
}


.footer-ssl {
  color: #555 !important;
  font-size: 12px !important;
  margin-bottom: 0 !important;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #1e1e1e;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #444;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #444;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 48px 0 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

