/* Choice Modal Styles */

.choice-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.choice-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.choice-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: choiceModalSlideIn 0.3s ease-out;
}

@keyframes choiceModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.choice-modal-header {
  padding: 32px 32px 16px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
}

.choice-modal-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #212529;
}

.choice-modal-header p {
  margin: 0;
  font-size: 16px;
}

.choice-modal-body {
  padding: 32px;
}

.choice-card {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.choice-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.choice-card-lite {
  border-color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.choice-card-lite:hover {
  border-color: #667eea;
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.25);
}

.choice-card-header {
  padding: 24px;
  background: white;
  text-align: center;
}

.choice-card-lite .choice-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.choice-card-header h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
}

.choice-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
}

.price-period {
  font-size: 16px;
  opacity: 0.8;
}

.choice-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.choice-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.choice-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.choice-features i {
  font-size: 18px;
  flex-shrink: 0;
}

.choice-modal-footer {
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}

.choice-modal-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.choice-modal-footer a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .choice-modal-content {
    border-radius: 0;
    max-height: 100vh;
    min-height: 100vh;
  }

  .choice-modal-header {
    padding: 24px 20px 16px;
  }

  .choice-modal-header h2 {
    font-size: 24px;
  }

  .choice-modal-body {
    padding: 20px;
  }

  .choice-card-header h3 {
    font-size: 20px;
  }

  .price-amount {
    font-size: 32px;
  }

  .choice-features li {
    font-size: 14px;
    padding: 8px 0;
  }
}
