/* Shared Wizard Styles
 * Used across all campaign wizard steps
 * Common layout: header with logo + progress bar
 */

/* ============================================
   WIZARD CARD - Unified Container
   ============================================ */

/* Main card container - rounded corners */
.wizard-card {
  width: 100%;
  max-width: 1328px;
  background: #fff;
  border-radius: 56px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Header with logo and progress bar */
.wizard-card-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 56px;
  border-bottom: 1px solid #eceff0;
}

/* Header left section (back button + logo) */
.wizard-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Back button */
.wizard-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  color: #000b14;
  cursor: pointer;
  transition: background 0.15s ease;
}

.wizard-back-button:hover {
  background: #f5f5f5;
}

/* Logo text */
.wizard-logo {
  font-size: 20px;
  font-weight: 600;
  color: #000b14;
  flex-shrink: 0;
}

/* Progress bar container */
.wizard-progress-bar {
  flex: 1;
  height: 8px;
  background: #eceff0;
  border-radius: 100px;
  overflow: hidden;
}

/* Progress bar fill */
.wizard-progress-fill {
  height: 100%;
  background: #d6d8d9;
  border-radius: 100px;
  transition: width 0.3s ease;
}

/* Content area */
.wizard-card-content {
  padding: 32px 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step badge */
.wizard-step-badge {
  display: inline-block;
  padding: 10px 24px;
  background: #fafafa;
  border: 1px solid #eceff0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #000b14;
  text-align: center;
}

/* Page header */
.wizard-page-header {
  text-align: center;
  margin-bottom: 32px;
}

.wizard-page-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  line-height: 1.35;
  margin-bottom: 8px;
}

.wizard-page-header p {
  font-size: 18px;
  font-weight: 500;
  color: #858a8e;
  line-height: 1.8;
}

/* Form card inside content */
.wizard-form-card {
  width: 100%;
  max-width: 768px;
  background: #fff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  padding: 20px 24px;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 1400px) {
  .wizard-card {
    max-width: 100%;
    border-radius: 32px;
  }

  .wizard-card-header {
    padding: 24px 32px;
  }

  .wizard-card-content {
    padding: 24px 32px 40px;
  }
}

@media (max-width: 768px) {
  .wizard-card {
    border-radius: 24px;
  }

  .wizard-card-header {
    padding: 20px 24px;
    gap: 16px;
  }

  .wizard-logo {
    font-size: 18px;
  }

  .wizard-card-content {
    padding: 20px 24px 32px;
  }

  .wizard-page-header h1 {
    font-size: 24px;
  }

  .wizard-page-header p {
    font-size: 16px;
  }

  .wizard-form-card {
    padding: 16px 20px;
  }
}

@media (max-width: 640px) {
  .wizard-card {
    border-radius: 20px;
  }

  .wizard-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .wizard-progress-bar {
    width: 100%;
  }

  .wizard-card-content {
    padding: 16px 20px 24px;
  }

  .wizard-step-badge {
    padding: 8px 16px;
    font-size: 12px;
  }

  .wizard-page-header h1 {
    font-size: 20px;
  }

  .wizard-page-header p {
    font-size: 14px;
  }

  /* Target Audience - Stack cards on mobile */
  .target-audience-options {
    flex-direction: column;
    align-items: center;
  }

  .audience-option-card {
    width: 100%;
    max-width: 340px;
  }
}

/* ============================================
   SELECT AUDIENCE PAGE
   ============================================ */

/* Font family for select audience page */
.select-audience-card,
.select-audience-card * {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Selected row state - keep for JavaScript toggling */
.select-audience-row.selected {
  background: rgba(0, 0, 0, 0.02);
}

.select-audience-filter-row.selected {
  background: #f0f0f0;
}

/* Hide actual radio input */
.select-audience-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom radio circle */
.select-audience-radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #d6d8d9;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s ease;
  margin-top: 2px; /* Align with first line of text when description is present */
}

.select-audience-radio-circle--small {
  width: 20px;
  height: 20px;
}

/* Selected state for radio circle */
.select-audience-radio-input:checked + .select-audience-radio-circle {
  border-color: #000b14;
}

.select-audience-radio-input:checked + .select-audience-radio-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #000b14;
  border-radius: 50%;
}

