/* HEADER */
/* HEADER */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.header-left h5 {
  margin: 0;
  font-weight: bold;
  color: #6b2e2e;
  font-size: 1.3rem;
}

.brand-link {
  text-decoration: none;
  color: #6b2e2e;
  transition: color 0.2s ease;
}

.brand-link:hover {
  color: #e63946;
}

/* --- SOLO en móviles --- */
@media (max-width: 768px) {
  .header-left {
    width: 100%; /* Ocupa todo el ancho */
    text-align: center; /* Centra el texto */
    margin-bottom: 8px; /* Un poco de aire */
  }

  .header-left h5 {
    font-size: 1.2rem; /* Un pelín más chico */
  }

  .header-info {
    justify-content: center;
  }

  .cart-container {
    margin-left: auto;
  }
}

.header-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #444;
}

.header-info i {
  color: #e63946;
  margin-right: 6px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socials span {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}

.socials a {
  color: #6b2e2e;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: #e63946;
  transform: scale(1.15);
}

.location-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s ease;
}

.location-link:hover {
  color: #b91c1c;
}
