.footer {
  background: white;
  padding: var(--spacing-lg) var(--spacing-sm) 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 50px;
}

.footer-full-logo {
    max-width: 200px;
    height: auto;
}



.footer-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
  line-height: 1.8;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-column h3 {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.footer-icon {
  color: #9B59B6;
  font-size: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--color-pink);
}

.footer-contact p {
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-light);
}

/* 🔹 Footer Bottom - Copyright y Métodos de Pago */
.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--color-text-lighter);
  font-size: 14px;
}

/* 💳 Métodos de Pago */
.payment-methods {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-icon {
  width: 55px;
  height: 35px;
  background: #5a5a5a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 10px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.payment-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* PayPal */
.payment-icon.paypal {
  background: linear-gradient(135deg, #003087 0%, #0070ba 100%);
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Apple Pay */
.payment-icon.apple-pay {
  background: #000;
}

.payment-icon.apple-pay .apple-logo {
  width: 18px;
  height: 18px;
  background: white;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Visa */
.payment-icon.visa {
  background: linear-gradient(135deg, #1a1f71 0%, #0066b2 100%);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Mastercard */
.payment-icon.mastercard {
  background: #e6e6e6;
  gap: 0;
}

.payment-icon.mastercard .circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
}

.payment-icon.mastercard .circle:first-child {
  background: #eb001b;
  left: 14px;
}

.payment-icon.mastercard .circle:last-child {
  background: #f79e1b;
  right: 14px;
  mix-blend-mode: multiply;
}

/* American Express */
.payment-icon.amex {
  background: linear-gradient(135deg, #006fcf 0%, #0099d8 100%);
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Discover */
.payment-icon.discover {
  background: linear-gradient(135deg, #ff6000 0%, #ff9000 100%);
  font-size: 9px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Stripe */
.payment-icon.stripe {
  background: #635bff;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: currentColor;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons a[href*="facebook"]:hover {
    background: #1877f2;
    color: white;
}

.social-icons a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icons a[href*="tiktok"]:hover {
    background: #000000;
    color: white;
}

.social-icons a[href*="youtube"]:hover {
    background: #ff0000;
    color: white;
}