/* =========================================================
   bankcards.shop - Ultra-Modern Cyber-Fintech Design System
   ========================================================= */

:root {
  --bg-primary: #07080b;
  --bg-secondary: #0c0e14;
  --bg-tertiary: #131722;
  --bg-card: rgba(18, 22, 34, 0.7);
  --bg-glass: rgba(18, 22, 36, 0.85);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 240, 255, 0.3);
  --border-active: #00f0ff;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-cyan: #00f0ff;
  --accent-cyan-glow: rgba(0, 240, 255, 0.35);
  --accent-purple: #9d4edd;
  --accent-purple-glow: rgba(157, 78, 221, 0.4);
  --accent-green: #00ff88;
  --accent-green-glow: rgba(0, 255, 136, 0.3);
  --accent-gold: #ffd700;
  --accent-danger: #ff3366;

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px -5px rgba(0, 240, 255, 0.25);
}

/* Reset & Baseline */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Ambient Backdrops & Cyber Grid */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  top: -150px;
  left: -100px;
}

.glow-2 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  top: 30%;
  right: -200px;
}

.cyber-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 11, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.2));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.brand-icon.small {
  width: 32px;
  height: 32px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.dot-accent {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan);
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-buttons, .user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
}

.user-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

.badge-count {
  background: var(--accent-cyan);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 12px;
  margin-left: 4px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-large {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #00f0ff 0%, #00b4d8 100%);
  color: #050811;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.btn-admin {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(255, 0, 128, 0.2));
  border-color: rgba(157, 78, 221, 0.4);
  color: #e0aaff;
}

.btn-admin:hover {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.35), rgba(255, 0, 128, 0.35));
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
  transform: translateY(-1px);
}

.btn-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: rgba(255, 51, 102, 0.15);
  color: var(--accent-danger);
  border-color: var(--accent-danger);
}

.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.25);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.25); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 20%, #9d4edd 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.hl-check {
  color: var(--accent-cyan);
  font-weight: 800;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 3D Interactive Card Showcase */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.card-tilt-container {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1.586 / 1;
  position: relative;
  cursor: pointer;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.f-card {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  position: relative;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #030712 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(0, 240, 255, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  user-select: none;
  transition: box-shadow 0.3s;
}

.card-tilt-container:hover .f-card {
  box-shadow: 
    0 35px 65px -15px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(0, 240, 255, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.f-card-glass {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.f-card-hologram {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(0, 240, 255, 0.1) 48%, rgba(255, 0, 255, 0.1) 52%, transparent 60%);
  transform: rotate(35deg);
  pointer-events: none;
  transition: transform 0.5s;
}

.card-tilt-container:hover .f-card-hologram {
  transform: rotate(35deg) translateY(-20px);
}

.f-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.f-card-brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
}

.brand-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.f-card-contactless {
  color: rgba(255, 255, 255, 0.7);
}

/* Realistic EMV Metallic Chip */
.f-card-chip {
  width: 52px;
  height: 40px;
  background: linear-gradient(135deg, #d4af37 0%, #fff2b2 45%, #b38728 75%, #fbf5b7 100%);
  border-radius: 8px;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 2px 5px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(138, 107, 34, 0.8);
  margin-top: 6px;
  z-index: 2;
}

.chip-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background-image: 
    radial-gradient(ellipse at center, transparent 40%, rgba(120, 80, 20, 0.35) 45%, transparent 50%),
    linear-gradient(to right, transparent 48%, rgba(120, 80, 20, 0.35) 49%, rgba(120, 80, 20, 0.35) 51%, transparent 52%),
    linear-gradient(to bottom, transparent 48%, rgba(120, 80, 20, 0.35) 49%, rgba(120, 80, 20, 0.35) 51%, transparent 52%);
}

.f-card-number-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.f-card-number {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  letter-spacing: 2.5px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.f-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}

.f-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.f-card-info-col {
  display: flex;
  flex-direction: column;
}

.f-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

.f-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f1f5f9;
}

.f-card-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-hover-prompt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0, 240, 255, 0.9);
  color: #050811;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  z-index: 5;
}

.card-tilt-container:hover .card-hover-prompt {
  transform: translateY(0);
}

.hero-visual-caption {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.caption-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

/* Sections Common */
.packages-section, .features-section, .compliance-section {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* Packages Grid & Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.package-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px -15px rgba(0, 240, 255, 0.2);
}

.package-card.featured {
  border-color: rgba(0, 240, 255, 0.4);
  background: linear-gradient(180deg, rgba(18, 22, 36, 0.9) 0%, rgba(13, 17, 28, 0.8) 100%);
  box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.25);
}

