.unasp-scope {
  --u-blue: #002554;
  --u-orange: #F07E58;
  --u-orange-hover: #d66a45;
  --u-gray-bg: #f4f2f3;
  --u-gray-text: #666;
  --u-border: #e5e7eb;
}

.unasp-scope * { box-sizing: border-box; margin: 0; padding: 0; }

.unasp-scope .unasp-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: center; align-items: center;
  padding: 15px;
}

.unasp-scope .unasp-card {
  background: white; width: 100%; max-width: 400px;
  border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
  animation: unaspFadeIn 0.3s ease-out;
  padding: 30px; text-align: left;
  display: flex; flex-direction: column;
}

@keyframes unaspFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.unasp-scope .unasp-close {
  position: absolute; top: 15px; right: 20px;
  background: none; border: none; font-size: 28px;
  color: #999; cursor: pointer; line-height: 1;
}
.unasp-scope .unasp-close:hover { color: #333; }

.unasp-scope .unasp-title { color: var(--u-blue); font-size: 26px; font-weight: 700; margin-bottom: 5px; }
.unasp-scope .unasp-subtitle { font-size: 14px; color: var(--u-gray-text); margin-bottom: 15px; }

.unasp-scope .unasp-tag { display: flex; align-items: center; font-size: 14px; color: #888; font-weight: 500; margin-bottom: 15px; }
.unasp-scope .unasp-dot { width: 10px; height: 10px; background-color: var(--u-orange); border-radius: 50%; margin-right: 8px; }

.unasp-scope .unasp-divider { border: 0; border-top: 1px solid var(--u-border); margin-bottom: 10px; }

.unasp-scope .unasp-price-label { font-size: 14px; color: var(--u-gray-text); margin-bottom: 2px; }
.unasp-scope .unasp-price { color: var(--u-orange); font-size: 38px; font-weight: 700; margin-bottom: 25px; }

.unasp-scope .unasp-select-wrapper { margin-bottom: 15px; position: relative; }

.unasp-scope .unasp-select {
  width: 100%; padding: 14px 20px;
  border: 2px solid var(--u-orange); background-color: var(--u-gray-bg);
  border-radius: 50px; font-size: 16px; outline: none; cursor: pointer;
  color: var(--u-blue); font-weight: 500; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23002554' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 16px;
}

.unasp-scope .unasp-btn-submit {
  display: block; width: 100%; padding: 16px;
  background-color: var(--u-orange); color: white;
  text-align: center; font-weight: 600; font-size: 18px;
  border-radius: 50px; text-decoration: none; border: none;
  cursor: pointer; transition: background-color 0.2s;
}
.unasp-scope .unasp-btn-submit:hover { background-color: var(--u-orange-hover); color: white; text-decoration: none; }

.unasp-scope .u-disabled { opacity: 0.6; pointer-events: none; background-color: #ccc !important; }
