.bcm-coupon-box {
  margin: 0 0 1rem;
  padding: 14px 16px;
  border: 1px solid #ead68a;
  border-radius: 6px;
  background: #fff6cf;
  color: #3d3928;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
}
.bcm-coupon-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.bcm-coupon-line + .bcm-coupon-line { margin-top: 8px; }
.bcm-coupon-code {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 2px 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  background: #fff;
  color: #222;
  font-weight: 700;
  letter-spacing: .3px;
}
.bcm-copy-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 4px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.bcm-copy-button:hover { background: #f7f7f7; }
.bcm-copy-button:active { transform: scale(.96); }
.bcm-copy-button svg { width: 17px; height: 17px; fill: currentColor; }
.bcm-copy-feedback {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  transform: translateX(-50%);
  padding: 3px 7px;
  border-radius: 3px;
  background: #222;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.bcm-copy-button.is-copied .bcm-copy-feedback { opacity: 1; }