.package-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  text-transform: uppercase;
}

.package-card .package-badge {
  position: absolute;
  top: 16px;
  right: 18px;
}

.package-badge.popular {
  background: linear-gradient(135deg, #00f0ff, #0077b6);
  color: #050811;
}

.package-badge.value {
  background: linear-gradient(135deg, #9d4edd, #5a189a);
  color: #ffffff;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 48px;
}

.package-pricing {
  margin-bottom: 24px;
}

.price-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 4px;
}

.card-count-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-top: 6px;
}

.package-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.package-features li svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.custom-guarantee-box {
  background: rgba(0, 240, 255, 0.04);
  border: 1px dashed rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.feature-icon.glow-cyan { color: var(--accent-cyan); background: rgba(0, 240, 255, 0.1); }
.feature-icon.glow-purple { color: var(--accent-purple); background: rgba(157, 78, 221, 0.1); }
.feature-icon.glow-green { color: var(--accent-green); background: rgba(0, 255, 136, 0.1); }
.feature-icon.glow-gold { color: var(--accent-gold); background: rgba(255, 215, 0, 0.1); }

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Compliance Box */
.compliance-box {
  background: linear-gradient(135deg, rgba(19, 23, 34, 0.8) 0%, rgba(12, 14, 20, 0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.compliance-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.compliance-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.separator {
  color: var(--border-subtle);
}

/* ================= MODAL STYLES ================= */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.modal-backdrop.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 50px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalEnter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalEnter {
  from { transform: scale(0.95) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Auth Modal Specific */
.auth-modal-card {
  width: 100%;
  max-width: 440px;
}

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}

.auth-tab {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  z-index: 2;
  transition: color 0.2s ease;
}

.input-wrapper:focus-within .input-icon {
  color: var(--accent-cyan);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
.custom-input,
.custom-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.92rem;
  transition: all 0.2s;
}

select.custom-input,
.custom-input select,
select option {
  color-scheme: dark;
  background-color: #0f172a !important;
  color: #f8fafc !important;
}

select option:hover,
select option:focus,
select option:checked {
  background-color: #1e293b !important;
  color: #00f0ff !important;
}

/* Ensure inputs inside wrapper have adequate left clearance for icons */
.input-wrapper input,
.input-wrapper input[type="text"],
.input-wrapper input[type="email"],
.input-wrapper input[type="password"],
.input-wrapper input[type="tel"],
.input-wrapper input[type="number"],
.input-wrapper .custom-input {
  padding-left: 46px !important;
}

.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-cyan);
  margin-top: 6px;
  opacity: 0.9;
}

input:focus, textarea:focus, .custom-input:focus, .custom-textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Checkout Modal Specific */
.checkout-modal-card {
  width: 100%;
  max-width: 520px;
}

.checkout-summary-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}

.summary-label {
  color: var(--text-secondary);
}

.summary-val {
  font-weight: 600;
  color: var(--text-primary);
}

.highlight-count {
  color: var(--accent-cyan);
}

.highlight-usd {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-green);
}

.payment-method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.pay-method-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-primary);
}

.pay-method-btn.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.method-icon {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.method-title {
  font-size: 0.8rem;
  font-weight: 700;
}

.method-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.method-detail-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 10px;
}

.sandbox-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.method-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.crypto-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crypto-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.crypto-address-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #040508;
  border: 1px solid var(--border-subtle);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.crypto-address-box code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  word-break: break-all;
}

