/* ── Floortek Form ──────────────────────────────────────────── */
.floortek-shell {
  width: 100%;
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.floortek-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.floortek-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #96281b, #e74c3c);
}

/* ── Layout ── */
.ftk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .ftk-row { grid-template-columns: 1fr; }
  .ftk-surface-grid { grid-template-columns: 1fr 1fr; }
}

.ftk-field {
  margin-bottom: 1rem;
}

.ftk-row .ftk-field {
  margin-bottom: 0;
}

/* ── Labels ── */
.ftk-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}

/* ── Inputs ── */
.floortek-shell input[type="text"],
.floortek-shell input[type="email"],
.floortek-shell input[type="tel"],
.floortek-shell input[type="number"] {
  width: 100%;
  padding: 11px 14px;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  color: #111;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.floortek-shell input::placeholder { color: #9ca3af; }

.floortek-shell input:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

/* ── Phone ── */
.ftk-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ftk-phone-wrap:focus-within {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}

.ftk-phone-prefix {
  padding: 11px 12px;
  background: #f3f4f6;
  border-right: 1.5px solid #d1d5db;
  color: #666;
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  user-select: none;
}

.ftk-phone-wrap input {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}

.ftk-phone-wrap input:focus {
  border: none;
  box-shadow: none;
}

/* ── Zip ── */
.ftk-zip-wrap { position: relative; }

.ftk-zip-status {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  display: none;
  pointer-events: none;
}

/* ── Radio options ── */
.ftk-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.ftk-surface-grid {
  grid-template-columns: 1fr 1fr;
}

.ftk-radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333 !important;
  box-sizing: border-box;
}

.ftk-radio-option label {
  color: #333 !important;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
}

.ftk-radio-option:hover {
  border-color: rgba(192,57,43,0.4);
  background: #fff0ef;
}

.ftk-radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #c0392b;
  cursor: pointer;
  flex-shrink: 0;
}

.ftk-radio-option.selected {
  border-color: #c0392b;
  background: rgba(192,57,43,0.08);
  color: #c0392b !important;
}

.ftk-radio-option.selected label { color: #c0392b !important; }

/* Desktop: plain radio circle + label, no button box */
@media (min-width: 769px) {
  .ftk-radio-option {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 2px 0 !important;
    gap: 8px;
    transition: none;
  }
  .ftk-radio-option:hover {
    background: transparent !important;
    border: none !important;
  }
  .ftk-radio-option.selected {
    background: transparent !important;
    border: none !important;
  }
  .ftk-radio-option label { font-weight: 400; }
}

/* ── Alerts ── */
.ftk-alert {
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  border: 1px solid;
  margin-top: 0.6rem;
}

.ftk-alert.visible { display: block !important; }
.ftk-warning { background: rgba(234,179,8,0.06); border-color: rgba(180,130,0,0.35) !important; color: #92640a !important; }
.ftk-danger  { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.35) !important; color: #dc2626 !important; }
.ftk-success { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.4) !important;  color: #16a34a !important; }

/* ── Divider ── */
.ftk-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 1.3rem 0;
}

/* ── Errors ── */
.ftk-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 5px;
  display: none;
}

.ftk-error.visible { display: block; }

/* ── Privacy notice ── */
.ftk-privacy-notice {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  text-align: center;
}

.ftk-privacy-notice a {
  color: #c0392b;
  text-decoration: none;
}

.ftk-privacy-notice a:hover { text-decoration: underline; }

/* ── Form title ── */
.ftk-form-title {
  margin-bottom: 1.4rem;
  text-align: center;
}

.ftk-form-title h2 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #111;
  margin: 0 0 4px;
}

.ftk-form-title p {
  font-size: 0.82rem;
  color: #888;
  margin: 0;
}

/* ── Submit ── */
.ftk-submit {
  width: 100%;
  padding: 15px;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  background: #c0392b !important;
  background-color: #c0392b !important;
  color: #fff !important;
  transition: all 0.2s;
  margin-top: 1rem;
  display: block;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.ftk-submit:hover:not(:disabled) {
  background: #e74c3c !important;
  background-color: #e74c3c !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192,57,43,0.35) !important;
}

.ftk-submit:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

.ftk-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}



/* ── Legal disclaimer below form ── */
.ftk-legal-text {
  font-size: 0.72rem;
  color: #999;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
}

.ftk-legal-text a { color: #c0392b; text-decoration: none; }
.ftk-legal-text a:hover { text-decoration: underline; }

/* ── Security badge ── */
.ftk-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.ftk-security svg {
  width: 12px;
  height: 12px;
  opacity: 0.45;
}

/* ── Spinner ── */
.ftk-spinner {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ftk-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes ftk-spin { to { transform: rotate(360deg); } }