/* Selected row state */
.select-audience-row.selected {
  background: rgba(0, 0, 0, 0.02);
}

.select-audience-filter-row.selected {
  background: #f0f0f0;
}

/* Nested filters container - keep for JavaScript toggling */
.select-audience-nested.hidden {
  display: none;
}

/* Date field - keep for disabled states and has-value class */
.select-audience-date-field.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.select-audience-date-field.disabled:hover {
  border-color: #d6d8d9;
}

.select-audience-date-text.has-value {
  color: #000b14;
}

/* Native select element styled */
.select-audience-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  line-height: 24px;
  padding: 10px 36px 10px 12px;
  background: #ffffff;
  border: 1px solid #d6d8d9;
  border-radius: 12px;
  min-width: 275px;
  height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23858a8e' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.select-audience-select:hover {
  border-color: #000b14;
}

.select-audience-select:focus {
  outline: none;
  border-color: #000b14;
}

.select-audience-select option {
  color: #000b14;
}

.select-audience-select option:first-child {
  color: #858a8e;
}

/* Disabled state for filter fields */
.select-audience-filter-right.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.select-audience-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.select-audience-select:disabled:hover {
  border-color: #d6d8d9;
}

/* No custom styles needed - using Tailwind */

/* ============================================
   REWARD RECIPIENT STEP
   ============================================ */

/* Two-panel row below the wizard-card-header */
.reward-recipient-panels {
  display: flex;
}

/* Left panel */
.reward-recipient-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right panel - fafafa sidebar */
.reward-recipient-right {
  flex: 0 0 420px;
  background: #fafafa;
  border-left: 1px solid #eceff0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.reward-recipient-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 56px 48px;
}

/* Form - flex column centered for button alignment */
.reward-recipient-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Step badge */
.reward-recipient-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 32px;
}

.reward-recipient-step-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #858a8e;
  letter-spacing: 0;
  line-height: 16px;
}

/* Header */
.reward-recipient-header {
  text-align: center;
  margin-bottom: 32px;
}

.reward-recipient-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  margin: 0 0 8px;
  line-height: 1.35;
}

.reward-recipient-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #858a8e;
  margin: 0;
  line-height: 1.8;
}

/* Option cards container */
.reward-recipient-options {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 688px;
}

/* Individual option card */
.reward-recipient-option-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  padding: 24px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  min-height: 188px;
  box-sizing: border-box;
}

.reward-recipient-option-card:hover {
  border-color: #d6d8d9;
}

.reward-recipient-option-card.selected {
  border-color: #000b14;
  box-shadow: 0 0 0 1px #000b14;
}

/* Icon wrapper */
.reward-recipient-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #fafafa;
  border-radius: 100px;
  margin-bottom: 16px;
}

.reward-recipient-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240, 233, 255, 0.5);
  border-radius: 100px;
}

/* Option text */
.reward-recipient-option-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.reward-recipient-option-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  line-height: 22px;
}

.reward-recipient-option-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #858a8e;
  line-height: 19px;
}

/* Recommended badge */
.reward-recipient-recommended-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(17, 167, 119, 0.1);
  color: #11a777;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  padding: 4px 8px;
  border-radius: 12px;
}

/* Next button */
.reward-recipient-next-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 149px;
  height: 54px;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border effect */
.reward-recipient-next-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(90deg, #c1ceff 0%, #657ddb 50%, #8a0fd1 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reward-recipient-next-btn:hover {
  transform: translateY(-1px);
}

.reward-recipient-next-btn:active {
  transform: translateY(0);
}

/* Tips card inside right panel */
.reward-recipient-tips-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  padding: 32px;
}

.reward-recipient-tips-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 24px;
}

.reward-recipient-tips-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  margin: 0 0 24px;
  line-height: 22px;
}

.reward-recipient-tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reward-recipient-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.reward-recipient-tips-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.reward-recipient-tips-list li span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #858a8e;
  line-height: 25px;
}

.reward-recipient-tips-list li strong {
  font-weight: 600;
  color: #000b14;
}

/* ============================================
   CONFIGURE REWARD - CUSTOMER / FRIEND REWARD FIELDS
   ============================================ */

/* Form fields row - incentive type + amount side by side */
.customer-reward-fields {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  margin-bottom: 24px;
}

.customer-reward-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customer-reward-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  line-height: 21px;
}

