/* AccessLine.shop - Signature Holographic Cyber-Luxe Design System (Exclusive) */

/* ==========================================================================
   1. HOLOGRAPHIC VIP WALLET CARD (PERSONAL DASHBOARD)
   ========================================================================== */
.holo-wallet-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 240px;
  border-radius: 22px;
  padding: 1.75rem;
  background: linear-gradient(135deg, #181c2b 0%, #0a0d17 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px rgba(99, 102, 241, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.holo-wallet-card:hover {
  transform: translateY(-6px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(99, 102, 241, 0.4);
}

/* Prismatic Rainbow Shimmer Layer */
.holo-wallet-card::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 0, 128, 0.2) 30%,
    rgba(0, 255, 255, 0.3) 45%,
    rgba(255, 255, 0, 0.2) 60%,
    transparent 80%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: holoSheen 6s infinite linear;
}

@keyframes holoSheen {
  0% { transform: translateX(-150%) rotate(25deg); }
  100% { transform: translateX(150%) rotate(25deg); }
}

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

.wallet-chip {
  width: 42px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  position: relative;
}

.wallet-chip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
}

.wallet-vip-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.wallet-card-balance {
  position: relative;
  z-index: 2;
}

.wallet-bal-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.wallet-bal-val {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.wallet-holder-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   2. INTERACTIVE BUNDLE & COMBO BUILDER
   ========================================================================== */
.bundle-builder-section {
  padding: 3.5rem 0;
}

.bundle-builder-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(26, 16, 48, 0.85) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.bundle-items-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.bundle-select-item {
  padding: 1rem 1.25rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: all var(--transition-fast);
}

.bundle-select-item:hover {
  border-color: var(--accent-primary);
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.bundle-select-item.selected {
  border-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

.bundle-checkbox {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 6px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: transparent;
  transition: all var(--transition-fast);
}

.bundle-select-item.selected .bundle-checkbox {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
  color: #ffffff;
}

.bundle-calc-bar {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bundle-discount-badge {
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* ==========================================================================
   3. COPYABLE KEY TICKET BOX
   ========================================================================== */
.key-ticket-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(99, 102, 241, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.key-code-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  color: var(--accent-neon);
  font-weight: 700;
  word-break: break-all;
}

.key-copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.key-copy-btn:hover {
  background: var(--accent-primary);
  color: #ffffff;
}

/* ==========================================================================
   4. PAYMENT REQUISITES MODAL CARDS
   ========================================================================== */
.requisite-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.req-copy-pill {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--accent-primary);
  color: #818cf8;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.req-copy-pill:hover {
  background: var(--accent-primary);
  color: #ffffff;
}
