/* === GLOBAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9; /* fondo claro por defecto */
  color: #111;
  line-height: 1.6;
}

/* === HEADER === */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.95); /* Negro elegante con transparencia */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 80px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px); /* efecto cristal */
}

/* Logo */
.logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9rem;
  color: #C5A572;
  font-weight: 700;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.logo:hover {
  color: #E1C089;
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin-right: 40px;
}

nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

/* Subrayado animado */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #C5A572;
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover {
  color: #C5A572;
}

/* === CARRITO === */
.cart-icon {
  color: #C5A572;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}
.cart-icon:hover {
  color: #E1C089;
  transform: scale(1.05);
}

#cart-count {
  font-size: 1rem;
  color: #fff;
  background: #C5A572;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
}

/* === HERO (SOLO EN HOME) === */
body.home {
  background-color: #000;
  color: #fff;
}

.hero {
  height: 100vh;
  background: url('../img/hero-sushi.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.btn {
  background-color: #C5A572;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #1C4D2E;
}

/* === FOOTER === */
footer {
  background: #111;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-content p {
  margin: 8px 0;
  color: #aaa;
  font-size: 0.95rem;
}

.socials a {
  text-decoration: none;
  color: #C5A572;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #E1C089;
}

/* === SECCIÓN MENÚ === */
.menu-section {
  padding: 120px 50px 60px;
  background: #fff;
  color: #111;
  text-align: center;
}

.menu-section h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #C5A572;
}

/* === CATEGORÍAS === */
.menu-categories {
  margin-bottom: 40px;
}

.menu-categories button {
  background: transparent;
  border: 2px solid #C5A572;
  color: #C5A572;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-categories button.active,
.menu-categories button:hover {
  background: #C5A572;
  color: #fff;
}

/* === GRID DE PRODUCTOS === */
.menu-grid,
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* === CARTA DE PRODUCTO === */
.product-card {
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(197, 165, 114, 0.3);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.product-card p {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 8px;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #C5A572;
  display: block;
  margin-bottom: 10px;
}

/* === BOTÓN === */
.add-to-cart {
  background: #C5A572;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background: #1C4D2E;
}

/* === SECCIÓN PEDIDOS === */
.pedido-section {
  padding: 120px 50px 60px;
  background: #fff;
  color: #111;
  text-align: center;
}

.pedido-section h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #C5A572;
}

.pedido-resumen {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pedido-resumen h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #111;
}

.pedido-resumen ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.pedido-resumen li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.pedido-total {
  font-weight: bold;
  color: #C5A572;
  font-size: 1.2rem;
}

/* FORMULARIO */
.pedido-formulario {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.pedido-formulario h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #111;
}

.pedido-formulario label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.pedido-formulario input,
.pedido-formulario select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.btn-confirmar {
  background: #C5A572;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s ease;
}

.btn-confirmar:hover {
  background: #1C4D2E;
}

/* === SECCIÓN CATERING === */
.catering-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 120px 50px;
  background: #fff;
  color: #111;
}

.catering-text {
  flex: 1;
  min-width: 300px;
}

.catering-text h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: #C5A572;
  margin-bottom: 25px;
}

.catering-text ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.catering-text ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catering-text ul li::before {
  content: "🍣";
  font-size: 1rem;
}

.catering-text p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* Botón Catering */
.catering-text .btn {
  background: #C5A572;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.catering-text .btn:hover {
  background: #1C4D2E;
}

/* Galería de imágenes */
.catering-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.catering-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.catering-gallery img:hover {
  transform: scale(1.03);
}

/* === SECCIÓN CHEF PRIVADO === */
.chef-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 120px 50px;
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  color: #111;
}

.chef-text {
  flex: 1;
  min-width: 320px;
}

.chef-text h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.8rem;
  color: #C5A572;
  margin-bottom: 25px;
}

.chef-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.chef-text .btn {
  background: #C5A572;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.chef-text .btn:hover {
  background: #1C4D2E;
  transform: translateY(-2px);
}

.chef-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.chef-gallery img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chef-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(197, 165, 114, 0.35);
}

/* === SECCIÓN CONTACTO === */
.contact-section {
  padding: 120px 50px;
  background: #fff;
  color: #111;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.contact-container h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  color: #C5A572;
  margin-bottom: 15px;
}

.contact-container p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 35px;
  line-height: 1.7;
}

/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #C5A572;
  box-shadow: 0 0 5px rgba(197,165,114,0.5);
  outline: none;
}

.contact-form textarea {
  resize: none;
}

/* Botón */
.contact-form .btn {
  background: #C5A572;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form .btn:hover {
  background: #1C4D2E;
  transform: translateY(-2px);
}

/* === MINI-CART === */
.cart-container {
  position: relative;
  display: inline-block;
}