.customer-reward-select,
.customer-reward-input {
  width: 100%;
  height: 53px;
  padding: 0 16px;
  border: 1px solid #eceff0;
  border-radius: 12px;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #52595f;
  line-height: 19px;
  outline: none;
  transition: border-color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.customer-reward-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2352595f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.customer-reward-select:focus,
.customer-reward-input:focus {
  border-color: #000b14;
}

.customer-reward-input::placeholder {
  color: #858a8e;
  font-weight: 500;
}

/* Info banner */
.customer-reward-info-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 520px;
  padding: 8px 12px;
  background: #fffaee;
  border-radius: 12px;
  margin-bottom: 32px;
}

.customer-reward-info-banner svg {
  flex-shrink: 0;
}

.customer-reward-info-banner span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #52595f;
  line-height: 18px;
}

.customer-reward-info-banner strong {
  font-weight: 600;
  color: #000b14;
}

/* ============================================
   CONFIGURE REWARD - BOTH REWARDS LAYOUT
   ============================================ */

/* Single content wrapper — replaces two-panel layout */
.both-rewards-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 80px 48px;
}

.both-rewards-content .reward-recipient-step-badge,
.both-rewards-content .reward-recipient-header {
  text-align: center;
}

.both-rewards-content .reward-recipient-form {
  width: 100%;
  max-width: 680px;
}

/* Reward section wrapper */
.both-rewards-section {
  width: 100%;
}

/* Section header with icon + title */
.both-rewards-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.both-rewards-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
}

.both-rewards-section-icon--customer {
  background: rgba(240, 233, 255, 0.5);
}

.both-rewards-section-icon--friend {
  background: rgba(17, 167, 119, 0.1);
}

.both-rewards-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  line-height: 22px;
}

/* Divider between the two sections */
.both-rewards-divider {
  width: 100%;
  height: 1px;
  background: #eceff0;
  margin: 24px 0;
}

/* Widen fields and banners inside both-rewards sections */
.both-rewards-section .customer-reward-fields,
.both-rewards-section .customer-reward-info-banner {
  max-width: 100%;
}

/* Reminder Emails Section - using Tailwind, keep only toggle switch */

/* Toggle switch */
.select-audience-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: #d6d8d9;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.select-audience-toggle-switch--active {
  background: #17AE8B;
}

.select-audience-toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.select-audience-toggle-switch--active::after {
  transform: translateX(20px);
}

/* Reminder fields - using Tailwind, keep only hidden state */
.select-audience-reminder-fields.hidden {
  display: none;
}

.select-audience-reminder-select {
  padding: 10px 36px 10px 12px;
  background: #ffffff;
  border: 1px solid #d6d8d9;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000b14' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  min-width: 100px;
}

.select-audience-reminder-select--number {
  min-width: 80px;
}

.select-audience-reminder-select:focus {
  outline: none;
  border-color: #000b14;
}

/* Footer - using Tailwind */

/* Upload and reminder preview - using Tailwind */

/* ============================================
   CHANNEL WIZARD - Channel Selection Step
   ============================================ */

/* Channel card selection states */
.channel-card[data-selected="true"] {
  border-color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.channel-card[data-selected="true"] [data-channel-select-target="indicator"] {
  background-color: #000;
  border-color: #000;
}

.channel-card[data-selected="true"] [data-channel-select-target="indicator"] svg {
  display: block;
}

.channel-card[data-selected="false"] {
  border-color: #e5e7eb;
}

.channel-card[data-selected="false"] [data-channel-select-target="indicator"] {
  border-color: #d1d5db;
}

/* ============================================
   CONTENT WIZARD - Content Editing Step
   ============================================ */

/* Content Wizard Container */
.content-wizard-container {
  max-width: 1328px;
  margin: 0 auto;
  border-radius: 56px;
  overflow: hidden;
  min-height: 820px;
}

/* Header: Brand + Progress */
.content-wizard-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 56px 24px;
  border-bottom: 1px solid #eceff0;
}

.content-wizard-brand {
  font-size: 20px;
  font-weight: 600;
  color: #000b14;
  white-space: nowrap;
}

.content-wizard-progress {
  flex: 1;
  height: 8px;
  background: #eceff0;
  border-radius: 100px;
  overflow: hidden;
}

