.hidden {
  display: none;
}
#mini-cart {
  position: absolute;
  top: 80px;
  right: 0;
  width: 300px;
  background: #1e1e1e;
  border: 1px solid white;
  padding: 15px;
  border-radius: 8px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 20;
}
#mini-cart-items {
  max-height: 300px;
  overflow-y: auto;
}
#mini-cart-footer {
  margin-top: 10px;
  border-top: 1px solid white;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#mini-cart-checkout {
  background: #544f51;
  border: none;
  color: white;
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 15px;
  width: 160px;
  height: 40px;
  white-space: nowrap;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #444;
  position: relative;
}

.mini-cart-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid white;
}

.mini-cart-info {
  flex-grow: 1;
  color: white;
}

.mini-cart-name {
  font-weight: bold;
  margin-bottom: 4px;
}

.mini-cart-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.btn-quantidade {
  background: #544f51;
  border: none;
  color: white;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-remover {
  background: none;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 5px;
}

@media (min-width:1600px){
  #mini-cart {
  top: 95px;
  width:330px;
}

.mini-cart-info p {
  font-size:20px;
}

span{
  font-size:19px;
}

.btn-remover {
  background:none;
  border: none;
  width:30px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
  left:250px;
  top: -4px;
}
}