/* assets/css/wots-tips.css */
.wots-tip-module { border: 1px solid #eee; padding: 12px; border-radius: 8px; background: #fafafa; }
.wots-tip-header { font-weight: 600; margin-bottom: 8px; }
.wots-tip-options { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.wots-tip-btn { padding: 8px 12px; border: 1px solid #ddd; background: #fff; border-radius: 6px; cursor: pointer; transition: all .2s; }
.wots-tip-btn:hover { border-color: #999; transform: translateY(-1px); }
.wots-tip-btn.active { background: #111; color: #fff; border-color: #111; }
.wots-tip-custom { display: flex; gap: 6px; align-items: center; }
.wots-tip-input { width: 120px; padding: 8px; border: 1px solid #ddd; border-radius: 6px; }
.wots-tip-apply, .wots-tip-clear { padding: 8px 12px; border: 1px solid #ddd; background: #fff; border-radius: 6px; cursor: pointer; }
.wots-tip-apply:hover, .wots-tip-clear:hover { border-color: #999; }
.wots-tip-thanks { margin-top: 8px; font-size: 0.9em; color: #0a8; opacity: 0; transition: opacity .25s; }
.wots-tip-thanks.wots-show { opacity: 1; }
.wots-checkout-tip { margin: 12px 0; }
.wots-tip-row td { padding-top: 8px; }
@media (max-width: 480px) {
  .wots-tip-options { gap: 6px; }
  .wots-tip-input { width: 100px; }
}