/* ==========================================================================
   KISSSAFE CLUB — ULTRA-LUXURY CYBER DARK THEME
   Billionaire-tier Aesthetic: Obsidian, Neon Magenta, Rose Gold, Glassmorphism
   ========================================================================== */

:root {
  --bg-dark: #070509;
  --bg-card: rgba(22, 17, 28, 0.75);
  --bg-card-hover: rgba(33, 24, 44, 0.85);
  --bg-surface: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.09);
  --border-glass-glow: rgba(255, 42, 133, 0.3);

  --accent-magenta: #ff2a85;
  --accent-violet: #a855f7;
  --accent-cyan: #00f2fe;
  --accent-gold: #fbbf24;
  --accent-rose-gold: #f43f5e;

  --gradient-neon: linear-gradient(135deg, #ff2a85 0%, #a855f7 50%, #00f2fe 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --gradient-card: linear-gradient(145deg, rgba(28, 20, 36, 0.8) 0%, rgba(14, 10, 18, 0.9) 100%);
  --gradient-button: linear-gradient(135deg, #ff2a85 0%, #a855f7 100%);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;

  --shadow-neon: 0 0 25px rgba(255, 42, 133, 0.35);
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.6);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body.luxury-theme {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 95px;
}

/* ---------------- Ambient Background Glows (Static & Lightweight) ---------------- */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  transform: translateZ(0);
}

.glow-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #ff2a85, transparent 70%);
  top: -40px;
  right: -40px;
}

.glow-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #8b5cf6, transparent 70%);
  top: 40%;
  left: -60px;
}

.glow-3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #00f2fe, transparent 70%);
  bottom: 80px;
  right: -30px;
}

/* ---------------- Header ---------------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(7, 5, 9, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
  width: 100%;
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-mark {
  font-size: 18px;
  filter: drop-shadow(0 0 8px var(--accent-magenta));
}

.brand-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 0%, #ff80bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.header-admin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22) 0%, rgba(255, 42, 133, 0.22) 100%);
  border: 1px solid rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.25);
  padding: 4px 7px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
  transition: all 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.header-admin-pill:active {
  transform: scale(0.92);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.35) 0%, rgba(255, 42, 133, 0.35) 100%);
}

.admin-pill-badge {
  background: #ff2a85;
  color: #fff;
  font-weight: 800;
  font-size: 9.5px;
  padding: 1px 4px;
  border-radius: 7px;
  line-height: 1;
}

.lang-switch-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 42, 133, 0.35);
  padding: 4px 7px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  transition: all 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.lang-switch-pill:active {
  transform: scale(0.92);
  background: rgba(255, 42, 133, 0.25);
  border-color: var(--accent-magenta);
}

.header-balance {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.4);
  padding: 4px 7px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.header-balance:active {
  transform: scale(0.95);
  background: rgba(251, 191, 36, 0.18);
}

.star-icon {
  font-size: 13px;
  line-height: 1;
}

.balance-num {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ---------------- Content & Views ---------------- */
.app-content {
  position: relative;
  z-index: 10;
  padding: 16px 18px;
}

.tab-view {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.tab-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------- Common Typography & Gradients ---------------- */
.neon-gradient-text {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header-box {
  margin-bottom: 20px;
}

.section-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-magenta);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.admin-badge {
  color: var(--accent-cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 12px;
}

.section-heading h2 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.btn:active {
  transform: scale(0.96);
}

.btn-luxury-primary {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 42, 133, 0.4);
}

.btn-luxury-primary:hover {
  box-shadow: 0 6px 25px rgba(255, 42, 133, 0.6);
}

.btn-luxury-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-glass);
}

.btn-luxury-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
}

.btn-outline-danger {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline-danger:active {
  background: rgba(239, 68, 68, 0.25);
  transform: scale(0.95);
}

.btn-sm {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 10px;
}

.btn-lg {
  font-size: 15px;
  padding: 15px 24px;
}

.btn-block {
  width: 100%;
}

/* ---------------- Hero Section ---------------- */
.hero-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: 16px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 5, 9, 0.95) 100%);
}

.hero-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 42, 133, 0.4);
  backdrop-filter: blur(8px);
  color: #ff80bf;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 20px;
}

.hero-info {
  padding: 18px 20px 22px;
  position: relative;
  margin-top: -30px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ---------------- Feature Strip ---------------- */
.feature-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  margin-bottom: 10px;
}
.feature-strip::-webkit-scrollbar { display: none; }

