/* ===============================
   Name2Site Home 
   =============================== */

.n2s-home {
  max-width:1100px;
  margin:0 auto;
  padding:28px 16px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

/* -------------------------------
   Hero
-------------------------------- */
.n2s-hero {
  padding:22px 18px;
  border-radius:18px;
  background:#f7f7f7;
  border:1px solid #ddd;
  margin-bottom:18px;
}

/* -------------------------------
   Grid: two rectangles
   Desktop = horizontal; Mobile = stacked
-------------------------------- */
.n2s-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 769px) {
  .n2s-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .n2s-grid .n2s-card {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* -------------------------------
   Cards 
-------------------------------- */
.n2s-card {
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid #ddd;
  box-shadow:0 8px 20px rgba(0,0,0,.08);

  position: relative;
  z-index: 1;

  pointer-events: auto;               /* ✅ allow interaction */
}

/* Kill invisible overlays */
.n2s-card::before,
.n2s-card::after {
  content: none !important;
  pointer-events: none !important;
}

/* -------------------------------
   Input + Button Row
-------------------------------- */
.n2s-row {
  display:flex;
  gap:2px; 
  align-items:center;

  pointer-events: auto;               
}

/* -------------------------------
   Inputs
-------------------------------- */
.n2s-input {
  flex:1;
  padding:12px;
  height:44px;

  border-radius:12px;
  border:1px solid #bbb;

  font-size:15px;
  pointer-events: auto;
}

.n2s-btn {
  background:#0056b3;
  color:#fff;
  border:none;
  padding:12px 15px;
  border-radius:6px;
  cursor:pointer;
}

.n2s-btn:disabled {
  background:#bfc9d9;
  cursor:not-allowed;
}


/* -------------------------------
   Messages
-------------------------------- */
.n2s-msg.ok  { color:#0a7a2f; }
.n2s-msg.err { color:#b00020; }

/* -------------------------------
   Honeypot
-------------------------------- */
.n2s-hp {
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}

/* =====================================
   FIX MOBILE BUTTON COLOR INCONSISTENCY
   ===================================== */

.n2s-btn,
.n2s-btn:hover,
.n2s-btn:active,
.n2s-btn:focus,
.n2s-btn:focus-visible {
  background-color: #0056b3 !important;
  color: #ffffff !important;
  outline: none !important;
}

/* Remove mobile tap highlight */
.n2s-btn {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

/* Prevent theme mobile overrides */
@media (max-width: 900px) {
  .n2s-btn {
    background-color: #0056b3 !important;
  }
}

/* -------------------------------
   Purchase Links (Fiverr & Upwork)
-------------------------------- */
.n2s-purchase-link {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.n2s-purchase-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.n2s-purchase-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.n2s-purchase-block {
  margin-top: 14px;
  padding: 16px 18px;
  background: #f0f7ff;
  border: 1px solid #b8d4ee;
  border-radius: 12px;
}

.n2s-purchase-heading {
  margin: 0 0 14px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.n2s-purchase-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.n2s-purchase-option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.n2s-purchase-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  min-width: 140px;
}

.n2s-purchase-block .n2s-fiverr-link,
.n2s-purchase-block .n2s-stripe-link {
  padding: 8px 14px;
  font-size: 14px;
}

.n2s-fiverr-link,
.n2s-upwork-link,
.n2s-stripe-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.n2s-fiverr-link {
  color: #1dbf73;
  border: 1px solid #1dbf73;
}

.n2s-fiverr-link:hover {
  background-color: #1dbf73;
  color: #fff;
  text-decoration: none;
}

.n2s-upwork-link {
  color: #14a800;
  border: 1px solid #14a800;
}

.n2s-upwork-link:hover {
  background-color: #14a800;
  color: #fff;
  text-decoration: none;
}

.n2s-fiverr-link svg,
.n2s-upwork-link svg,
.n2s-stripe-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.n2s-stripe-link {
  color: #635bff;
  border: 1px solid #635bff;
}

.n2s-stripe-link:hover {
  background-color: #635bff;
  color: #fff;
  text-decoration: none;
}

.n2s-stripe-link:hover .n2s-stripe-badge {
  color: #fff;
}

.n2s-stripe-badge {
  font-size: 9px;
  font-weight: 500;
  color: #635bff;
  background-color: rgba(99, 91, 255, 0.1);
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
  margin-left: 4px;
  line-height: 1.2;
}

.n2s-stripe-link:focus {
  outline: 2px solid #635bff;
  outline-offset: 2px;
}

.n2s-fiverr-link:focus {
  outline: 2px solid #1dbf73;
  outline-offset: 2px;
}

.n2s-upwork-link:focus {
  outline: 2px solid #14a800;
  outline-offset: 2px;
}

