.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff9ee;
  border: 1px solid rgba(58, 39, 23, 0.12);
  box-shadow: 0 10px 24px rgba(58, 39, 23, 0.08);
  font-weight: 750;
}

.pill-btn-primary {
  background: linear-gradient(135deg, #f9ce60, var(--accent));
  color: #2b1b0b;
  border-color: rgba(58, 39, 23, 0.14);
  box-shadow: 0 14px 36px rgba(230, 180, 54, 0.3);
}

.pill-btn-admin {
  background: rgba(58, 39, 23, 0.08);
  border-color: rgba(58, 39, 23, 0.18);
  color: var(--text);
  box-shadow: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(230, 180, 54, 0.25);
  border-radius: 999px;
  gap: 6px;
  background: rgba(230, 180, 54, 0.14);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(58, 39, 23, 0.85);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  margin-left: 6px;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  stroke: currentColor;
  fill: none;
}

.icon use {
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid rgba(58, 39, 23, 0.12);
  background: #fff;
  cursor: pointer;
  font-weight: 750;
  font-size: 14px;
  color: var(--text);
  transition: all 0.18s ease;
  box-shadow: 0 10px 24px rgba(58, 39, 23, 0.08);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #f8ce66, var(--accent));
  color: #2b1b0b;
  border-color: rgba(58, 39, 23, 0.14);
  box-shadow: 0 16px 36px rgba(230, 180, 54, 0.32);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -60% -80%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.52) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(16%);
}

.btn-ghost {
  background: rgba(58, 39, 23, 0.04);
  border-color: rgba(58, 39, 23, 0.08);
  box-shadow: none;
}

.btn-compact {
  padding: 10px 14px;
  border-radius: 12px;
}

.btn-wide {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 12px;
}