.feature-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------------- Quick Grid ---------------- */
.quick-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-card:active {
  transform: scale(0.98);
  border-color: var(--accent-magenta);
}

.qc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.magenta-glow {
  background: rgba(255, 42, 133, 0.15);
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.25);
}

.cyan-glow {
  background: rgba(0, 242, 254, 0.15);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.violet-glow {
  background: rgba(168, 85, 247, 0.15);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

.qc-content {
  flex: 1;
}

.qc-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.qc-content p {
  font-size: 12px;
  color: var(--text-muted);
}

.qc-arrow {
  color: var(--text-muted);
  font-size: 18px;
}

/* ---------------- Sensation Mood Matcher ---------------- */
.interactive-sensation-card {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 42, 133, 0.25);
  box-shadow: 0 8px 32px rgba(255, 42, 133, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin: 18px 0;
}

.isc-header {
  margin-bottom: 14px;
}

.isc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-magenta);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.isc-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.isc-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.mood-chips-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.mood-chips-container::-webkit-scrollbar { display: none; }

.mood-chip {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mood-chip.active {
  background: linear-gradient(135deg, rgba(255, 42, 133, 0.3), rgba(168, 85, 247, 0.3));
  border-color: var(--accent-magenta);
  color: #fff;
  box-shadow: 0 0 14px rgba(255, 42, 133, 0.4);
}

.mood-recommendation-box {
  display: flex;
  gap: 14px;
  background: rgba(14, 10, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mood-recommendation-box:hover, .mood-recommendation-box:active {
  transform: translateY(-2px);
  border-color: rgba(255, 42, 133, 0.4);
  box-shadow: 0 8px 24px rgba(255, 42, 133, 0.2);
}

.glow-pulse {
  animation: pulseGlow 0.45s ease-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.98); box-shadow: 0 0 0 rgba(255, 42, 133, 0.7); }
  50% { transform: scale(1.02); box-shadow: 0 0 25px rgba(255, 42, 133, 0.6); }
  100% { transform: scale(1); box-shadow: none; }
}

.mrb-img-wrap {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
  border: 1px solid var(--border-glass);
}

.mrb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mrb-content {
  flex: 1;
}

.mrb-tag {
  font-size: 10px;
  color: var(--accent-gold);
  font-weight: 600;
}

.mrb-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 2px 0 3px;
  color: #fff;
}

.mrb-content p {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mrb-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mrb-cashback {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-magenta);
}

.mrb-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-cyan);
}

/* ---------------- Cashback Calculator ---------------- */
.cashback-calc-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 242, 254, 0.25);
  box-shadow: 0 8px 32px rgba(0, 242, 254, 0.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin: 18px 0;
}

.ccc-header {
  margin-bottom: 14px;
}

.ccc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ccc-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ccc-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.ccc-slider-wrap {
  margin-bottom: 16px;
}

.ccc-val-display {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ccc-val-display span {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent-gold);
  margin-right: 2px;
}

.luxury-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.luxury-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-button);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 42, 133, 0.8);
  border: 2px solid #fff;
}

.ccc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.ccc-res-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ccc-res-box.highlight-box {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.35);
}

.ccc-res-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.ccc-res-box.highlight-box .ccc-res-num {
  color: var(--accent-gold);
}

.ccc-res-lbl {
  font-size: 10px;
  color: var(--text-muted);
}

/* ---------------- Featured Product ---------------- */
.featured-product-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
}

.featured-product-card:active {
  transform: scale(0.98);
}

.fp-image-box {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.fp-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 42, 133, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(255, 42, 133, 0.4);
}

.fp-details {
  padding: 16px 18px;
}

.fp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.fp-title-row h3 {
  font-size: 17px;
  font-weight: 700;
}

.fp-star-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.15);
  padding: 3px 8px;
  border-radius: 12px;
}

.fp-details p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.fp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fp-price {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---------------- Filter Pills ---------------- */
.filter-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill.active {
  background: var(--gradient-button);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 14px rgba(255, 42, 133, 0.4);
}

/* ---------------- Products Grid ---------------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.25s ease;
}

.product-item-card:active {
  transform: scale(0.98);
  border-color: var(--border-glass-glow);
}

.pic-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  background: #000;
}

.pic-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pic-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--accent-gold);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.pic-cashback {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 42, 133, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 12px;
}

.pic-content {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pic-title {
  font-size: 17px;
  font-weight: 700;
}

.pic-subtitle {
  font-size: 12px;
  color: var(--accent-magenta);
  font-weight: 600;
}

.pic-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pic-specs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.spec-chip {
  font-size: 10.5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 8px;
  color: var(--text-secondary);
}

.pic-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------------- Upload View ---------------- */
.upload-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
}

