:root {
  --bg: #f4efe6;
  --surface: #fffaf1;
  --surface-strong: #ffffff;
  --ink: #1d1b19;
  --muted: #6a615a;
  --line: #e8dcc9;
  --accent: #0f766e;
  --accent-2: #ea580c;
  --danger: #b91c1c;
  --ok: #166534;
  --shadow: 0 12px 40px rgba(34, 28, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(15, 118, 110, 0.12), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(234, 88, 12, 0.1), transparent 40%),
    var(--bg);
  min-height: 100vh;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.auth-shell,
.app-shell {
  width: min(1240px, 92vw);
  margin: 28px auto 36px;
}

.auth-shell {
  width: min(1040px, 94vw);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 18px;
  align-items: start;
}

.hero-card,
.card,
.stat {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  margin-bottom: 18px;
}

.auth-shell .hero-card {
  margin-bottom: 0;
  min-height: 100%;
  background:
    linear-gradient(165deg, rgba(15, 118, 110, 0.08), rgba(234, 88, 12, 0.08)),
    var(--surface-strong);
}

.hero-card h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  margin-top: 6px;
}

.hero-copy {
  margin-top: 10px;
  color: var(--muted);
  max-width: 36ch;
}

.auth-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-points span {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
}

.auth-grid,
.grid {
  display: grid;
  gap: 16px;
}

.auth-grid {
  grid-template-columns: 1fr;
  align-content: start;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 16px;
}

.card {
  padding: 20px;
}

.auth-shell .card {
  border-radius: 18px;
  padding: 22px;
}

.is-hidden {
  display: none;
}

.card h2 {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin: 8px 0 4px;
}

input,
textarea,
button,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
}

input,
textarea,
select {
  padding: 10px 12px;
  background: var(--surface);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(15, 118, 110, 0.28);
  border-color: rgba(15, 118, 110, 0.55);
}