.cart-badge {
  background: #C5A572;
  color: #fff;
  border-radius: 50%;
  padding: 4px 8px;
  font-size: 0.8rem;
  font-weight: bold;
  position: relative;
  top: -10px;
  right: 10px;
}

.mini-cart {
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  padding: 15px;
  z-index: 1000;
}

.mini-cart.hidden {
  display: none;
}

.mini-cart h3 {
  margin-bottom: 10px;
  color: #C5A572;
  text-align: center;
}

.mini-cart ul {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  margin: 0 0 10px;
  padding: 0;
}

.mini-cart li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.mini-cart li button {
  background: none;
  border: none;
  color: #b02a37;
  cursor: pointer;
  font-size: 1rem;
}

/* === BOTONES DENTRO DEL MINI-CART === */
.mini-cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.mini-cart-actions .btn-confirmar {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
}

.btn-danger {
  background: #b02a37 !important;
}
/* === CART BANNER === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  display: none; /* oculto hasta que haya productos */
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 16px;
  z-index: 9999;
}
#cart-banner button {
  background: #C5A572;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
#cart-banner button:hover {
  background: #1C4D2E;
}
/* === MEDIA QUERIES === */
/* === BANNER DEL CARRITO === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #C5A572; /* Dorado elegante */
  color: #111;
  padding: 12px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #111;
  font-weight: bold;
  font-size: 0.95rem;
  z-index: 2000;
  transition: transform 0.3s ease;
}

#cart-banner.hidden {
  transform: translateY(100%);
}

#cart-banner .actions {
  display: flex;
  gap: 10px;
}

#cart-banner button {
  background: #fff;
  border: 1px solid #111;
  color: #111;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}

#cart-banner button:hover {
  background: #111;
  color: #fff;
}

/* Flechita toggle */
#cart-toggle {
  position: absolute;
  top: -25px;
  right: 20px;
  background: #C5A572;
  border: 2px solid #111;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #111;
  transition: transform 0.3s ease;
}

#cart-toggle:hover {
  background: #E1C089;
}
#cart-toggle.rotated {
  transform: rotate(180deg);
}
/* === BANNER DEL CARRITO === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #C5A572;         /* dorado elegante */
  color: #111;
  padding: 12px 20px 8px;
  display: none;                /* oculto si no hay items */
  border-top: 2px solid #111;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

#cart-banner .banner-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#cart-banner .actions {
  display: flex;
  gap: 10px;
}

#cart-banner .actions button {
  background: #fff;
  border: 1px solid #111;
  color: #111;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}
#cart-banner .actions button:hover {
  background: #111;
  color: #fff;
}

/* Cuerpo expandible */
#banner-body {
  border-top: 1px solid #111;
  margin-top: 10px;
  padding-top: 10px;
  display: none; /* colapsado por defecto */
}

#cart-banner.open #banner-body {
  display: block;
}

/* Flechita toggle */
#cart-toggle {
  position: absolute;
  top: -26px;
  right: 16px;
  background: #C5A572;
  border: 2px solid #111;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #111;
  transition: transform 0.25s ease, background 0.25s ease;
}
#cart-toggle:hover { background: #E1C089; }
#cart-banner.open #cart-toggle { transform: rotate(180deg); }

/* Lista de items */
#banner-items {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  margin: 0 0 10px 0;
  padding: 0;
}
#banner-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
#banner-items .name {
  flex: 1;
}
#banner-items .qty {
  min-width: 70px;
  text-align: right;
}
#banner-items .subtotal {
  min-width: 90px;
  text-align: right;
}
#banner-items .remove {
  background: none;
  border: none;
  color: #b02a37;
  cursor: pointer;
  font-size: 1rem;
  margin-left: 6px;
}

.banner-total {
  text-align: right;
  font-weight: 800;
}
/* === BANNER DEL CARRITO === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;             /* negro elegante */
  color: #fff;
  padding: 14px 20px;
  display: none;                /* oculto si no hay items */
  border-top: 2px solid #C5A572;
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 3000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.35);
}

#cart-banner .banner-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#cart-banner .actions {
  display: flex;
  gap: 10px;
}

#cart-banner .actions button {
  background: #C5A572;
  border: none;
  color: #111;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}
#cart-banner .actions button:hover {
  background: #E1C089;
}

/* Cuerpo expandible */
#banner-body {
  border-top: 1px solid #C5A572;
  margin-top: 10px;
  padding-top: 10px;
  display: none; /* colapsado por defecto */
}

#cart-banner.open #banner-body {
  display: block;
}

/* Flechita toggle */
#cart-toggle {
  position: absolute;
  top: -24px;
  right: 20px;
  background: #111;
  border: 2px solid #C5A572;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #C5A572;
  transition: transform 0.25s ease, background 0.25s ease;
}
#cart-toggle:hover { background: #222; }
#cart-banner.open #cart-toggle { transform: rotate(180deg); }

