/* ======================
   PIE DE PÁGINA
   ====================== */
.fashion-footer {
  background-color: #16213e;
  color: #ffffff;
  padding: 60px 5% 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

.footer-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* Brand Section */
.footer-brand {
  flex: 1;
  min-width: 250px;
}

.brand-name {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.brand-name span {
  color: #4a90e2;
}

.brand-tagline {
  color: #b3b3b3;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-links a:hover {
  background: #4a90e2;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h3 {
  color: #4a90e2;
  font-size: 1.1rem;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #4a90e2;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter {
  flex: 1;
  min-width: 250px;
}

.footer-newsletter h3 {
  color: #4a90e2;
  font-size: 1.1rem;
  margin: 0 0 15px;
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #4a90e2;
}

.footer-newsletter p {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin: 0 0 15px;
  line-height: 1.5;
}

.footer-newsletter form {
  display: flex;
  margin-top: 15px;
  gap: 5px;
  flex-wrap: wrap;
}

.footer-newsletter input {
  flex: 1;
  min-width: 150px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.footer-newsletter input:focus {
  border-color: #4a90e2;
}

.footer-newsletter input::placeholder {
  color: #999;
}

.footer-newsletter button {
  background: #4a90e2;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  height: 44px;
  white-space: nowrap;
  margin-bottom: 5px;
}

.footer-newsletter button:hover {
  background: #3a7bc8;
}

/* Contact Section */
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h3 {
  color: #4a90e2;
  font-size: 1.1rem;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #4a90e2;
}

.footer-contact p {
  color: #e0e0e0;
  font-size: 0.95rem;
  margin: 0 0 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact i {
  color: #4a90e2;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-bottom-container {
  width: 100%;
  background-color: #16213e;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.payment-methods {
  margin-top: 1rem;
}

.payment-methods i {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.payment-methods i:hover {
  color: var(--color-primario);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-social {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 3rem 0 0;
  }
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  background-color: white;
  padding: 10px;
  border-radius: 4px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-description {
  color: #b3b3b3;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-primario);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #b3b3b3;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-links i {
  margin-right: 8px;
  font-size: 0.7rem;
  color: var(--color-primario);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primario);
  transform: translateX(5px);
}

.footer-links a:hover i {
  margin-right: 12px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--color-primario);
  margin-top: 0.3rem;
  min-width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(252, 4, 4, 0.05);
  border-radius: 50%;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--color-primario);
  transform: translateY(-3px) scale(1.1);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 3rem 2rem 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.copyright {
  color: #b3b3b3;
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  gap: 1.2rem;
  color: #b3b3b3;
  font-size: 1.8rem;
}

.payment-methods i {
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-methods i:hover {
  color: var(--color-primario);
  transform: translateY(-2px);
}

/* Botón de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
  padding: 0 25px;
  white-space: nowrap;
}

.whatsapp-button span {
  font-size: 1rem;
  margin-left: 10px;
  font-weight: 500;
  display: none;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  width: auto;
  padding: 0 25px;
}

.whatsapp-button:hover span {
  display: inline;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Botón de ir arriba */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--color-primario);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  bottom: 2rem;
}

.back-to-top:hover {
  background-color: var(--color-primario-oscuro);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Estilos responsivos */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact li {
    justify-content: center;
    text-align: center;
  }
  
  .footer-divider {
    margin: 2rem 1.5rem;
  }
  
  .footer-bottom {
    padding: 1.5rem;
    text-align: center;
  }
  
  .payment-methods {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .whatsapp-button {
    width: 60px;
    height: 60px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-button:hover {
    width: 60px;
    padding: 0;
  }
  
  .whatsapp-button span {
    display: none;
  }
  
  /* Animación para el botón de WhatsApp */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
