body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff7f3;
  color: #333;
}

header {
  background: linear-gradient(90deg, #ff7aa2, #ffb6c1);
  color: white;
  padding: 20px;
  text-align: center;
}

h1, h2 {
  margin: 0 0 10px 0;
}

main {
  max-width: 600px;
  margin: 20px auto;
  padding: 0 15px;
}

section {
  background: white;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.btn {
  margin-top: 15px;
  background: #ff4f83;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ff6f9d;
}

.hidden {
  display: none;
}

#orderList li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}
/* ==== SIDEBAR ==== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: linear-gradient(180deg, #ff7aa2, #ffb6c1);
  color: white;
  box-shadow: 3px 0 15px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 18px 12px;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.logo-small {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.sidebar-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  flex-grow: 1;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.18s ease;
  border-left: 4px solid transparent;
  border-radius: 8px;
}

.sidebar-menu li a:hover {
  background: rgba(255,255,255,0.15);
  border-left: 4px solid white;
  transform: translateX(4px);
}

/* ==== MENU BUTTON ==== */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffd166;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 22px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 1300;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-btn:hover {
  background: #ff6f9d;
  transform: scale(1.05);
}

/* Overlay para móviles */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1100;
}

/* ==== MODO RESPONSIVO ==== */
.sidebar {
  transform: translateX(-100%);
}

.sidebar.open {
  transform: translateX(0);
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff7f3;
  color: #333;
}

header {
  background: linear-gradient(90deg, #ff7aa2, #ffb6c1);
  color: white;
  padding: 20px;
  text-align: center;
}

h1, h2 {
  margin: 0 0 10px 0;
}

main {
  max-width: 600px;
  margin: 20px auto;
  padding: 0 15px;
}

section {
  background: white;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.btn {
  margin-top: 15px;
  background: #ff4f83;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  background: #ff6f9d;
}

.hidden {
  display: none;
}

#orderList li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}