.btn-copy {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.crypto-subnote {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Vault Modal Specific */
.vault-modal-card {
  width: 100%;
  max-width: 960px;
}

.vault-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.vault-header h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.vault-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.vault-actions {
  display: flex;
  gap: 10px;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 6px;
}

/* Vault Mini Card with 3D Flip */
.vault-card-container {
  perspective: 1000px;
  aspect-ratio: 1.586 / 1;
}

.v-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.v-card-inner.flipped {
  transform: rotateY(180deg);
}

.v-card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #131b2e 0%, #0d111c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.v-card-back {
  transform: rotateY(180deg);
  padding: 16px 0;
}

.v-mag-stripe {
  width: 100%;
  height: 32px;
  background: #020408;
  margin-top: 6px;
}

.v-cvc-area {
  padding: 10px 18px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.v-cvc-white-bar {
  background: #ffffff;
  color: #000000;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 2px;
}

.v-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-brand-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.v-flip-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.v-flip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.v-number-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v-card-number {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
}

.v-copy-icon {
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s;
}

.v-copy-icon:hover {
  color: var(--accent-cyan);
}

.v-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 0.75rem;
}

.v-holder {
  font-family: var(--font-mono);
  font-weight: 600;
  color: #cbd5e1;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.v-dates {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.empty-vault-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: var(--text-muted);
}

/* Admin Modal Specific ('hammad') */
.admin-modal-card {
  width: 100%;
  max-width: 1100px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-title-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-shield {
  font-size: 2rem;
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.text-cyan { color: var(--accent-cyan); }
.text-warning { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }

.admin-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.admin-tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-tab-btn.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

.admin-table-wrapper {
  overflow-x: auto;
  max-height: 50vh;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-weight: 600;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.admin-table .package-badge {
  position: static;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.25);
  white-space: nowrap;
}

.status-completed {
  background: rgba(0, 255, 136, 0.15);
  color: var(--accent-green);
}

.status-pending {
  background: rgba(255, 215, 0, 0.15);
  color: var(--accent-gold);
}

.status-cancelled {
  background: rgba(255, 51, 102, 0.15);
  color: var(--accent-danger);
}

.package-edit-modal-card {
  width: 100%;
  max-width: 480px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2000;
  pointer-events: none;
}

.toast {
  background: rgba(18, 22, 34, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text-primary);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  animation: toastIn 0.3s ease;
  max-width: 380px;
}

.toast.success { border-color: rgba(0, 255, 136, 0.4); }
.toast.error { border-color: rgba(255, 51, 102, 0.4); }
.toast.info { border-color: rgba(0, 240, 255, 0.4); }

@keyframes toastIn {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Utility Helpers */
.hidden { display: none !important; }

/* Responsive Media Queries */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .f-card-number {
    font-size: 1.15rem;
    letter-spacing: 1.5px;
  }

  .modal-card {
    padding: 24px 18px;
  }
}

/* ================= BANK SETTLEMENT & RECEIPT ATTACHMENT STYLES ================= */

/* Packages Section Bank Card */
.bank-settlement-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 0 auto 36px;
  max-width: 980px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(6, 182, 212, 0.05);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.bank-settlement-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), inset 0 0 25px rgba(6, 182, 212, 0.08);
}

.bank-card-icon {
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(6, 182, 212, 0.3);
  flex-shrink: 0;
}

.bank-card-content {
  flex: 1;
}

.bank-card-tag {
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  color: var(--accent-cyan);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.bank-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 12px;
}

.bank-card-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bank-card-field .field-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-card-field .field-val {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.copy-pill-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-copy-pill {
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(6, 182, 212, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-copy-pill:hover {
  background: rgba(6, 182, 212, 0.35);
  color: #fff;
  border-color: #38bdf8;
  transform: translateY(-1px);
}

.bank-card-instructions {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Checkout Modal Bank Box */
.checkout-bank-details-box {
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  margin: 12px 0 16px;
}

.checkout-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-bank-row:last-of-type {
  border-bottom: none;
}

.checkout-bank-row .cb-label {
  color: #94a3b8;
  font-size: 0.82rem;
}

.checkout-bank-row .cb-val {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.mono-val {
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.6px;
}

.mono-input {
  font-family: var(--font-mono, monospace) !important;
  letter-spacing: 0.8px;
}

.checkout-bank-instructions {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Receipt Upload Dropzone */
.receipt-dropzone {
  border: 2px dashed rgba(6, 182, 212, 0.35);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background: rgba(6, 182, 212, 0.03);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.receipt-dropzone:hover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.receipt-dropzone.has-file {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.dropzone-text {
  line-height: 1.4;
}

/* Receipt Preview Box */
.receipt-preview-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 10px;
}

.receipt-preview-box img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.receipt-preview-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.receipt-preview-filename {
  font-size: 0.82rem;
  color: #e2e8f0;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-remove-receipt {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-remove-receipt:hover {
  background: rgba(239, 68, 68, 0.15);
}

/* Admin Table Badges */
.admin-txid-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-txid-badge:hover {
  background: rgba(6, 182, 212, 0.28);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
  transform: translateY(-1px);
}

.txid-mono {
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

.copy-pill-icon {
  font-size: 0.8rem;
  opacity: 0.8;
}

.btn-receipt-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-receipt-pill:hover {
  background: rgba(16, 185, 129, 0.35);
  color: #fff;
  border-color: #34d399;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

/* Currency Selector & Admin Rate Inputs */
.currency-select-pill {
  transition: all 0.2s ease;
}

.currency-select-pill:hover {
  filter: brightness(1.2);
}

.currency-rate-input {
  font-family: var(--font-mono, monospace);
  font-weight: 600;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 6px;
  text-align: right;
}

.currency-rate-input:focus {
  border-color: var(--accent-cyan) !important;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.25) !important;
}


