body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: url("/assets/images/banner3.jpg") center/cover no-repeat fixed;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* HEADER */
/* HEADER */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  flex-wrap: wrap;
}

/* Título */
.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;
}

/* Info centro */
.header-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #444;
  justify-content: center;
}

.header-info i {
  color: #e63946;
  margin-right: 6px;
}

/* Redes */
.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);
}

/* Links */
.location-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s ease;
}

.location-link:hover {
  color: #b91c1c;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .header-left h5 {
    font-size: 1.2rem;
  }

  .header-info {
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
  }
}

/* MENU CONTAINER */
.menu-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-bar {
  padding: 20px;
  text-align: center;
}

/* CATEGORÍAS */
.categories {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 20px;
}

.category-item {
  flex: 0 0 auto;
  text-align: center;
  color: #b91c1c;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  padding: 10px;
  border-radius: 10px;
}

.category-item:hover {
  background: rgba(185, 28, 28, 0.1);
  transform: scale(1.1);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #fbeaea; /* un rojo muy clarito */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 5px auto;
  font-size: 24px;
  color: #b91c1c;
}

/* PRODUCTOS */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-info {
  flex: 1;
}

.product-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #222;
}

.product-price {
  color: #e63946;
  font-weight: bold;
  font-size: 16px;
}

.product-tax {
  font-size: 12px;
  color: #777;
}

.product-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
}