button {
  margin-top: 10px;
  padding: 11px 14px;
  border: none;
  font-weight: 700;
  color: white;
  background: linear-gradient(125deg, var(--accent), #0d9488);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 118, 110, 0.28);
}

button.ghost {
  width: auto;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

button.warn {
  background: linear-gradient(125deg, #c2410c, var(--accent-2));
}

button.danger {
  background: linear-gradient(125deg, #dc2626, var(--danger));
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

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

.stat {
  padding: 14px 16px;
}

.stat p {
  color: var(--muted);
  font-size: 0.84rem;
}

.stat h3 {
  margin-top: 6px;
  font-size: 1.18rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list li {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 10px;
}

.row-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.auth-shell .row-actions {
  margin-top: 12px;
}

.auth-shell .row-actions .ghost {
  flex: 1 1 0;
  min-width: 120px;
}

.row-actions button {
  margin: 0;
}

.topbar .row-actions {
  justify-content: flex-end;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  text-align: left;
  padding: 10px;
  font-size: 0.92rem;
}

.status {
  margin-top: 12px;
  font-weight: 700;
  color: var(--ok);
}

.status.error {
  color: var(--danger);
}

.preview {
  margin-top: 8px;
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.clickable-preview {
  cursor: zoom-in;
}

.upi-box {
  margin-top: 12px;
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: 10px;
  padding: 10px;
}

/* Auth page visual theme inspired by mining/bitcoin artwork */
.auth-page {
  color: #f6f8ff;
  background:
    radial-gradient(circle at 78% 22%, rgba(251, 177, 40, 0.55), rgba(251, 177, 40, 0.1) 22%, transparent 40%),
    radial-gradient(circle at 16% 80%, rgba(255, 132, 0, 0.26), transparent 34%),
    linear-gradient(120deg, rgba(8, 20, 44, 0.97), rgba(6, 12, 30, 0.96) 36%, rgba(39, 21, 6, 0.94) 100%);
  position: relative;
  overflow-x: hidden;
}

.auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      112deg,
      rgba(255, 176, 51, 0.08) 0 2px,
      transparent 2px 24px
    ),
    radial-gradient(circle at 28% 64%, rgba(38, 181, 204, 0.14), transparent 28%);
  opacity: 0.45;
}

.auth-page .auth-shell {
  width: min(1200px, 94vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 26px auto 36px;
  position: relative;
  z-index: 1;
}

.auth-page .auth-shell::after {
  content: "B";
  position: fixed;
  right: clamp(12px, 7vw, 120px);
  top: clamp(80px, 17vh, 180px);
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(6rem, 11vw, 12rem);
  font-weight: 800;
  color: rgba(255, 214, 123, 0.95);
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 247, 196, 0.92), rgba(255, 188, 66, 0.98) 44%, rgba(122, 67, 4, 0.98) 88%);
  border: 4px solid rgba(255, 222, 149, 0.68);
  box-shadow:
    0 0 0 14px rgba(255, 170, 45, 0.2),
    0 0 0 30px rgba(255, 170, 45, 0.09),
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(252, 169, 49, 0.48);
  text-shadow: 0 5px 14px rgba(78, 34, 0, 0.35);
  opacity: 0.88;
  pointer-events: none;
  z-index: 0;
}

.auth-page .hero-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 6px 4px 0;
  margin: 0;
}

.auth-page .brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.auth-page .brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #051328;
  background: linear-gradient(145deg, #8ef7ff, #38e0cc 54%, #c9fb65);
  box-shadow: 0 8px 22px rgba(44, 246, 217, 0.35);
}

.auth-page .eyebrow {
  color: #d9f6ff;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 3.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
}

.auth-page .hero-card h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.auth-page .hero-copy {
  margin-top: 12px;
  max-width: 44ch;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  color: rgba(236, 246, 255, 0.88);
}

.auth-page .hero-line {
  margin-top: 16px;
  height: 2px;
  width: min(760px, 92%);
  background: linear-gradient(90deg, rgba(157, 224, 255, 0.36), rgba(246, 179, 63, 0.78), rgba(246, 179, 63, 0.2));
}

.auth-page .auth-grid {
  width: min(670px, 100%);
}

.auth-page .card {
  border: 1px solid rgba(255, 216, 154, 0.46);
  border-radius: 24px;
  padding: 26px 28px;
  background:
    linear-gradient(145deg, rgba(16, 30, 56, 0.9), rgba(11, 22, 45, 0.82)),
    radial-gradient(circle at 85% 12%, rgba(255, 180, 60, 0.16), transparent 38%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.auth-page .card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: #ffffff;
}

.auth-page label {
  font-size: 1rem;
  color: rgba(239, 246, 255, 0.95);
}

.auth-page input {
  color: #eff8ff;
  border: 1px solid rgba(250, 215, 166, 0.55);
  background: linear-gradient(130deg, rgba(24, 40, 67, 0.85), rgba(23, 34, 56, 0.7));
  border-radius: 14px;
  height: 54px;
  font-size: 1.08rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.auth-page input::placeholder {
  color: rgba(224, 236, 255, 0.7);
}

.auth-page input:focus {
  outline: 2px solid rgba(36, 236, 212, 0.36);
  border-color: rgba(255, 198, 104, 0.9);
}

.auth-page button {
  border-radius: 12px;
  height: 54px;
  margin-top: 14px;
  font-size: 1.05rem;
}

.auth-page .card > button:not(.ghost) {
  background: linear-gradient(120deg, #0ca17f, #19d7ae 50%, #14b193);
  box-shadow: 0 14px 28px rgba(0, 194, 150, 0.32);
}

.auth-page .card > button:not(.ghost):hover {
  box-shadow: 0 18px 32px rgba(7, 204, 158, 0.4);
}

.auth-page button.ghost {
  color: #e8eef8;
  background: linear-gradient(135deg, rgba(27, 39, 58, 0.88), rgba(22, 29, 42, 0.88));
  border: 1px solid rgba(251, 218, 167, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.auth-page button.ghost:hover {
  box-shadow: 0 10px 22px rgba(255, 188, 85, 0.24);
}

.auth-page .row-actions {
  margin-top: 12px;
  gap: 10px;
}

.auth-page .status {
  margin-top: 4px;
  font-size: 0.96rem;
  color: #4df1cb;
  text-shadow: 0 2px 12px rgba(12, 155, 127, 0.45);
}

.auth-page .status.error {
  color: #ff7373;
  text-shadow: 0 2px 12px rgba(182, 33, 33, 0.4);
}

/* Dashboard page visual theme */
.dashboard-page {
  color: #f4f8ff;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 176, 32, 0.5), transparent 30%),
    radial-gradient(circle at 10% 78%, rgba(255, 145, 22, 0.24), transparent 28%),
    linear-gradient(120deg, #060f26 0%, #08162f 38%, #1d1409 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.dashboard-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 182, 59, 0.07) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 34% 60%, rgba(76, 182, 206, 0.15), transparent 26%);
  opacity: 0.5;
}

.dashboard-shell {
  width: min(1400px, 95vw);
  margin: 20px auto 34px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dashboard-shell::after {
  content: "B";
  position: absolute;
  right: clamp(-20px, 2vw, 60px);
  top: clamp(72px, 9vw, 128px);
  width: clamp(130px, 17vw, 250px);
  height: clamp(130px, 17vw, 250px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(4.7rem, 9.5vw, 10rem);
  font-weight: 800;
  color: rgba(255, 213, 118, 0.95);
  background: radial-gradient(circle at 36% 35%, #fff4c7, #ffb643 46%, #7a4a07 92%);
  border: 3px solid rgba(255, 221, 154, 0.68);
  box-shadow:
    0 0 0 10px rgba(255, 168, 53, 0.14),
    0 0 0 18px rgba(255, 168, 53, 0.06),
    0 12px 34px rgba(0, 0, 0, 0.45),
    0 0 44px rgba(255, 167, 32, 0.28);
  text-shadow: 0 5px 12px rgba(90, 40, 0, 0.4);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

.dashboard-page .dashboard-topbar {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 199, 104, 0.6);
  padding-bottom: 12px;
}

.dashboard-page .dash-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-page .brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #031126;
  background: linear-gradient(145deg, #9bf9ff, #37dfcb 56%, #cefb6e);
  box-shadow: 0 8px 22px rgba(44, 246, 217, 0.32);
}

.dashboard-page .dash-brand .eyebrow {
  color: #edf8ff;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.dashboard-page .dash-actions {
  margin-top: 0;
  gap: 12px;
}

.dashboard-page .dash-actions .ghost {
  color: #f2f5fc;
  background: linear-gradient(135deg, rgba(20, 29, 44, 0.88), rgba(21, 28, 40, 0.82));
  border: 1px solid rgba(255, 211, 144, 0.6);
  border-radius: 12px;
  min-width: 112px;
  height: 48px;
}

.dashboard-page .dash-actions .ghost:hover {
  box-shadow: 0 12px 24px rgba(255, 175, 72, 0.28);
}

.dashboard-page .dash-actions .ghost:nth-child(3) {
  background: linear-gradient(120deg, #0ca17f, #1ad8af);
  border-color: rgba(47, 249, 207, 0.6);
  color: #f5fffc;
}

.dashboard-page .dash-hero {
  margin: 18px 0 16px;
}

.dashboard-page .dash-hero h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
  color: #ffdf91;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.dashboard-page .dash-hero p {
  margin-top: 8px;
  font-size: clamp(1.1rem, 1.65vw, 2rem);
  color: rgba(237, 246, 255, 0.9);
}

.dashboard-page .dash-products-wrap {
  border-radius: 18px;
  border: 1px solid rgba(255, 205, 125, 0.5);
  padding: 18px;
  background:
    linear-gradient(140deg, rgba(14, 27, 50, 0.78), rgba(13, 22, 42, 0.72)),
    radial-gradient(circle at 90% 8%, rgba(255, 169, 58, 0.16), transparent 35%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.dashboard-page .dash-products-wrap h2 {
  color: #ffe8ad;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  margin-bottom: 14px;
}

.dashboard-product-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.dashboard-page .dash-product {
  border-radius: 16px;
  border: 1px solid rgba(255, 203, 112, 0.72);
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(17, 30, 52, 0.9), rgba(10, 18, 34, 0.83)),
    radial-gradient(circle at 80% 18%, rgba(255, 170, 48, 0.18), transparent 36%);
  box-shadow:
    0 0 18px rgba(255, 183, 75, 0.22),
    inset 0 0 0 1px rgba(255, 238, 201, 0.05);
}

.dashboard-page .dash-product-image {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 145, 0.58);
  margin-bottom: 12px;
}

.dashboard-page .dash-product-name {
  display: block;
  font-size: 1.12rem;
  line-height: 1.25;
  color: #ffffff;
}

.dashboard-page .dash-product-meta {
  margin-top: 4px;
  color: rgba(240, 247, 255, 0.94);
  font-size: 0.97rem;
}

.dashboard-page .dash-buy {
  margin-top: 10px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(120deg, #0f9f7c, #1bd8b0 50%, #13b08f);
  box-shadow: 0 12px 22px rgba(0, 190, 150, 0.3);
}

.dashboard-page .status {
  color: #58ffd8;
  text-shadow: 0 4px 12px rgba(10, 161, 128, 0.45);
}

.dashboard-page .status.error {
  color: #ff7d8a;
  text-shadow: 0 4px 12px rgba(163, 32, 47, 0.42);
}

/* Profile page visual theme */
.profile-page {
  color: #f4f8ff;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 176, 32, 0.5), transparent 30%),
    radial-gradient(circle at 10% 78%, rgba(255, 145, 22, 0.24), transparent 28%),
    linear-gradient(120deg, #060f26 0%, #08162f 38%, #1d1409 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.profile-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 182, 59, 0.07) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 34% 60%, rgba(76, 182, 206, 0.15), transparent 26%);
  opacity: 0.5;
}

.profile-shell::after {
  opacity: 0.32;
  right: clamp(-24px, 1vw, 50px);
  top: clamp(74px, 9vw, 120px);
  width: clamp(110px, 16vw, 220px);
  height: clamp(110px, 16vw, 220px);
}

.profile-page .dashboard-topbar {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 199, 104, 0.6);
  padding-bottom: 12px;
}

.profile-page .dash-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-page .brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #031126;
  background: linear-gradient(145deg, #9bf9ff, #37dfcb 56%, #cefb6e);
  box-shadow: 0 8px 22px rgba(44, 246, 217, 0.32);
}

.profile-page .dash-brand .eyebrow {
  color: #edf8ff;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.profile-page .dash-actions {
  margin-top: 0;
  gap: 12px;
}

.profile-page .dash-actions .ghost {
  color: #f2f5fc;
  background: linear-gradient(135deg, rgba(20, 29, 44, 0.88), rgba(21, 28, 40, 0.82));
  border: 1px solid rgba(255, 211, 144, 0.6);
  border-radius: 12px;
  min-width: 112px;
  height: 48px;
}

.profile-page .dash-actions .ghost:nth-child(3) {
  background: linear-gradient(120deg, #0ca17f, #1ad8af);
  border-color: rgba(47, 249, 207, 0.6);
  color: #f5fffc;
}

.profile-page .dash-hero {
  margin: 18px 0 16px;
}

.profile-page .dash-hero h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
  color: #ffdf91;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.profile-page .dash-hero p {
  margin-top: 8px;
  font-size: clamp(1.1rem, 1.65vw, 2rem);
  color: rgba(237, 246, 255, 0.9);
}

.profile-page .profile-stats {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.profile-page .stat,
.profile-page .card {
  border-radius: 16px;
  border: 1px solid rgba(255, 205, 125, 0.52);
  background:
    linear-gradient(145deg, rgba(14, 27, 50, 0.82), rgba(13, 22, 42, 0.74)),
    radial-gradient(circle at 88% 12%, rgba(255, 169, 58, 0.14), transparent 36%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.profile-page .stat p {
  color: rgba(242, 247, 255, 0.92);
  font-size: 1rem;
}

.profile-page .stat h3 {
  color: #ffe7ab;
  font-size: 2rem;
}

.profile-page .card h2 {
  color: #ffe6a9;
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.profile-page .card p,
.profile-page .card strong,
.profile-page .card span,
.profile-page .list li {
  color: rgba(242, 247, 255, 0.95);
}

.profile-page .list li {
  border: 1px solid rgba(255, 204, 124, 0.56);
  background: rgba(8, 19, 38, 0.5);
  border-radius: 12px;
}

.profile-page input,
.profile-page textarea {
  color: #eff8ff;
  border: 1px solid rgba(250, 215, 166, 0.55);
  background: linear-gradient(130deg, rgba(24, 40, 67, 0.85), rgba(23, 34, 56, 0.7));
  border-radius: 12px;
}

.profile-page input::placeholder,
.profile-page textarea::placeholder {
  color: rgba(224, 236, 255, 0.7);
}

.profile-page input:focus,
.profile-page textarea:focus {
  outline: 2px solid rgba(36, 236, 212, 0.36);
  border-color: rgba(255, 198, 104, 0.9);
}

.profile-page button {
  background: linear-gradient(120deg, #0ca17f, #19d7ae 50%, #14b193);
  box-shadow: 0 14px 28px rgba(0, 194, 150, 0.26);
}

.profile-page button.ghost {
  color: #e8eef8;
  background: linear-gradient(135deg, rgba(27, 39, 58, 0.88), rgba(22, 29, 42, 0.88));
  border: 1px solid rgba(251, 218, 167, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.profile-page .status {
  color: #58ffd8;
  text-shadow: 0 4px 12px rgba(10, 161, 128, 0.45);
}

.profile-page .status.error {
  color: #ff7d8a;
  text-shadow: 0 4px 12px rgba(163, 32, 47, 0.42);
}

/* My Products page visual theme */
.my-products-page {
  color: #f4f8ff;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 176, 32, 0.5), transparent 30%),
    radial-gradient(circle at 10% 78%, rgba(255, 145, 22, 0.24), transparent 28%),
    linear-gradient(120deg, #060f26 0%, #08162f 38%, #1d1409 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.my-products-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 182, 59, 0.07) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 34% 60%, rgba(76, 182, 206, 0.15), transparent 26%);
  opacity: 0.5;
}

.my-products-shell::after {
  opacity: 0.38;
  right: clamp(-22px, 1vw, 60px);
  top: clamp(82px, 10vw, 132px);
  width: clamp(125px, 17vw, 235px);
  height: clamp(125px, 17vw, 235px);
}

.my-products-page .dashboard-topbar {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 199, 104, 0.6);
  padding-bottom: 12px;
}

.my-products-page .dash-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.my-products-page .brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #031126;
  background: linear-gradient(145deg, #9bf9ff, #37dfcb 56%, #cefb6e);
  box-shadow: 0 8px 22px rgba(44, 246, 217, 0.32);
}

.my-products-page .dash-brand .eyebrow {
  color: #edf8ff;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.my-products-page .dash-actions {
  margin-top: 0;
  gap: 12px;
}

.my-products-page .dash-actions .ghost {
  color: #f2f5fc;
  background: linear-gradient(135deg, rgba(20, 29, 44, 0.88), rgba(21, 28, 40, 0.82));
  border: 1px solid rgba(255, 211, 144, 0.6);
  border-radius: 12px;
  min-width: 112px;
  height: 48px;
}

.my-products-page .dash-actions .ghost:nth-child(3) {
  background: linear-gradient(120deg, #0ca17f, #1ad8af);
  border-color: rgba(47, 249, 207, 0.6);
  color: #f5fffc;
}

.my-products-page .dash-hero {
  margin: 18px 0 14px;
}

.my-products-page .dash-hero h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
  color: #ffdf91;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.my-products-page .my-products-stats {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 205, 125, 0.52);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(14, 27, 50, 0.8), rgba(13, 22, 42, 0.72)),
    radial-gradient(circle at 88% 12%, rgba(255, 169, 58, 0.14), transparent 36%);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
  margin-bottom: 16px;
}

.my-products-page .my-products-stats .stat {
  border: 0;
  border-right: 1px solid rgba(255, 205, 125, 0.24);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 18px 26px;
}

.my-products-page .my-products-stats .stat:last-child {
  border-right: 0;
}

.my-products-page .stat p {
  color: rgba(242, 247, 255, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.65rem);
}

.my-products-page .stat h3 {
  color: #ffe7ab;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
}

.my-products-page .my-products-wrap {
  border-radius: 18px;
  border: 1px solid rgba(255, 205, 125, 0.52);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(14, 27, 50, 0.78), rgba(13, 22, 42, 0.72)),
    radial-gradient(circle at 90% 8%, rgba(255, 169, 58, 0.16), transparent 35%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.my-products-page .my-products-wrap h2 {
  color: #ffe8ad;
  font-size: clamp(1.55rem, 2.4vw, 3rem);
  margin-bottom: 14px;
}

.my-products-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 16px;
}

.my-products-page .my-products-grid .my-product-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 203, 112, 0.72);
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(17, 30, 52, 0.9), rgba(10, 18, 34, 0.83)),
    radial-gradient(circle at 80% 18%, rgba(255, 170, 48, 0.18), transparent 36%);
  box-shadow:
    0 0 18px rgba(255, 183, 75, 0.2),
    inset 0 0 0 1px rgba(255, 238, 201, 0.05);
}

.my-product-image {
  width: 100%;
  max-width: 420px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 214, 145, 0.58);
  margin-bottom: 12px;
}

.my-product-name {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1.25;
  color: #fff2c8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.my-product-meta {
  margin-top: 4px;
  color: rgba(241, 247, 255, 0.98);
  font-size: clamp(1rem, 1.2vw, 1.65rem);
}

.my-product-action {
  margin-top: 12px;
  height: 52px;
  border-radius: 10px;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  background: linear-gradient(120deg, #0f9f7c, #1bd8b0 50%, #13b08f);
  box-shadow: 0 12px 22px rgba(0, 190, 150, 0.3);
}

.my-products-page .status {
  color: #58ffd8;
  text-shadow: 0 4px 12px rgba(10, 161, 128, 0.45);
}

.my-products-page .status.error {
  color: #ff7d8a;
  text-shadow: 0 4px 12px rgba(163, 32, 47, 0.42);
}

/* Deposit page visual theme */
.deposit-page {
  color: #f4f8ff;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 176, 32, 0.5), transparent 30%),
    radial-gradient(circle at 10% 78%, rgba(255, 145, 22, 0.24), transparent 28%),
    linear-gradient(120deg, #060f26 0%, #08162f 38%, #1d1409 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.deposit-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 182, 59, 0.07) 0 2px, transparent 2px 22px),
    radial-gradient(circle at 34% 60%, rgba(76, 182, 206, 0.15), transparent 26%);
  opacity: 0.5;
}

.deposit-shell::after {
  opacity: 0.36;
  right: clamp(-22px, 1vw, 60px);
  top: clamp(78px, 10vw, 126px);
  width: clamp(120px, 17vw, 230px);
  height: clamp(120px, 17vw, 230px);
}

.deposit-page .dashboard-topbar {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 199, 104, 0.6);
  padding-bottom: 12px;
}

.deposit-page .dash-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deposit-page .brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #031126;
  background: linear-gradient(145deg, #9bf9ff, #37dfcb 56%, #cefb6e);
  box-shadow: 0 8px 22px rgba(44, 246, 217, 0.32);
}

.deposit-page .dash-brand .eyebrow {
  color: #edf8ff;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.deposit-page .dash-actions {
  margin-top: 0;
  gap: 12px;
}

.deposit-page .dash-actions .ghost {
  color: #f2f5fc;
  background: linear-gradient(135deg, rgba(20, 29, 44, 0.88), rgba(21, 28, 40, 0.82));
  border: 1px solid rgba(255, 211, 144, 0.6);
  border-radius: 12px;
  min-width: 112px;
  height: 48px;
}

.deposit-page .dash-actions .ghost:nth-child(3) {
  background: linear-gradient(120deg, #0ca17f, #1ad8af);
  border-color: rgba(47, 249, 207, 0.6);
  color: #f5fffc;
}

.deposit-page .dash-hero {
  margin: 18px 0 14px;
}

.deposit-page .dash-hero h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
  color: #ffdf91;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.deposit-page .deposit-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 18px;
}

.deposit-page .deposit-grid .card {
  border-radius: 18px;
  border: 1px solid rgba(255, 205, 125, 0.52);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(14, 27, 50, 0.78), rgba(13, 22, 42, 0.72)),
    radial-gradient(circle at 90% 8%, rgba(255, 169, 58, 0.16), transparent 35%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.deposit-page .deposit-grid h2 {
  color: #ffe8ad;
  font-size: clamp(1.55rem, 2.3vw, 2.55rem);
  margin-bottom: 10px;
}

.deposit-page .deposit-grid p,
.deposit-page .deposit-grid label {
  color: rgba(242, 247, 255, 0.95);
  font-size: 0.95rem;
}

.deposit-qr {
  margin-top: 12px;
  width: min(330px, 100%);
  max-height: 340px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 206, 119, 0.72);
}

.deposit-page .upi-box {
  margin-top: 12px;
  background: linear-gradient(130deg, rgba(13, 40, 57, 0.85), rgba(16, 30, 51, 0.8));
  border: 1px solid rgba(255, 206, 117, 0.58);
  border-radius: 12px;
  padding: 10px 12px;
  color: #eff8ff;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.deposit-page .upi-copy {
  width: 100%;
  min-width: 0;
  height: 36px;
  margin-top: 0;
}

.deposit-page .upi-box small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.deposit-page input {
  color: #eff8ff;
  border: 1px solid rgba(250, 215, 166, 0.55);
  background: linear-gradient(130deg, rgba(24, 40, 67, 0.85), rgba(23, 34, 56, 0.7));
  border-radius: 12px;
}

.deposit-page input::placeholder {
  color: rgba(224, 236, 255, 0.7);
}

.deposit-page input:focus {
  outline: 2px solid rgba(36, 236, 212, 0.36);
  border-color: rgba(255, 198, 104, 0.9);
}

.deposit-page input[type="file"] {
  padding: 8px 10px;
  color: rgba(240, 247, 255, 0.92);
}

.deposit-page input[type="file"]::file-selector-button {
  margin-right: 10px;
  border: 1px solid rgba(255, 214, 136, 0.65);
  border-radius: 8px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  color: #f2f6ff;
  background: linear-gradient(120deg, rgba(21, 35, 57, 0.96), rgba(30, 46, 66, 0.9));
}

.deposit-page .card > button:not(.ghost) {
  background: linear-gradient(120deg, #0f9f7c, #1bd8b0 50%, #13b08f);
  box-shadow: 0 12px 22px rgba(0, 190, 150, 0.3);
}

.deposit-page .status {
  color: #58ffd8;
  text-shadow: 0 4px 12px rgba(10, 161, 128, 0.45);
}

.deposit-page .status.error {
  color: #ff7d8a;
  text-shadow: 0 4px 12px rgba(163, 32, 47, 0.42);
}

@media (max-width: 640px) {
  .app-shell,
  .auth-shell {
    width: min(96vw, 1120px);
  }

  .auth-shell {
    display: block;
  }

  .auth-shell .hero-card {
    margin-bottom: 14px;
  }

  .topbar {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .topbar .row-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .topbar .ghost {
    width: 100%;
  }

  .dashboard-shell {
    width: min(97vw, 1240px);
  }

  .dashboard-page .dash-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .dashboard-page .dash-actions .ghost {
    width: 100%;
    min-width: 0;
  }

  .dashboard-page .dash-hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .dashboard-page .dash-hero p {
    font-size: 1rem;
  }

  .dashboard-page .dash-product-image {
    height: 112px;
  }

  .dashboard-shell::after {
    width: 100px;
    height: 100px;
    font-size: 2.6rem;
    right: -12px;
    top: 86px;
    opacity: 0.32;
  }

  .my-products-page .dash-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .my-products-page .dash-actions .ghost {
    width: 100%;
    min-width: 0;
  }

  .my-products-page .my-products-stats {
    grid-template-columns: 1fr;
  }

  .my-products-page .my-products-stats .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 205, 125, 0.24);
    padding: 14px 16px;
  }

  .my-products-page .my-products-stats .stat:last-child {
    border-bottom: 0;
  }

  .my-products-grid {
    grid-template-columns: 1fr;
  }

  .my-product-image {
    height: 128px;
  }

  .deposit-page .dash-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .deposit-page .dash-actions .ghost {
    width: 100%;
    min-width: 0;
  }

  .deposit-page .deposit-grid {
    grid-template-columns: 1fr;
  }

  .deposit-page .deposit-grid .card {
    padding: 16px;
    min-width: 0;
  }

  .deposit-page .upi-box {
    min-width: 0;
  }

  .deposit-qr {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-inline: auto;
    display: block;
  }

  .auth-page .hero-card h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }

  .auth-page .eyebrow {
    font-size: clamp(1.2rem, 8vw, 2rem);
  }

  .auth-page .hero-copy {
    font-size: 1rem;
  }

  .auth-page .card {
    padding: 20px 16px;
  }

  .auth-page .auth-shell::after {
    width: 170px;
    height: 170px;
    font-size: 4.6rem;
    right: -40px;
    top: 22px;
    opacity: 0.62;
  }
}

@media (max-width: 900px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-shell::after {
    right: -8px;
    top: 88px;
    opacity: 0.35;
  }

  .my-products-shell::after {
    right: -8px;
    top: 90px;
    opacity: 0.3;
  }

  .deposit-shell::after {
    right: -8px;
    top: 90px;
    opacity: 0.3;
  }

  .auth-page .auth-grid {
    width: min(720px, 100%);
  }

  .auth-page .auth-shell::after {
    right: 10px;
    top: 66px;
    opacity: 0.72;
  }
}
