/**
 * Website Cost Calculator Styles — Web Techiq Tools Platform
 * High-performance, ultra-responsive, accessible, modern agency engineering.
 */

.wt-calc-container {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 40px -8px rgba(11, 17, 32, 0.08);
  overflow: hidden;
  margin: 30px 0 45px 0;
  font-family: var(--wt-body-font-family, inherit);
}

/* ── Top Bar ────────────────────────────────────────────── */
.wt-calc-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 28px;
  background: linear-gradient(135deg, rgba(254, 241, 225, 0.7) 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wt-calc-currency-switch {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.wt-switch-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--wt-secondary-color, #0b1120);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wt-currency-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wt-currency-pill {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--wt-heading-color, #0d1b2a);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.wt-currency-pill:hover {
  border-color: var(--wt-primary-color, #ff6b00);
  color: var(--wt-primary-color, #ff6b00);
  background: #fffaf5;
}

.wt-currency-pill.active {
  background: var(--wt-primary-color, #ff6b00);
  border-color: var(--wt-primary-color, #ff6b00);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.wt-calc-live-indicator {
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wt-live-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: wt-pulse 2s infinite;
}

@keyframes wt-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ── Layout Grid ────────────────────────────────────────── */
.wt-calc-layout-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 32px;
  padding: 32px;
}

/* ── Form Column & Step Cards ───────────────────────────── */
.wt-calc-form-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wt-calc-step-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wt-calc-step-card:hover {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.wt-step-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.wt-step-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--wt-primary-color, #ff6b00), #e05d00);
  color: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
}

.wt-step-title {
  font-family: var(--wt-heading-font-family, inherit);
  font-size: 18px;
  font-weight: 700;
  color: var(--wt-heading-color, #0d1b2a);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.wt-step-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* ── Website Type Selection Cards ────────────────────────── */
.wt-type-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.wt-type-card-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
  cursor: pointer;
  text-align: left;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

.wt-type-card-btn:hover {
  background: #ffffff;
  border-color: rgba(255, 107, 0, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.wt-type-card-btn.selected {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
  border-color: var(--wt-primary-color, #ff6b00);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.12);
}

.wt-type-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.wt-type-card-top i {
  font-size: 18px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--wt-primary-color, #ff6b00);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wt-type-card-top strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--wt-heading-color, #0d1b2a);
}

.wt-type-card-desc {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.45;
}

.wt-type-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
}

.wt-type-card-bottom .wt-price-from {
  font-weight: 700;
  color: var(--wt-primary-color, #ff6b00);
}

.wt-type-card-bottom .wt-timeline-chip {
  color: #64748b;
  font-size: 11.5px;
}

/* ── Tier Selection Radio Cards (Design / Perf / Content) ── */
.wt-tier-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.wt-tier-card-btn {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.wt-tier-card-btn:hover {
  background: #ffffff;
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.wt-tier-card-btn.selected {
  background: #fffaf5;
  border-color: var(--wt-primary-color, #ff6b00);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.1);
}

.wt-tier-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--wt-heading-color, #0d1b2a);
  margin-bottom: 4px;
}

.wt-tier-desc {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* ── Features Multi-Select Grid ─────────────────────────── */
.wt-features-selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.wt-feature-checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.wt-feature-checkbox-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.wt-feature-checkbox-card.selected {
  background: #fffaf5;
  border-color: var(--wt-primary-color, #ff6b00);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.08);
}

.wt-feature-check {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--wt-primary-color, #ff6b00);
  cursor: pointer;
}

.wt-feature-info {
  flex: 1;
}

.wt-feature-info strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wt-heading-color, #0d1b2a);
  display: block;
  margin-bottom: 2px;
}

.wt-feature-info p {
  font-size: 11.5px;
  color: #64748b;
  margin: 0 0 6px 0;
  line-height: 1.35;
}

.wt-feature-cost-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--wt-primary-color, #ff6b00);
  background: rgba(255, 107, 0, 0.1);
  padding: 3px 8px;
  border-radius: 5px;
}

/* ── Sticky Results Column ───────────────────────────────── */
.wt-calc-result-sticky-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(145deg, var(--wt-secondary-color, #0b1120) 0%, #172033 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 45px -10px rgba(11, 17, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-sizing: border-box;
}

.wt-result-card-header {
  margin-bottom: 18px;
}

.wt-result-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.25) 0%, rgba(255, 107, 0, 0.1) 100%);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: #ff8c38;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.wt-result-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.wt-result-cost-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  margin-bottom: 18px;
}

.wt-cost-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}

.wt-cost-display .wt-cost-range {
  font-family: var(--wt-heading-font-family, inherit);
  font-size: 28px;
  font-weight: 800;
  color: #ff8c38;
  display: block;
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(255, 140, 56, 0.25);
}

.wt-cost-note {
  font-size: 11px;
  color: #cbd5e1;
  display: block;
  margin-top: 6px;
}

.wt-result-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.wt-result-metric-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-result-metric-item i {
  font-size: 18px;
  color: #00b4d8;
}

.wt-metric-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
}

.wt-metric-val {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.wt-result-tech-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-tech-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
  margin-bottom: 4px;
}

.wt-tech-tags {
  font-size: 12px;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.4;
}

/* Breakdown Progress Bar */
.wt-result-breakdown-box {
  margin-bottom: 20px;
}

.wt-breakdown-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  display: block;
  margin-bottom: 6px;
}

.wt-breakdown-bar {
  display: flex;
  height: 9px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.wt-bar-seg.wt-seg-dev { background: #3b82f6; }
.wt-bar-seg.wt-seg-design { background: #8b5cf6; }
.wt-bar-seg.wt-seg-feats { background: #ff6b00; }
.wt-bar-seg.wt-seg-perf { background: #10b981; }

.wt-breakdown-legend {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #94a3b8;
}

.wt-legend-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 3px;
}

.wt-legend-dot.dev { background: #3b82f6; }
.wt-legend-dot.design { background: #8b5cf6; }
.wt-legend-dot.feats { background: #ff6b00; }
.wt-legend-dot.perf { background: #10b981; }

/* Actions */
.wt-result-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wt-calc-cta-btn {
  font-size: 14px;
  font-weight: 700;
  padding: 13px 18px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--wt-primary-color, #ff6b00) 0%, #e05d00 100%);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
  transition: all 0.2s ease;
  text-decoration: none;
}

.wt-calc-cta-btn:hover {
  background: linear-gradient(135deg, #e05d00 0%, #c44f00 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
  color: #ffffff;
}

.wt-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wt-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wt-action-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.wt-result-trust-badges {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: #94a3b8;
}

/* ── Responsive Rules ───────────────────────────────────── */
@media (max-width: 991px) {
  .wt-calc-layout-grid {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 24px;
  }

  .wt-calc-result-sticky-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 768px) {
  .wt-calc-topbar {
    padding: 16px 20px;
  }

  .wt-calc-step-card {
    padding: 20px 16px;
  }

  .wt-type-selection-grid,
  .wt-tier-selection-grid,
  .wt-features-selection-grid {
    grid-template-columns: 1fr;
  }

  .wt-result-metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wt-calc-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .wt-currency-pills {
    width: 100%;
  }

  .wt-currency-pill {
    flex: 1;
    text-align: center;
    padding: 6px 8px;
    font-size: 11.5px;
  }

  .wt-cost-display .wt-cost-range {
    font-size: 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   🔒 LOCK & MAINTENANCE MODE — Premium Glassmorphic Design
   Colours are driven by inline CSS vars set from PHP config.
   ═══════════════════════════════════════════════════════════════ */

/* Container becomes relative so overlay can be absolutely positioned */
.wt-calc-container.wt-calc-locked {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: inherit;
}

/* Dim + blur everything inside EXCEPT the overlay and admin banner */
.wt-calc-container.wt-calc-locked > *:not(.wt-calc-lock-overlay):not(.wt-calc-admin-preview-banner) {
  opacity: 0.18;
  filter: blur(4px) grayscale(30%);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

/* ── Overlay Backdrop ─────────────────────────────────────────── */
.wt-calc-lock-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* background is set inline from PHP; CSS var is a fallback */
  background: var(--wtl-overlay-bg, rgba(10, 15, 30, 0.55));
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  /* Soft inner vignette to frame the card */
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.35);
}

/* ── Notice Card ─────────────────────────────────────────────── */
.wt-calc-lock-card {
  /* background, box-shadow, border-color set inline from PHP */
  background: var(--wtl-card-bg, #161e31);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 46px 40px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: wtLockCardIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  /* Subtle inner glass shimmer */
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.00) 60%,
    rgba(255, 255, 255, 0.02) 100%
  );
  background-repeat: no-repeat;
}

/* Decorative top glow line */
.wt-calc-lock-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wtl-accent, #ff6b00), transparent);
  opacity: 0.6;
}

/* Decorative large radial glow behind card */
.wt-calc-lock-card::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse at center, rgba(var(--wtl-accent-rgb, 255,107,0), 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure card content sits above ::after */
.wt-calc-lock-card > * {
  position: relative;
  z-index: 1;
}

/* Card entrance animation */
@keyframes wtLockCardIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ── Status Badge ─────────────────────────────────────────────── */
.wt-calc-lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  /* colors set inline from PHP */
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.32);
  color: #ff8c38;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ── Pulse Dot ────────────────────────────────────────────────── */
.wt-lock-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wtl-accent, #ff6b00);
  flex-shrink: 0;
  animation: wtLockPulse 2s infinite;
}

@keyframes wtLockPulse {
  0%   { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(var(--wtl-accent-rgb, 255,107,0), 0.7); }
  70%  { transform: scale(1.05); box-shadow: 0 0 0 9px rgba(var(--wtl-accent-rgb, 255,107,0), 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(var(--wtl-accent-rgb, 255,107,0), 0); }
}

/* ── Card Typography ─────────────────────────────────────────── */
.wt-calc-lock-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.wt-calc-lock-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0 0 22px 0;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ETA Pill ────────────────────────────────────────────────── */
.wt-calc-lock-eta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 10px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.wt-calc-lock-eta i {
  color: #94a3b8;
  font-size: 14px;
}

/* Thin divider above buttons */
.wt-calc-lock-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Primary CTA Button ──────────────────────────────────────── */
.wt-calc-lock-btn {
  font-size: 15.5px;
  font-weight: 700;
  padding: 16px 26px;
  border-radius: 12px;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* gradient and shadow set inline from PHP */
  background: linear-gradient(135deg, var(--wtl-accent, #ff6b00) 0%, rgba(var(--wtl-accent-rgb, 255,107,0),0.8) 100%);
  color: #ffffff !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.1px;
}

.wt-calc-lock-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
  color: #ffffff !important;
}

.wt-calc-lock-btn:active {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

/* ── Secondary/Ghost Button ──────────────────────────────────── */
.wt-calc-lock-sec-btn {
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #94a3b8 !important;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wt-calc-lock-sec-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
  color: #e2e8f0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   🛡️ Admin Preview Mode Indicator Bar
   ═══════════════════════════════════════════════════════════════ */
.wt-calc-admin-preview-banner {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
  border-left: 4px solid #f59e0b;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 12px;
  margin: 16px 24px 0 24px;
}

.wt-admin-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #fbbf24;
}

.wt-admin-banner-inner span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wt-admin-banner-inner i {
  color: #f59e0b;
  font-size: 15px;
}

.wt-admin-banner-link {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a !important;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.wt-admin-banner-link:hover {
  background: rgba(245, 158, 11, 0.35);
  color: #ffffff !important;
}

/* ═══════════════════════════════════════════════════════════════
   📱 Responsive — Mobile
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wt-calc-lock-card {
    padding: 32px 22px 28px;
    border-radius: 18px;
  }

  .wt-calc-lock-title {
    font-size: 21px;
  }

  .wt-calc-lock-desc {
    font-size: 13.5px;
  }

  .wt-calc-lock-btn {
    font-size: 14px;
    padding: 14px 20px;
  }

  .wt-calc-admin-preview-banner {
    margin: 12px 16px 0 16px;
    padding: 10px 14px;
  }
}