.content-wizard-progress-fill {
  height: 100%;
  background: #d6d8d9;
  border-radius: 100px;
  transition: width 0.3s ease;
}

/* Navigation row */
.content-wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #fafafa;
}

.content-wizard-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  color: #000b14;
  transition: background 0.15s ease;
}

.content-wizard-back:hover {
  background: #f5f5f5;
}

.content-wizard-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 45px;
  background: #eceff0;
  border-radius: 100px;
  color: #000b14;
}

/* Tab navigation */
.content-wizard-tabs {
  display: inline-flex;
  background: #fafafa;
  border: 1px solid #eceff0;
  border-radius: 100px;
  padding: 4px;
}

.content-wizard-tab {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #52595f;
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.content-wizard-tab[data-active="true"] {
  background: #fff;
  color: #000b14;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-wizard-tab:hover:not([data-active="true"]) {
  color: #000b14;
}

/* Next button */
.content-wizard-next {
  padding: 16px 48px;
  background: #000b14;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.content-wizard-next:hover {
  background: #1a1a1a;
}

/* Content body */
.content-wizard-body {
  background: #fafafa;
  min-height: 624px;
}

/* Tab panels */
.tab-panel {
  display: none;
}

.tab-panel[data-active="true"] {
  display: block;
}

/* Test Invite Buttons */
/* SMS Test Invite Button */
.sms-test-invite-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sms-test-invite-btn {
  padding: 12px 24px;
  background: #000b14;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sms-test-invite-btn:hover {
  background: #1a1a1a;
}

/* Email Test Invite Button */
.email-test-invite-btn {
  padding: 10px 20px;
  background: #000b14;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-left: 8px;
}

.email-test-invite-btn:hover {
  background: #1a1a1a;
}

/* ============================================
   CONFIRM BUSINESS PAGE
   ============================================ */

/* Content area styling */
.confirm-business-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px 64px;
  gap: 24px;
}

/* Form wrapper to maintain gap spacing */
.confirm-business-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* Logo section */
.confirm-business-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.confirm-business-logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-business-logo-circle {
  width: 82px;
  height: 82px;
  border: 1px solid #eceff0;
  border-radius: 100px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.confirm-business-logo-edit {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s ease;
  color: #858a8e;
}

.confirm-business-logo-edit:hover {
  border-color: #d6d8d9;
}

.confirm-business-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000b14;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s ease;
}

.confirm-business-logo-link:hover {
  opacity: 0.7;
}

/* Business name badge */
.confirm-business-name-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 100px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.confirm-business-name-badge span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000b14;
}

.confirm-business-name-input {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000b14;
  background: transparent;
  border: none;
  outline: none;
  text-align: center;
  width: 100%;
  padding: 0;
}

.confirm-business-name-input::placeholder {
  color: #858a8e;
}

/* Header */
.confirm-business-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.confirm-business-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000b14;
  margin: 0;
  line-height: 1.35;
}

.confirm-business-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  margin: 0;
  line-height: 1.5;
  max-width: 500px;
}

/* Confirm button */
.confirm-business-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 0;
  padding: 16px 56px;
  background: #000b14;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: transform 0.15s ease;
}

/* Gradient border effect */
.confirm-business-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  padding: 2px;
  background: linear-gradient(90deg, #c1ceff 0%, #657ddb 50%, #8a0fd1 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.confirm-business-btn:hover {
  transform: translateY(-1px);
}

.confirm-business-btn:active {
  transform: translateY(0);
}

/* Alternative link */
.confirm-business-alt-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #858a8e;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.confirm-business-alt-link:hover {
  color: #6b7280;
}

/* ============================================
   TARGET AUDIENCE PAGE
   ============================================ */

/* Option Cards Container */
.target-audience-options {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.audience-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 340px;
  height: 164px;
  background: #ffffff;
  border: 1px solid #eceff0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.audience-option-card:hover {
  border-color: #d6d8d9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.audience-option-card.selected {
  border-color: #7746d6;
  border-width: 2px;
}

/* Icon Wrapper */
.audience-option-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #fafafa;
  border-radius: 100px;
}

.audience-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(240, 233, 255, 0.5);
  border-radius: 100px;
  color: #7746d6;
}

/* Option Text */
.audience-option-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000b14;
  line-height: 1.5;
  text-align: center;
}

