# Sheen on gold pill (B 075)

Category: Buttons  
Tags: shine, sheen, pill, gradient, luxury  
Page: https://designforai.dev/snippet/btn-075

## Prompt

A gold gradient pill (90deg #fbbf24 to #f59e0b), dark brown uppercase 13px text with 0.08em spacing, 12px by 26px padding, fully rounded. On hover a 50% white strip rotated 25deg sweeps from left to right across it in 600ms. Active dims 8%. Focus outline 2px #92400e.

## HTML

```html
<button class="btn-075">VIP access</button>
```

## CSS

```css
.btn-075 {
  position: relative;
  overflow: hidden;
  font: 600 13px/1 system-ui,sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #422006;
  background: linear-gradient(90deg,#fbbf24,#f59e0b);
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: filter .15s
}
.btn-075::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 30%;
  height: 200%;
  background: rgba(255,255,255,.5);
  transform: rotate(25deg);
  transition: left .6s
}
.btn-075:hover::after {
  left: 130%
}
.btn-075:focus-visible {
  outline: 2px solid #92400e;
  outline-offset: 3px
}
.btn-075:active {
  filter: brightness(.92)
}
```
