.vp-dual-trap-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.vp-dual-trap-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.vp-dual-trap-modal {
  position: relative;
  width: min(420px, 100%);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: #111827;
  border: 1px solid #374151;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.vp-dual-trap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vp-dual-trap-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.vp-dual-trap-close {
  border: none;
  background: #374151;
  color: #d1d5db;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.vp-dual-trap-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.vp-dual-trap-product {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 14px;
  padding: 10px;
  text-align: center;
}

.vp-dual-trap-product img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}

.vp-dual-trap-name {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
  color: #f3f4f6;
  min-height: 30px;
}

.vp-dual-trap-price {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #daff45;
}

.vp-dual-trap-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #1f2937;
  border: 1px solid #374151;
}

.vp-dual-trap-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
}

.vp-dual-trap-meta span {
  color: #9ca3af;
}

.vp-dual-trap-meta strong {
  color: #f9fafb;
  text-align: right;
}

.vp-dual-trap-comment {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  border-radius: 12px;
  border: 1px solid #4b5563;
  background: #ffffff !important;
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.vp-dual-trap-submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #daff45 0%, #c4e612 100%);
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.vp-dual-trap-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

html[data-vp-theme="light"] .vp-dual-trap-modal {
  background: #ffffff;
  border-color: #d8dee8;
}

html[data-vp-theme="light"] .vp-dual-trap-header h3,
html[data-vp-theme="light"] .vp-dual-trap-name,
html[data-vp-theme="light"] .vp-dual-trap-meta strong {
  color: #1c1f26;
}

html[data-vp-theme="light"] .vp-dual-trap-product,
html[data-vp-theme="light"] .vp-dual-trap-meta {
  background: #f3f5f8;
  border-color: #d8dee8;
}
