
/* Coupon styling (pink format) – site-agnostic, you can override in theme if desired */
.coupon-container{
  border: 2px solid #ff2fb3;
  border-radius: 16px;
  padding: 14px 14px 12px;
  margin: 12px 0;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.coupon-header{
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}
.coupon-code{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  border: 2px dashed #ff2fb3;
  user-select: none;
}
.coupon-code.revealed{
  border-style: solid;
}
.coupon-expiry{
  margin-top: 10px;
  color: #666;
  font-size: 13px;
}
.coupon-expired{
  opacity: 0.55;
  filter: grayscale(0.25);
}
.dtbd-coupons .dtbd-section-title{
  margin-top: 18px;
}
