.quantity-selector {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 2px 8px;
  width: fit-content;
}

.btn-qty {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  color: #f55d0e;
  border-radius: 6px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-qty:active, .btn-qty:focus {
  background: #ffe3d1;
  outline: none;
}

.qty-input {
  width: 40px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  text-align: center;
  outline: none;
  pointer-events: none;
}

.cart-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background:rgb(69, 34, 13);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f55d0e;
  color: #fff;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.8rem;
  font-weight: bold;
  border: none;
}

.cart-aside {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(0,0,0,0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.cart-aside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #f55d0e;
  cursor: pointer;
}

.cart-aside-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 0.5rem;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 1rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-price {
  color: #f55d0e;
  font-weight: bold;
}

.cart-item-qty button {
  background: #f1f1f1;
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  font-size: 1.2rem;
  margin: 0 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: #f55d0e;
  font-size: 1.5rem;
  margin-left: 8px;
  cursor: pointer;
}

.cart-aside-footer {
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1rem;
}

.cart-toast {
  position: fixed;
  bottom: 32px;
  right: 110px;
  background: #4BB543;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 3000;
  font-size: 1.1rem;
  animation: fadeInOut 2.5s;
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(30px);}
  10% { opacity: 1; transform: translateY(0);}
  90% { opacity: 1; transform: translateY(0);}
  100% { opacity: 0; transform: translateY(30px);}
}

.cart-item-sides {
  margin: 2px 0 6px 0;
  font-size: 0.95em;
}

.btn-orange {
  background: #f55d0e;
  color: #fff;
  border: none;
}

.btn-orange:hover {
  background: #d94c00;
  color: #fff;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #bbb;
  font-weight: 500;
  min-width: 110px;
  transition: color 0.2s;
}

.wizard-step.active {
  color: #f55d0e;
}

.wizard-step.done {
  color: #4BB543;
}

.wizard-icon {
  font-size: 1.6rem;
  margin-bottom: 2px;
}

.wizard-label {
  font-size: 1rem;
}

.wizard-divider {
  flex: 1;
  height: 2px;
  background: #eee;
  margin: 0 10px;
  border-radius: 1px;
  position: relative;
  top: 14px;
}

.card {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.card-body {
  padding: 1.2rem 1.5rem;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
  .cart-aside {
    width: 100%;
    right: 0;
    left: 0;
  }
  
  .cart-float-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .cart-toast {
    right: 80px;
    bottom: 20px;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

.resumen-pedido-card {
  background: #f7f7f7;
  color: #222;
  border-radius: 12px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.5rem 2rem;
}
.resumen-pedido-card h5 {
  font-weight: 600;
  font-size: 1.2rem;
}
.resumen-pedido-card .pedido-item {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.resumen-pedido-card .pedido-total {
  font-weight: 700;
  font-size: 1.1rem;
}

.pago-movil-info {
  background: linear-gradient(135deg, #e3f0ff 0%, #cbe2fa 100%);
  color: #234;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pago-movil-info b {
  color: #1a237e;
  font-weight: 600;
}
.pago-movil-info .label {
  font-weight: 500;
  color: #234;
}