.toggle-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.toggle-option.active {
  background: var(--gradient-button);
  color: #fff;
  box-shadow: 0 2px 14px rgba(255, 42, 133, 0.4);
}

.dropzone-box {
  background: var(--bg-card);
  border: 2px dashed rgba(255, 42, 133, 0.4);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.dropzone-box:active {
  background: rgba(255, 42, 133, 0.08);
  border-color: var(--accent-magenta);
}

.dropzone-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.dropzone-icon-glow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 42, 133, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 6px;
  box-shadow: 0 0 20px rgba(255, 42, 133, 0.3);
}

.dropzone-empty h4 {
  font-size: 15px;
  font-weight: 600;
}

.dropzone-empty p {
  font-size: 12px;
  color: var(--text-muted);
}

.dropzone-preview {
  position: relative;
  width: 100%;
  max-height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dropzone-preview img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.btn-remove-preview {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.upload-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus {
  border-color: var(--accent-magenta);
  box-shadow: 0 0 12px rgba(255, 42, 133, 0.3);
}

.upload-rules-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 12px;
  color: var(--text-secondary);
}

.upload-rules-card h4 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 13px;
}

.upload-rules-card ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ---------------- Rewards View ---------------- */
.rewards-user-banner {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rub-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rub-value {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rub-value small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

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

.reward-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.reward-card:active {
  transform: scale(0.98);
}

.rc-image-wrap {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

.rc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-info {
  flex: 1;
}

.rc-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.rc-info p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.rc-cost-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-gold);
}

/* ---------------- Profile & VIP Card ---------------- */
.vip-member-card {
  background: linear-gradient(135deg, #1f132b 0%, #0d0a13 50%, #29122c 100%);
  border: 1px solid rgba(255, 42, 133, 0.4);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 42, 133, 0.2);
  margin-bottom: 22px;
}

.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.vip-chip {
  width: 36px;
  height: 26px;
  background: linear-gradient(135deg, #fcd34d 0%, #b45309 100%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 4px;
}

.chip-line {
  height: 2px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
}

.vip-status-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
}

.vip-card-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.vip-user-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.vip-user-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.vip-balance-box {
  text-align: right;
}

.vbb-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.vbb-amount {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.vbb-star {
  font-size: 18px;
}

.vbb-num {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
}

.vip-card-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vip-progress-label {
  font-size: 11px;
  color: var(--text-secondary);
}

.vip-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.vip-progress-fill {
  height: 100%;
  background: var(--gradient-neon);
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* ---------------- History Section ---------------- */
.history-tab-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.h-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.h-tab-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.history-view {
  display: none;
}

.history-view.active {
  display: block;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.history-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hi-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.hi-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hi-text span {
  font-size: 11px;
  color: var(--text-muted);
}

.hi-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.status-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
}

.status-badge.pending {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
}

.status-badge.approved {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.status-badge.rejected {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.empty-state {
  text-align: center;
  padding: 30px 10px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------------- Admin Panel ---------------- */
.admin-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.as-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}

.as-card.yellow-border {
  border-color: rgba(234, 179, 8, 0.4);
}

.as-card.green-border {
  border-color: rgba(34, 197, 94, 0.4);
}

.as-num {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 2px;
}

.yellow-text { color: #facc15; }
.green-text { color: #4ade80; }

.as-label {
  font-size: 11px;
  color: var(--text-muted);
}

.admin-receipts-queue {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-receipt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arc-id {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-magenta);
}

.arc-date {
  font-size: 11px;
  color: var(--text-muted);
}

.arc-body {
  display: flex;
  gap: 14px;
}

.arc-img-wrap {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.arc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arc-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
}

.arc-meta strong {
  color: #fff;
}

.arc-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.5fr;
  gap: 6px;
  margin-top: 4px;
}

.btn-adm-appr {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-adm-rej {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 8px;
  cursor: pointer;
}

/* ---------------- Bottom Navigation ---------------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(10, 7, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 0 4px;
  max-width: 100vw;
  width: 100%;
}

.nav-item {
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: all 0.15s ease;
  user-select: none;
  padding: 4px 2px;
}

.nav-item.active {
  color: #fff;
}

.nav-item.active .nav-icon {
  filter: drop-shadow(0 0 10px var(--accent-magenta));
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 18px;
  transition: transform 0.15s ease;
}

.nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-action-center {
  position: relative;
  top: -10px;
}

.action-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-button);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(255, 42, 133, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease;
}

.action-btn-circle:active {
  transform: scale(0.92);
}

.action-btn-circle .nav-icon {
  font-size: 20px;
}

/* ---------------- Elite VIP Boss Admin Card in Profile ---------------- */
.admin-boss-card {
  background: linear-gradient(145deg, rgba(28, 20, 36, 0.95) 0%, rgba(18, 12, 24, 0.98) 100%);
  border: 1px solid rgba(251, 191, 36, 0.5);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.15), inset 0 0 15px rgba(251, 191, 36, 0.05);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.admin-boss-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.admin-boss-card:active {
  transform: scale(0.98);
}

.abc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.abc-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abc-crown {
  font-size: 24px;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
}

.abc-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2px;
}

.abc-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
}

.abc-pending-pill {
  background: #ff2a85;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.5);
}

.abc-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.abc-stat-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.abc-stat-chip.highlight {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.08);
}

.abc-stat-chip .stat-lbl {
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.abc-stat-chip strong {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.abc-btn {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
}

.admin-top-bar {
  margin-bottom: 10px;
}

.btn-back-profile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-back-profile:active {
  background: rgba(255, 255, 255, 0.15);
}

/* ---------------- Modals ---------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.25s ease-out;
}

.modal-backdrop.active {
  display: flex;
}

.modal-sheet {
  background: var(--gradient-card);
  border: 1px solid var(--border-glass);
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 24px 20px 30px;
  position: relative;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.modal-product-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}

.modal-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.product-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.stars-cashback-badge {
  font-size: 10px;
  font-weight: 700;
  background: rgba(251, 191, 36, 0.2);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 12px;
}

.modal-product-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
}

.modal-product-subtitle {
  font-size: 13px;
  color: var(--accent-magenta);
  font-weight: 600;
  margin-bottom: 10px;
}

.modal-product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 16px;
}

.specs-title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modal-specs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.modal-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.modal-spec-val {
  color: #fff;
  font-weight: 600;
}

/* ---------------- Celebration Modal ---------------- */
.reward-modal-celebration {
  text-align: center;
  padding: 10px 0;
}

.congrats-emoji {
  font-size: 50px;
  margin-bottom: 10px;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

.rm-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.rm-subtitle {
  font-size: 14px;
  color: var(--accent-magenta);
  margin-bottom: 20px;
}

.promo-code-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.pc-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.pc-code {
  font-family: monospace;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.rm-instructions {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 20px;
}

/* ---------------- Toast Notifications ---------------- */
.toast-container {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90%;
  max-width: 380px;
  pointer-events: none;
}

.toast {
  background: rgba(18, 14, 24, 0.95);
  border: 1px solid var(--border-glass-glow);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  animation: toastIn 0.3s ease-out;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------------- Admin Dashboard Styling ---------------- */
.admin-badge {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
  color: #fca5a5 !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.as-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.as-card.yellow-border {
  border-color: rgba(245, 158, 11, 0.4);
}

.as-card.green-border {
  border-color: rgba(16, 185, 129, 0.4);
}

.as-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.as-num.yellow-text {
  color: #fbbf24;
}

.as-num.green-text {
  color: #34d399;
}

.as-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-receipts-queue {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}

.admin-receipt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.arc-id {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-magenta);
}

.arc-date {
  font-size: 11px;
  color: var(--text-muted);
}

.arc-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.arc-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  flex-shrink: 0;
  cursor: pointer;
  background: #000;
}

.arc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.arc-img-wrap:hover img {
  transform: scale(1.08);
}

.arc-meta {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
  word-break: break-word;
}

.arc-meta strong {
  color: #fff;
}

.arc-meta code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 5px;
  border-radius: 4px;
  color: var(--accent-gold);
}

.arc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-adm-appr {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-adm-appr:hover, .btn-adm-appr:active {
  background: rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}

.btn-adm-custom {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-adm-custom:hover, .btn-adm-custom:active {
  background: rgba(168, 85, 247, 0.3);
  transform: translateY(-1px);
}

.btn-adm-rej {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-adm-rej:hover, .btn-adm-rej:active {
  background: rgba(239, 68, 68, 0.25);
  transform: translateY(-1px);
}