/* Lista de items */
#banner-items {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  margin: 0 0 10px 0;
  padding: 0;
}
#banner-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
#banner-items .name {
  flex: 1;
}
#banner-items .qty,
#banner-items .subtotal {
  min-width: 80px;
  text-align: right;
}
#banner-items .remove {
  background: none;
  border: none;
  color: #b02a37;
  cursor: pointer;
  font-size: 1rem;
}

/* Total */
.banner-total {
  text-align: right;
  font-weight: 800;
  color: #C5A572;
}
/* === MEDIA QUERIES === *//* === BANNER DEL CARRITO === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;             /* negro elegante */
  color: #fff;
  padding: 14px 20px;
  display: none;                /* oculto si no hay items */
  border-top: 2px solid #C5A572;
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 3000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.35);
}

#cart-banner .banner-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#cart-banner .actions {
  display: flex;
  gap: 10px;
}

#cart-banner .actions button {
  background: #C5A572;
  border: none;
  color: #111;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}
#cart-banner .actions button:hover {
  background: #E1C089;
}

/* Cuerpo expandible */
#banner-body {
  border-top: 1px solid #C5A572;
  margin-top: 10px;
  padding-top: 10px;
  display: none; /* colapsado por defecto */
}

#cart-banner.open #banner-body {
  display: block;
}

/* Flechita toggle */
#cart-toggle {
  position: absolute;
  top: -24px;
  right: 20px;
  background: #111;
  border: 2px solid #C5A572;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 800;
  color: #C5A572;
  transition: transform 0.25s ease, background 0.25s ease;
}
#cart-toggle:hover { background: #222; }
#cart-banner.open #cart-toggle { transform: rotate(180deg); }

/* Lista de items */
#banner-items {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  margin: 0 0 10px 0;
  padding: 0;
}
#banner-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
#banner-items .name {
  flex: 1;
}
#banner-items .qty,
#banner-items .subtotal {
  min-width: 80px;
  text-align: right;
}
#banner-items .remove {
  background: none;
  border: none;
  color: #b02a37;
  cursor: pointer;
  font-size: 1rem;
}

/* Total */
.banner-total {
  text-align: right;
  font-weight: 800;
  color: #C5A572;
}
/* === BANNER DEL CARRITO (versión amigable) === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #faf4ec;
  color: #222;
  padding: 14px 20px;
  display: none;
  border-top: 3px solid #C5A572;
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 3000;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
/* ... resto del código ... */
/* === BANNER DEL CARRITO (versión amigable) === */
#cart-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fdf9f4;   /* 👈 tono cálido beige */
  color: #222;
  padding: 14px 20px;
  display: none;
  border-top: 3px solid #C5A572;
  font-weight: 500;
  font-size: 0.95rem;
  z-index: 3000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  border-radius: 8px 8px 0 0;
}

/* Cabecera */
#cart-banner .banner-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Botones principales */
#cart-banner .actions {
  display: flex;
  gap: 10px;
}

#cart-banner .actions button {
  background: #C5A572;
  border: none;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}
#cart-banner .actions button:hover {
  background: #1C4D2E;
}

/* Cuerpo expandible */
#banner-body {
  background: #faf4ec;   /* 👈 fondo cálido */
  border-radius: 8px;
  margin-top: 10px;
  padding: 12px;
  display: none;
}
#cart-banner.open #banner-body {
  display: block;
}

/* Flechita toggle */
#cart-toggle {
  position: absolute;
  top: -20px;
  right: 20px;
  background: #fff;
  border: 2px solid #C5A572;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #C5A572;
  transition: transform 0.25s ease, background 0.25s ease;
}
#cart-toggle:hover { background: #fafafa; }
#cart-banner.open #cart-toggle { transform: rotate(180deg); }

/* Lista de items */
#banner-items {
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  margin: 0 0 10px 0;
  padding: 0;
}
#banner-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  padding: 6px 10px;
  border: 1px solid #e6e0d8;
  border-radius: 6px;
  background: #f7f5f2;   /* 👈 gris cálido */
}
#banner-items .name {
  flex: 1;
  font-weight: 600;
  color: #222;
}
#banner-items .qty {
  min-width: 50px;
  text-align: right;
  color: #555;
}
#banner-items .subtotal {
  min-width: 80px;
  text-align: right;
  font-weight: 600;
  color: #C5A572;
}
#banner-items .remove {
  background: none;
  border: none;
  color: #b02a37;
  cursor: pointer;
  font-size: 1rem;
}

/* Total */
.banner-total {
  text-align: right;
  font-weight: 700;
  color: #1C4D2E;
  background: #f7f5f2;
  padding: 8px 12px;
  border-radius: 6px;
}
