body, html {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.scroll-additions {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px; 
}

.descripcion h6 {
  color: #4A2513;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
}

.detalle-footer {
  flex: 0 0 auto; 
  background: #fff;
  z-index: 6;
}

.descripcion p {
  font-size: 14px;
  margin-bottom: 12px;
  color: #4A2513;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
}

.detalle-img {
  width: 50%;
  max-height: 220px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.option {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}
.option:hover {
  box-shadow: 0px 4px 8px rgba(0,0,0,0.08);
}

.option-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.option span {
    font-size: 14px;
    color: #666;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 300;
}

.quantity-control {
    gap: 12px;
}

#quantity {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
}

.qty-btn {
    background: #fff; 
    color: #4A2513; 
    border: 2px solid #4A2513; 
    border-radius: 8px; 
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
}
.qty-btn:hover {
    background: #f8f8f8;
}

.add-order-btn {
    background: #FFA04E; 
    color: #4A2513; 
    border: 2px solid #4A2513; 
    border-radius: 10px; 
    padding: 10px 22px;
    font-size: 15px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.add-order-btn:hover {
    background: #ffcc00; 
    transform: scale(1.03);
}

.remove-btn {
    background: #e63946; 
    color: #fff; 
    border: 2px solid #fff; 
    border-radius: 8px; 
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.remove-btn:hover {
    background: #cc2f3d;
    transform: scale(1.05);
}

.checked-btn {
    background: #4caf50; 
    color: #fff; 
    border: 2px solid #fff; 
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.checked-btn:hover {
    background: #3e9142;
    transform: scale(1.05);
}

