
.counter{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:2px solid #8aa7a0;
  border-radius:8px;
  padding:5px 10px;
  width:160px;
  height:38px;
  color:var(--green);
  font-weight:bold;
  font-size:14px;
}

.counter button{
  width:24px;
  height:24px;
  border-radius:50%;
  border:2px solid var(--green);
  background:#fff;
  color:var(--green);
  font-size:16px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
}
.counter button:hover{ background:var(--green); color:#fff; }

.counter .value{ min-width:20px; text-align:center; }
