/* Glow Order UI — designed to blend into an existing site */
:root{
  --glw-radius: 14px;
  --glw-stroke: rgba(0,0,0,.12);
  --glw-muted: rgba(0,0,0,.62);
  --glw-bg: rgba(255,255,255,.72);
  --glw-shadow: 0 10px 28px rgba(0,0,0,.08);
  --glw-accent: #7b61ff; /* adjust to your site purple if you want */
}

.glw-card{
  border: 1px solid var(--glw-stroke);
  border-radius: var(--glw-radius);
  background: var(--glw-bg);
  box-shadow: var(--glw-shadow);
  padding: 16px;
  display: grid;
  gap: 12px;
  font-family: inherit;
}

.glw-top{
  display:flex;
  gap: 12px;
  align-items:center;
}

.glw-img{
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.8);
}

.glw-name{
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.1;
}

.glw-price{
  margin-top: 4px;
  font-weight: 900;
  font-size: 18px;
}

.glw-field span{
  display:block;
  font-size: 12.5px;
  color: var(--glw-muted);
  margin-bottom: 6px;
}

.glw-select{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--glw-stroke);
  background: rgba(255,255,255,.9);
  font: inherit;
}

.glw-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
}

.glw-stepper{
  display:flex;
  align-items:center;
  gap: 8px;
}

.glw-step{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--glw-stroke);
  background: rgba(255,255,255,.95);
  cursor: pointer;
  font-size: 18px;
}

.glw-qty{
  width: 74px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--glw-stroke);
  background: rgba(255,255,255,.95);
  text-align:center;
  font-weight: 800;
  font: inherit;
}

.glw-btn{
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
}

.glw-btn-primary{
  background: var(--glw-accent);
  color: #fff;
}

.glw-link{
  font-weight: 700;
  text-decoration: none;
  color: var(--glw-accent);
}

.glw-msg{
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--glw-muted);
}
