/* VoucherVibes Trust Signals */
.vvts-trust-badge{
  display:flex;
  align-items:center;
  gap:8px;
  margin:8px 0 10px 0;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #e6e6e6;
  background:#fafafa;
  font-size:13px;
  line-height:1.2;
  color:#2f2f2f;
  width:fit-content;
}
.vvts-trust-badge .vvts-trust-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#b9b9b9;
  color:#ffffff;
  font-weight:700;
  font-size:12px;
}
.vvts-trust-badge.is-fresh .vvts-trust-icon{
  background:#1ea84b;
}
.vvts-trust-text{
  white-space:nowrap;
}

.vvts-feedback{
  display:flex;
  align-items:center;
  gap:8px;
  margin:10px 0 12px 0;
  flex-wrap:wrap;
}
.vvts-feedback.vvts-attention{
  box-shadow:0 0 0 3px rgba(30,168,75,.14);
  border-radius:12px;
  padding:6px 8px;
}
.vvts-feedback-q{
  font-size:13px;
  color:#333;
  margin-right:6px;
}
.vvts-thumb{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid #ddd;
  background:#fff;
  border-radius:999px;
  padding:6px 10px;
  cursor:pointer;
  font-size:13px;
  line-height:1;
  color:#111 !important;
  text-decoration:none !important;
  appearance:none;
  -webkit-appearance:none;
}
.aci-coupon-card .vvts-feedback .vvts-thumb,
.aci-coupon-card .vvts-feedback .vvts-thumb *{
  color:#111 !important;
}
.vvts-thumb .vvts-count{
  display:inline-block !important;
  opacity:1 !important;
  visibility:visible !important;
}
.vvts-thumb:hover{ filter:brightness(0.98); }
.vvts-thumb[disabled]{ opacity:.6; cursor:not-allowed; }
.vvts-thumb.is-selected{
  border-color:#1ea84b;
  box-shadow:0 0 0 2px rgba(30,168,75,.12);
}
.vvts-thumb.vvts-down.is-selected{
  border-color:#d65050;
  box-shadow:0 0 0 2px rgba(214,80,80,.12);
}
.vvts-icon{ font-size:14px; }
.vvts-count{ font-weight:600; color:inherit !important; }
.vvts-thanks{
  font-size:13px;
  color:#1ea84b;
  margin-left:6px;
}


/* Badge states */
.vvts-trust-badge.is-success .vvts-trust-icon{ background:#1ea84b; }
.vvts-trust-badge.is-unknown .vvts-trust-icon{ background:#b9b9b9; }
.vvts-trust-badge.is-fail .vvts-trust-icon{ background:#b9b9b9; }
.vvts-trust-badge.is-pending .vvts-trust-icon{
  background:#b9b9b9;
  animation: vvtsSpin 1.2s linear infinite;
}
@keyframes vvtsSpin { from { transform: rotate(0deg);} to { transform: rotate(360deg);} }

/* Voting lock (only after redeem click) */
.vvts-lock-hint{
  display:none;
  font-size:12px;
  color:#555;
  width:100%;
}
.vvts-feedback.is-locked .vvts-lock-hint{ display:block; }
.vvts-feedback.is-locked .vvts-thumb{ opacity:.55; }

/* Redeem highlight */
.aci-coupon-card .aci-coupon-button.vvts-redeem-attention{
  box-shadow:0 0 0 3px rgba(30,168,75,.20) !important;
  border-radius:12px;
}

/* Simple toast reminder */
#vvts-toast{
  position:fixed;
  left:16px;
  right:16px;
  bottom:18px;
  z-index:99999;
  max-width:560px;
  margin:0 auto;
  background:#111;
  color:#fff;
  padding:12px 14px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.20);
  display:none;
}
#vvts-toast.vvts-show{ display:block; }
#vvts-toast .vvts-toast-row{ display:flex; gap:10px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
#vvts-toast .vvts-toast-msg{ font-size:13px; line-height:1.3; }
#vvts-toast .vvts-toast-actions{ display:flex; gap:8px; }
#vvts-toast button{
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:999px;
  padding:8px 10px;
  cursor:pointer;
  font-size:13px;
}
#vvts-toast button:hover{ filter:brightness(1.05); }
#vvts-toast button:active{ transform: translateY(1px); }
