* {
  box-sizing: border-box;
}

:root {
  --bg: #050a10;
  --bg2: #07111b;
  --sidebar: #050b12;
  --panel: #101827;
  --panel2: #0b1320;
  --input: #09121d;
  --text: #f8fafc;
  --muted: #9aa8bc;
  --line: rgba(148, 163, 184, .22);
  --line2: rgba(148, 163, 184, .12);
  --green: #22d96d;
  --green2: #16a34a;
  --purple: #a855f7;
  --red: #ff5365;
  --yellow: #fbbf24;
  --radius: 14px;
  --shadow: 0 22px 70px rgba(0,0,0,.35);
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 0%, rgba(34,217,109,.14), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(168,85,247,.08), transparent 26%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* LOGIN */

.auth-container {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
  padding: 54px clamp(18px, 4vw, 72px);
}

.auth-left {
  display: grid;
  gap: 22px;
}

.brand-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34,217,109,.12);
  border: 1px solid rgba(34,217,109,.32);
  color: var(--green);
  font-weight: 900;
}

.brand h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  color: #fff;
}

.brand p {
  max-width: 720px;
  margin: 0;
  color: #d7dfec;
  font-size: 18px;
  line-height: 1.55;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.features div {
  padding: 18px;
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  background: rgba(17,28,43,.72);
  font-weight: 800;
}

.auth-right {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: min(100%, 470px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,29,44,.92), rgba(9,16,25,.94));
  box-shadow: var(--shadow);
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background: rgba(5,11,18,.72);
}

.tab {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.tab.active {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
}

h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

/* FORMS */

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 12px;
  background: #eaf1ff;
  color: #07111f;
  outline: none;
  font-weight: 750;
}

input,
select {
  min-height: 52px;
  padding: 0 16px;
  margin-bottom: 14px;
}

textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(34,217,109,.72);
  box-shadow: 0 0 0 4px rgba(34,217,109,.13);
}

.primary {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(34,217,109,.22);
}

.small-action {
  width: auto !important;
  min-width: 150px;
  padding: 0 18px !important;
}

/* DASHBOARD */

body.dashboard-body {
  padding-left: 280px;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: 280px;
  height: 100vh;
  padding: 34px 22px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(7,13,21,.98), rgba(3,8,13,.98));
  border-right: 1px solid var(--line);
}

.sidebar-brand {
  position: relative;
  min-height: 46px;
  padding-left: 50px;
  margin-bottom: 48px;
}

.sidebar-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4.7c0-1.8 2-2.8 3.5-1.8l11.2 7.3c1.4.9 1.4 2.7 0 3.6L8.5 21.1C7 22.1 5 21.1 5 19.3V4.7zm4 3.7v7.2l5.6-3.6L9 8.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 4.7c0-1.8 2-2.8 3.5-1.8l11.2 7.3c1.4.9 1.4 2.7 0 3.6L8.5 21.1C7 22.1 5 21.1 5 19.3V4.7zm4 3.7v7.2l5.6-3.6L9 8.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.sidebar-brand strong {
  display: block;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
}

.sidebar-brand span {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.sidebar-menu {
  display: grid;
  gap: 10px;
}

.sidebar-menu button {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
  text-align: left;
  font-weight: 850;
}

.sidebar-menu button.active,
.sidebar-menu button:hover {
  background: linear-gradient(90deg, rgba(34,217,109,.25), rgba(34,217,109,.1));
}

.logout {
  color: var(--red) !important;
}

.dashboard-main {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 32px 36px;
  overflow-x: hidden;
}

.dashboard-topbar,
.section-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-topbar small {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 900;
}

.dashboard-topbar h1 {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
}

.section-subtitle,
.dashboard-topbar p,
.section-header p {
  margin: 0;
  color: #d7dfec;
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.dash-card,
.dash-panel,
.sales-panel,
.modal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(17,27,41,.92), rgba(10,17,27,.94));
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.dash-card {
  min-height: 112px;
  padding: 22px;
}

.dash-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.dash-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 22px;
}

.dash-panel,
.sales-panel {
  width: 100%;
  padding: 22px;
  overflow: hidden;
}

.dash-panel.large {
  grid-row: span 2;
}

.fake-chart {
  height: 260px;
  margin-top: 18px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(34,217,109,.22), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 70px);
}

/* TABELA */

.sales-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.sales-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.sales-table th,
.sales-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line2);
  text-align: left;
}

.sales-table th {
  color: #c8d7ee;
  font-size: 13px;
}

.sales-table td {
  color: #fff;
  font-weight: 800;
}

/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.68);
}

.modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 26px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 26px;
}

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

.form-error {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,83,101,.35);
  border-radius: 10px;
  background: rgba(255,83,101,.12);
  color: #fecaca;
  font-weight: 850;
}

.mobile-menu {
  display: none;
}

/* STATUS E AÇÕES */

.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(34,217,109,.26);
  border-radius: 10px;
  background: rgba(34,217,109,.1);
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.mini-action.danger {
  background: rgba(239,68,68,.14);
  color: #fecaca;
  border-color: rgba(239,68,68,.25);
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-pending {
  background: rgba(250,204,21,.15);
  color: #fde68a;
}

.status-processing {
  background: rgba(59,130,246,.15);
  color: #bfdbfe;
}

.status-delivered {
  background: rgba(34,197,94,.15);
  color: #86efac;
}

.status-cancelled,
.status-refunded {
  background: rgba(239,68,68,.15);
  color: #fecaca;
}

/* DIAMANTES */

.delivery-type {
  display: flex;
  gap: 12px;
  margin: 8px 0 16px;
}

.delivery-btn {
  flex: 1;
  min-height: 52px;
  border: 1px solid rgba(34,217,109,.25);
  border-radius: 14px;
  background: #0b1220;
  color: #f8fafc;
  font-weight: 900;
}

.delivery-btn.active {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
}

.diamonds-box {
  margin: 8px 0 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(34,217,109,.06);
  border: 1px solid rgba(34,217,109,.18);
}

.diamonds-box p {
  margin: 0 0 12px;
  color: #86efac;
  font-weight: 900;
}

.diamonds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.diamonds-grid button {
  border: 1px solid rgba(34,217,109,.25);
  background: #0b1220;
  color: #f8fafc;
  border-radius: 14px;
  padding: 12px 8px;
  font-weight: 900;
}

.diamonds-grid button:hover,
.diamonds-grid button.active {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  box-shadow: 0 12px 30px rgba(34,217,109,.22);
}

.save-order-btn {
  margin-top: 10px;
}

/* IA */

.ai-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7,13,21,.72);
}

.ai-card {
  min-width: 0;
}

.ai-title,
.ai-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 950;
}

.ai-description,
.ai-card p {
  margin: 0 0 24px;
  color: #d7dfec;
}

.ai-form,
.ai-card form {
  display: grid;
  gap: 14px;
}

.ai-form label,
.ai-card label {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.ai-form input,
.ai-form select,
.ai-card input,
.ai-card select {
  margin: 0;
  background: var(--input);
  color: #fff;
}

.ai-result,
.ai-preview,
.ai-card textarea {
  width: 100%;
  min-height: 420px;
  padding: 22px;
  border: 1px dashed rgba(168,85,247,.62);
  border-radius: 16px;
  background: #0b1220;
  color: #fff;
  line-height: 1.7;
}

.ai-actions,
.ai-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.ai-copy-btn,
.ai-whatsapp-btn,
.ai-copy,
.ai-whatsapp {
  flex: 1;
  min-height: 54px;
  border-radius: 12px;
  font-weight: 900;
}

.ai-copy-btn,
.ai-copy {
  border: 1px solid rgba(168,85,247,.72);
  background: rgba(168,85,247,.08);
  color: var(--purple);
}

.ai-whatsapp-btn,
.ai-whatsapp {
  border: 1px solid rgba(34,217,109,.34);
  background: rgba(34,217,109,.1);
  color: var(--green);
}

/* RESPONSIVO CORRIGIDO */

@media (max-width: 1200px) {
  body.dashboard-body {
    padding-left: 0 !important;
  }

  .sidebar {
    width: min(82vw, 300px) !important;
    transform: translateX(-100%) !important;
    transition: transform .25s ease !important;
    box-shadow: 30px 0 80px rgba(0,0,0,.55);
  }

  .sidebar.open {
    transform: translateX(0) !important;
  }

  .mobile-menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--panel);
    color: #fff;
  }

  .dashboard-main {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 18px 12px 28px !important;
    overflow-x: hidden !important;
  }

  .dashboard-topbar,
  .section-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .dashboard-cards,
  .dashboard-grid,
  .ai-wrapper {
    grid-template-columns: 1fr !important;
  }

  .small-action,
  .dashboard-topbar .primary,
  .section-header .primary {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 760px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .dashboard-topbar h1 {
    font-size: 30px !important;
    word-break: break-word;
  }

  .dash-card,
  .dash-panel,
  .sales-panel {
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px !important;
  }

  .modal {
    padding: 8px !important;
    align-items: flex-start !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  .modal-card {
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    margin: 8px 0 !important;
    padding: 16px !important;
    overflow-x: hidden !important;
  }

  .form-row,
  .delivery-type,
  .ai-actions,
  .ai-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .diamonds-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .diamonds-box {
    padding: 12px !important;
    overflow-x: hidden !important;
  }

  .diamonds-grid button {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 13px !important;
    padding: 10px 4px !important;
  }

  .sales-table-wrap {
    width: 100% !important;
    overflow-x: auto !important;
  }

  .sales-table {
    min-width: 680px !important;
  }
}
.sidebar-close {
  display: none;
}

@media (max-width: 1200px) {
  .sidebar-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 30px;
    font-weight: 900;
  }
}
.sidebar-close {
  display: none;
}

@media (max-width: 1200px) {
  .sidebar {
    z-index: 9999 !important;
  }

  .sidebar-close {
    display: grid !important;
    place-items: center;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 30px;
    font-weight: 900;
  }
}
/* FIX LOGIN MOBILE */
@media (max-width: 760px) {
  .auth-container {
    width: 100% !important;
    max-width: 100vw !important;
    display: block !important;
    padding: 18px 12px !important;
    overflow-x: hidden !important;
  }

  .auth-left,
  .auth-right {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .auth-left {
    margin-bottom: 18px !important;
  }

  .brand h1 {
    font-size: 30px !important;
  }

  .brand p {
    font-size: 15px !important;
  }

  .features {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .features div {
    padding: 12px !important;
    font-size: 13px !important;
  }

  .auth-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px !important;
  }
}
/* Campo de data visível no celular */
input[type="date"] {
  position: relative;
  color: #07111f !important;
  font-weight: 700;
  min-height: 58px;
}

input[type="date"]::-webkit-datetime-edit {
  color: #07111f !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  input[type="date"] {
    color: #07111f !important;
  }

  input[type="date"]:before {
    content: "dd/mm/aaaa";
    color: #07111f;
    font-weight: 700;
  }

  input[type="date"]:valid:before {
    content: "";
  }
}
.sidebar-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-menu button i {
  width: 20px;
  text-align: center;
  font-size: 15px;
}

.sidebar-menu button.active {
  background: linear-gradient(
    135deg,
    rgba(34,197,94,.25),
    rgba(22,163,74,.15)
  );
  border: 1px solid rgba(34,197,94,.35);
}

.logout i {
  color: #f87171;
}
/* FUNDO PREMIUM LOGIN */
.auth-container {
  position: relative;
  overflow: hidden;
}

.auth-container::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(34, 217, 109, .22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(168, 85, 247, .18), transparent 26%),
    radial-gradient(circle at 70% 78%, rgba(59, 130, 246, .12), transparent 28%);
  z-index: 0;
}

.auth-container::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: 0;
}

.auth-left,
.auth-right {
  position: relative;
  z-index: 1;
}

.brand h1 {
  text-shadow: 0 18px 60px rgba(34,217,109,.18);
}

.auth-card {
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 90px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

.features div {
  transition: .2s ease;
}

.features div:hover {
  transform: translateY(-3px);
  border-color: rgba(34,217,109,.35);
  box-shadow: 0 18px 45px rgba(34,217,109,.10);
}

@media (max-width: 760px) {
  .auth-container::after {
    background-size: 32px 32px;
    opacity: .12;
  }

  .auth-container::before {
    background:
      radial-gradient(circle at 20% 12%, rgba(34,217,109,.20), transparent 32%),
      radial-gradient(circle at 90% 35%, rgba(168,85,247,.12), transparent 30%);
  }

  .features div:hover {
    transform: none;
  }
}
.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.72);
  padding: 18px;
}

.confirm-card {
  width: min(420px, 100%);
  background: linear-gradient(180deg, rgba(17,27,41,.98), rgba(8,14,23,.98));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.confirm-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.confirm-card p {
  margin: 0 0 22px;
  color: #9aa8bc;
}

.confirm-actions {
  display: flex;
  gap: 12px;
}

.confirm-actions button {
  flex: 1;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 900;
}

.confirm-cancel {
  border: 1px solid rgba(255,255,255,.14);
  background: #0b1220;
  color: #fff;
}

.confirm-danger {
  border: 0;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
}
.admin-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-weight: 900;
}

.sales-table td small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  margin-top: 4px;
}

.dashboard-topbar .primary {
  max-width: 120px;
}
.sidebar-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-menu button i {
  width: 18px;
  text-align: center;
}
.dash-card span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-card span i {
  font-size: 15px;
  opacity: .8;
}
.sidebar-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-menu button i {
  width: 18px;
  text-align: center;
  font-size: 15px;
}
.sidebar-menu button.active {
  background: #22c55e;
  color: #fff;
}

.sidebar-menu button.active i {
  color: #fff;
}
.vencido { border-left:4px solid #ef4444; }
.hoje { border-left:4px solid #f59e0b; }
.futuro { border-left:4px solid #22c55e; }

.copy-toast{
  position:fixed;
  top:20px;
  right:20px;
  background:#22c55e;
  color:#fff;
  padding:12px 18px;
  border-radius:10px;
  font-weight:700;
  z-index:9999;
}
.panel-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.table-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.table-tabs button{
  background:#111827;
  border:1px solid #1f2937;
  color:#fff;
  padding:10px 16px;
  border-radius:12px;
  cursor:pointer;
}

.dashboard-main > section {
  display: none;
}

.dashboard-main > section:not(.hidden) {
  display: block;
}

.dashboard-main > section.dashboard-cards,
.dashboard-main > section.dashboard-grid {
  display: grid;
}

body.loaded .dashboard-main > section:not(.hidden) {
  display: block;
}

.dashboard-main {
  position: relative;
}

.dashboard-main > section {
  position: relative;
  z-index: 1;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.profit-chart {
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  gap: 16px;
  padding: 20px;
}

.profit-bar-item {
  flex: 1;
  max-width: 90px;
  text-align: center;
}

.profit-bar-wrap {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.profit-bar {
  width: 45px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(
    180deg,
    #22c55e,
    #15803d
  );
  box-shadow: 0 0 20px rgba(34,197,94,.4);
  transition: .3s;
}

.profit-bar:hover {
  transform: scale(1.05);
}

.profit-bar-value {
  font-size: 13px;
  margin-bottom: 8px;
  color: #fff;
}

.profit-chart small {
  display: block;
  margin-top: 10px;
  color: #8fa4c2;
}
.renew-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #16a34a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.renew-popup.show {
  transform: translateY(0);
  opacity: 1;
}
.settings-option{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.settings-option:last-child{
  border-bottom:none;
}

.settings-option span{
  color:#fff;
  font-weight:500;
}

.settings-option input[type="checkbox"]{
  width:18px;
  height:18px;
  cursor:pointer;
}
.toast-message {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #22c55e;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 800;
  z-index: 99999;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.25s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}
/* ADMIN DONO */

body.admin-body {
  padding-left: 0 !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(34,197,94,.18), transparent 30%),
    linear-gradient(135deg, #020617, #08111f 55%, #020617);
}

.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 245px;
  height: 100vh;
  padding: 28px 17px;
  background: rgba(2, 6, 23, .88);
  border-right: 1px solid rgba(148,163,184,.15);
}

.admin-main {
  margin-left: 245px;
  padding: 26px 26px 35px;
  max-width: none;
}

.admin-brand strong {
  display: block;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}

.admin-brand span {
  display: block;
  margin-top: 10px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 900;
}

.admin-menu {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.admin-menu button {
  border: 0;
  border-radius: 13px;
  padding: 14px 15px;
  background: transparent;
  color: #cbd5e1;
  text-align: left;
  font-weight: 850;
}

.admin-menu button.active,
.admin-menu button:hover {
  background: rgba(34,197,94,.18);
  color: #22c55e;
}

.admin-status {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 24px;
  padding: 15px;
  border-radius: 15px;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(34,197,94,.25);
}

.admin-status strong {
  color: #22c55e;
}

.admin-status span {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  margin-top: 4px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-header small {
  color: #22c55e;
  font-weight: 900;
}

.admin-header h1 {
  margin: 6px 0;
  font-size: 39px;
  color: #fff;
}

.admin-header h1 span {
  color: #22c55e;
}

.admin-header p {
  color: #94a3b8;
  max-width: 680px;
}

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

.live-pill {
  padding: 13px 18px;
  border-radius: 14px;
  background: rgba(15,23,42,.92);
  border: 1px solid rgba(148,163,184,.18);
  color: #e2e8f0;
  font-weight: 850;
}

.live-pill b {
  color: #22c55e;
  font-size: 22px;
  margin-left: 8px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.admin-card,
.admin-panel,
.admin-filter {
  background: rgba(15,23,42,.84);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.admin-card {
  min-height: 105px;
  padding: 18px;
}

.admin-card span {
  color: #cbd5e1;
  font-size: 14px;
}

.admin-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 25px;
}

.admin-card small {
  color: #94a3b8;
}

.admin-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.55fr .9fr .9fr;
  gap: 14px;
}

.admin-panel {
  padding: 18px;
}

.admin-panel h3 {
  margin: 0 0 14px;
}

.panel-head,
.admin-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.admin-chart {
  height: 205px;
  display: flex;
  align-items: end;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(148,163,184,.12);
}

.admin-chart div {
  flex: 1;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #22c55e, rgba(34,197,94,.15));
}

.category-list {
  display: grid;
  gap: 12px;
}

.category-list div,
.top-products p {
  padding: 11px;
  border-radius: 12px;
  background: rgba(2,6,23,.38);
}

.category-list b,
.category-list span,
.top-products b {
  display: block;
  color: #fff;
}

.category-list small {
  color: #94a3b8;
}

.top-products p {
  display: flex;
  justify-content: space-between;
  color: #e2e8f0;
  margin: 0 0 10px;
}

.top-products b {
  background: rgba(34,197,94,.18);
  color: #22c55e;
  padding: 3px 10px;
  border-radius: 999px;
}

.admin-filter {
  margin-top: 14px;
  padding: 18px;
}

.admin-filter p {
  color: #94a3b8;
}

.admin-filter input,
.admin-filter select,
.panel-head select {
  background: #e8eefb;
  color: #111827;
  border: 0;
  border-radius: 12px;
  padding: 13px 15px;
  font-weight: 850;
}

.admin-filter > div:last-child {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-tables {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

@media (max-width: 1100px) {
  .admin-sidebar {
    position: static;
    width: auto;
    height: auto;
  }

  .admin-status {
    position: static;
    margin-top: 20px;
  }

  .admin-main {
    margin-left: 0;
    padding: 20px 14px;
  }

  .admin-header,
  .admin-actions,
  .admin-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-cards,
  .admin-layout {
    grid-template-columns: 1fr;
  }
}
.store-body {
  padding: 0;
  background: #020617;
}

.store-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 42px;
}

.store-header strong {
  color: #fff;
  font-size: 26px;
}

.store-header span,
.store-hero p {
  color: #94a3b8;
}

.store-login {
  color: #22c55e;
  font-weight: 900;
  text-decoration: none;
}

.store-hero {
  padding: 55px 42px;
  background: radial-gradient(circle at left, rgba(34,197,94,.22), transparent 35%);
}

.store-badge {
  color: #22c55e;
  font-weight: 900;
}

.store-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: 48px;
  margin: 12px 0;
}

.store-categories {
  display: flex;
  gap: 12px;
  padding: 0 42px 24px;
  flex-wrap: wrap;
}

.store-categories button {
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 999px;
  padding: 12px 18px;
  background: #0f172a;
  color: #fff;
  font-weight: 900;
}

.store-categories button.active {
  background: #22c55e;
}

.store-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 42px 42px;
}

.store-product-card {
  padding: 22px;
  border-radius: 18px;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,.18);
}

.product-icon {
  font-size: 38px;
}

.store-product-card h3 {
  color: #fff;
}

.store-product-card p {
  color: #94a3b8;
}

.store-product-card strong {
  display: block;
  color: #22c55e;
  font-size: 26px;
  margin: 18px 0;
}

.store-product-card button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #22c55e;
  color: #fff;
  font-weight: 900;
}

.store-checkout {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 99999;
}

.checkout-card {
  position: relative;
  width: min(460px, 100%);
  padding: 24px;
  border-radius: 20px;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,.2);
}

#close-checkout {
  position: absolute;
  right: 14px;
  top: 14px;
}

.pix-box img {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 18px auto;
}

.pix-box textarea {
  min-height: 120px;
}

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

  .store-hero h1 {
    font-size: 34px;
  }
}
/* LOJA PREMIUM */

.store-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(34,197,94,.20), transparent 32%),
    radial-gradient(circle at 90% 5%, rgba(168,85,247,.14), transparent 28%),
    linear-gradient(180deg, #020617, #050816);
}

.store-header {
  padding: 28px 44px;
  background: rgba(2,6,23,.82);
  border-bottom: 1px solid rgba(148,163,184,.12);
}

.store-hero {
  padding: 70px 44px 55px;
}

.store-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
}

.store-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.store-product-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(34,197,94,.12), transparent 38%),
    linear-gradient(180deg, rgba(15,23,42,.96), rgba(8,13,24,.96));
  border: 1px solid rgba(148,163,184,.18);
  transition: .2s ease;
}

.store-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34,197,94,.45);
  box-shadow: 0 24px 70px rgba(34,197,94,.12);
}

.product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(34,197,94,.12);
  font-size: 34px;
}

.store-product-card h3 {
  margin-top: 22px;
  font-size: 22px;
}

.store-product-card p {
  min-height: 44px;
}

.store-product-card strong {
  font-size: 30px;
}

.store-product-card button {
  min-height: 54px;
  box-shadow: 0 18px 42px rgba(34,197,94,.22);
}

.store-categories button {
  min-height: 50px;
  padding: 0 22px;
}

@media (max-width: 1200px) {
  .store-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .store-header,
  .store-hero,
  .store-categories,
  .store-products {
    padding-left: 18px;
    padding-right: 18px;
  }

  .store-products {
    grid-template-columns: 1fr;
  }
}
.store-highlight {
  max-width: 1280px;
  margin: -38px auto 28px;
  padding: 22px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(34,197,94,.14), rgba(15,23,42,.96));
  border: 1px solid rgba(34,197,94,.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.store-highlight h2 {
  margin: 6px 0;
  font-size: 28px;
}

.store-highlight p {
  margin: 0;
  color: #94a3b8;
}

.store-search-box {
  width: 360px;
  flex-shrink: 0;
}

.store-search-box input {
  width: 100%;
  height: 52px;
  border-radius: 16px;
}

.store-categories,
.store-products {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .store-highlight {
    margin: 0 18px 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .store-search-box {
    width: 100%;
  }
}
.product-tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.14);
  color: #22c55e;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.product-stock {
  display: block;
  color: #94a3b8;
  margin: 10px 0;
  font-weight: 800;
}
.product-tag{
    background: rgba(34,197,94,.15);
    color:#22c55e;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    display:inline-block;
    margin-bottom:15px;
}
.product-stock{
    display:block;
    color:#94a3b8;
    margin:12px 0;
}
.store-product-card button{
    background:linear-gradient(90deg,#22c55e,#16a34a);
    border:none;
    border-radius:15px;
    font-weight:700;
    transition:.3s;
}

.store-product-card button:hover{
    transform:scale(1.03);
}
.store-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin:40px 0;
}

.store-info div{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.07);
    padding:25px;
    border-radius:25px;
}
.store-info {
  max-width: 1280px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.store-info div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(15, 23, 42, .88);
  border: 1px solid rgba(148, 163, 184, .16);
}

.store-info h3 {
  margin: 0 0 8px;
}

.store-info p {
  margin: 0;
  color: #94a3b8;
}

@media (max-width: 760px) {
  .store-info {
    grid-template-columns: 1fr;
    margin: 0 18px 22px;
  }
}
.new-store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  padding: 0 42px;
  background: rgba(3, 7, 18, .96);
  border-bottom: 1px solid rgba(250, 204, 21, .22);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-btn {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(250, 204, 21, .25);
  background: #09090b;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.store-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.store-logo span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(250, 204, 21, .14);
  border: 1px solid rgba(250, 204, 21, .35);
}

.store-logo strong {
  font-size: 22px;
}

.store-top-search {
  flex: 1;
  max-width: 560px;
}

.store-top-search input {
  width: 100%;
  height: 48px;
  border-radius: 18px;
  background: rgba(15, 23, 42, .95);
  border: 1px solid rgba(148, 163, 184, .22);
  color: #fff;
  padding: 0 18px;
}

.store-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #111827;
  font-weight: 900;
  cursor: pointer;
}

.new-store-hero {
  min-height: 420px;
  padding: 80px 42px 120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(250, 204, 21, .18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(34, 197, 94, .12), transparent 28%),
    linear-gradient(135deg, #020617, #09090b 60%, #111827);
  border-bottom: 1px solid rgba(250, 204, 21, .18);
}

.hero-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.new-store-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 7vw, 82px);
  line-height: .95;
  color: #fff;
}

.new-store-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 15px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
}

.primary-hero {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.secondary-hero {
  background: rgba(15, 23, 42, .9);
  color: #fff;
  border: 1px solid rgba(250, 204, 21, .25);
}

.store-highlight {
  margin-top: -70px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}

.store-product-card {
  position: relative;
}

.mobile-menu {
  position: fixed;
  top: 82px;
  left: 12px;
  right: 12px;
  z-index: 99;
  padding: 14px;
  border-radius: 20px;
  background: rgba(3, 7, 18, .98);
  border: 1px solid rgba(250, 204, 21, .24);
  display: grid;
  gap: 10px;
}

.mobile-menu button {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(15,23,42,.94);
  color: #fff;
  font-weight: 900;
}

@media (min-width: 801px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Esconde o botão ☰ no PC */
@media (min-width: 801px) {
  .menu-btn {
    display: none;
  }
}

.orders-page{
max-width:900px;
margin:60px auto;
}

.orders-header{
text-align:center;
margin-bottom:30px;
}

.orders-search{
display:flex;
gap:15px;
margin-bottom:30px;
}

.order-card{
background:#07101f;
border:1px solid rgba(148,163,184,.15);
padding:25px;
border-radius:25px;
margin-bottom:20px;
}

.order-top{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.status{
padding:8px 15px;
border-radius:20px;
font-size:14px;
font-weight:700;
}

.delivered{
background:rgba(34,197,94,.15);
color:#22c55e;
}

.pending{
background:rgba(234,179,8,.15);
color:#eab308;
}

.view-order-btn{
display:inline-block;
margin-top:20px;
}

@media(max-width:800px){

.orders-search{
flex-direction:column;
}

.order-top{
flex-direction:column;
align-items:flex-start;
gap:15px;
}
}
.view-order-btn{
    width:180px;
    margin-top:20px;
}
.view-order-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:180px;
  height:48px;
  margin-top:18px;
  border-radius:14px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  transition:.2s;
}

.view-order-btn:hover{
  transform:translateY(-2px);
}

.order-card{
  background:#07101f;
  border:1px solid rgba(148,163,184,.15);
  border-radius:20px;
  padding:24px;
  margin-bottom:20px;
}

.back-store-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:25px;
  padding:12px 18px;
  border-radius:14px;
  background:#07101f;
  border:1px solid rgba(148,163,184,.15);
  color:white;
  text-decoration:none;
  font-weight:700;
  transition:.2s;
}

.back-store-btn:hover{
  transform:translateY(-2px);
}
.store-checkout {
  overflow-y: auto;
  padding: 24px;
}

.checkout-card {
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.pix-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.pix-box img {
  width: 260px;
  max-width: 100%;
  margin: 10px auto;
}

.pix-box textarea {
  min-height: 95px;
  max-height: 120px;
}

#copy-pix,
#go-order {
  width: 100%;
  min-height: 50px;
}
.pix-box img {
  width: 220px;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}
.pix-box textarea {
  background: #0f172a;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 16px;
  resize: none;
  font-size: 13px;
}
#copy-pix,
#go-order{
  width:100%;
  margin-top:10px;
  height:52px;
  border:none;
  border-radius:14px;
  font-size:16px;
  font-weight:700;
}
.coins-card {
  background: linear-gradient(135deg, rgba(250,204,21,.16), rgba(15,23,42,.95));
  border: 1px solid rgba(250,204,21,.28);
  border-radius: 24px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
}

.coins-card h1 {
  font-size: 46px;
  color: #facc15;
  margin: 8px 0;
}

.coins-card p {
  color: #cbd5e1;
}
.cart-item{
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  margin-bottom:10px;
  background:#111827;
}

#cart-total{
  margin-top:20px;
  text-align:center;
}
@media (max-width: 768px) {
  .store-header,
  .shop-header,
  .top-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .top-actions a,
  .top-actions button {
    white-space: nowrap;
  }

  .cart-button,
  .cart-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: fit-content;
  }
}

.cart-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  min-width: 280px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(250,204,21,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: .25s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast strong {
  display: block;
  color: #facc15;
  font-size: 15px;
  margin-bottom: 4px;
}

.cart-toast span {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
}

.delivery-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.delivery-box h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.delivery-subtitle {
  color: #cbd5e1;
  margin-bottom: 16px;
}

.access-row {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
  display: grid;
  gap: 8px;
}

.access-row span,
.access-full span {
  font-size: 13px;
  color: #94a3b8;
}

.access-row strong {
  word-break: break-all;
  font-size: 15px;
}

.access-row button,
.access-full button {
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  background: #facc15;
  color: #111827;
  font-weight: 800;
  cursor: pointer;
}

.access-full {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px;
}

.access-full pre {
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(0,0,0,0.25);
  padding: 12px;
  border-radius: 12px;
  color: #e5e7eb;
  font-family: inherit;
}

.delivery-alert {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(250,204,21,0.12);
  color: #fde68a;
  font-size: 13px;
}

.pending-delivery {
  background: rgba(250,204,21,0.12);
  color: #fff;
}
.order-detail-page {
  min-height: 100vh;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.order-detail-card {
  width: 100%;
  max-width: 760px;
  margin-top: 34px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}

.order-detail-header {
  text-align: center;
  margin-bottom: 22px;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.order-detail-header h1 {
  margin: 0;
  color: #fff;
  font-size: 28px;
}

.order-detail-header p {
  color: #cbd5e1;
  margin-top: 8px;
}

.order-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.order-summary-item {
  padding: 14px;
  border-radius: 16px;
  background: #07101f;
  border: 1px solid rgba(148,163,184,.18);
}

.order-summary-item span {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 6px;
}

.order-summary-item strong {
  color: #fff;
  font-size: 15px;
}

.delivery-box,
.payment-wait-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(15,23,42,0.96));
  border: 1px solid rgba(34,197,94,0.30);
  color: #fff;
}

.payment-wait-box {
  background: linear-gradient(135deg, rgba(250,204,21,0.12), rgba(15,23,42,0.96));
  border-color: rgba(250,204,21,0.28);
}

.delivery-head h3,
.payment-wait-box h3 {
  margin: 0 0 6px;
}

.delivery-head p,
.payment-wait-box p {
  color: #cbd5e1;
  margin: 0 0 14px;
}

.access-row,
.access-full {
  background: rgba(2,6,23,0.58);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px;
  margin-top: 12px;
}

.access-row span,
.access-full span {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 8px;
}

.access-row strong {
  display: block;
  color: #fff;
  word-break: break-all;
  margin-bottom: 10px;
}

.access-row button,
.access-full button {
  border: none;
  border-radius: 12px;
  padding: 11px 13px;
  background: #facc15;
  color: #111827;
  font-weight: 900;
  cursor: pointer;
}

.access-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.access-full pre {
  white-space: pre-wrap;
  word-break: break-word;
  background: rgba(0,0,0,0.28);
  padding: 14px;
  border-radius: 14px;
  color: #e5e7eb;
  font-family: inherit;
}

.copy-full-btn {
  width: 100%;
}

.delivery-alert {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(250,204,21,0.12);
  color: #fde68a;
  font-size: 13px;
}

.order-actions-bottom {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.order-actions-bottom a {
  text-align: center;
  padding: 13px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
}

.loading-line {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #facc15, transparent);
  animation: loadingMove 1.3s infinite linear;
}

@keyframes loadingMove {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(40%);
  }
}

@media (max-width: 640px) {
  .order-detail-page {
    padding: 14px;
  }

  .order-detail-card {
    margin-top: 12px;
    padding: 18px;
    border-radius: 22px;
  }

  .order-summary-grid {
    grid-template-columns: 1fr;
  }
}
.product-image{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.product-image-box{
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #020617;
}

.product-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   FIX LOJA YELLONBOARD - CATEGORIAS IGUAL MARKETPLACE
   Cole este bloco no FINAL do CSS.
   ========================================================= */

.store-products{
  display:block !important;
  max-width:1280px !important;
  width:100% !important;
  margin:0 auto !important;
  padding:0 42px 50px !important;
}

.store-category-block{
  width:100% !important;
  margin:48px 0 34px !important;
}

.store-category-block h2{
  position:relative;
  display:inline-flex !important;
  align-items:center;
  min-height:46px;
  margin:0 0 22px !important;
  padding:0 32px 0 22px !important;
  background:linear-gradient(135deg,#8b5cf6,#6d28d9) !important;
  color:#fff !important;
  border-radius:8px 22px 22px 8px !important;
  font-size:18px !important;
  font-weight:950 !important;
  letter-spacing:.2px;
  text-transform:uppercase;
  box-shadow:0 12px 32px rgba(124,58,237,.22);
}

.store-category-block h2::after{
  content:"";
  position:absolute;
  left:100%;
  top:50%;
  width:min(760px,65vw);
  height:1px;
  background:linear-gradient(90deg,rgba(139,92,246,.75),transparent);
}

.store-products-grid{
  display:grid !important;
  grid-template-columns:repeat(auto-fill,minmax(235px,1fr)) !important;
  gap:22px !important;
  width:100% !important;
  align-items:stretch !important;
}

.store-product-card{
  width:100% !important;
  min-width:0 !important;
  min-height:auto !important;
  padding:0 0 18px !important;
  overflow:hidden !important;
  border-radius:18px !important;
  background:linear-gradient(180deg,rgba(31,18,48,.96),rgba(18,10,31,.98)) !important;
  border:1px solid rgba(139,92,246,.42) !important;
  box-shadow:0 18px 44px rgba(0,0,0,.30) !important;
}

.store-product-card:hover{
  transform:translateY(-4px) !important;
  border-color:rgba(168,85,247,.85) !important;
  box-shadow:0 24px 70px rgba(124,58,237,.22) !important;
}

.product-image-box{
  width:100% !important;
  height:132px !important;
  margin:0 0 12px !important;
  border-radius:18px 18px 0 0 !important;
  overflow:hidden !important;
  background:#020617 !important;
}

.product-image{
  width:100% !important;
  height:100% !important;
  aspect-ratio:auto !important;
  object-fit:cover !important;
  border-radius:0 !important;
  display:block !important;
}

.product-icon{
  width:100% !important;
  height:132px !important;
  display:grid !important;
  place-items:center !important;
  margin:0 !important;
  border-radius:18px 18px 0 0 !important;
  background:radial-gradient(circle at top,rgba(34,197,94,.18),rgba(15,23,42,.95)) !important;
  font-size:44px !important;
}

.store-product-card .product-tag{
  position:absolute !important;
  top:8px !important;
  left:8px !important;
  z-index:2 !important;
  margin:0 !important;
  padding:5px 10px !important;
  border-radius:999px !important;
  background:#16a34a !important;
  color:#fff !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:950 !important;
  box-shadow:0 8px 18px rgba(0,0,0,.28);
}

.store-product-card h3,
.store-product-card p,
.store-product-card .product-stats,
.store-product-card strong,
.store-product-card button{
  margin-left:14px !important;
  margin-right:14px !important;
}

.store-product-card h3{
  margin-top:10px !important;
  margin-bottom:10px !important;
  min-height:44px !important;
  color:#fff !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
  text-transform:none !important;
  display:-webkit-box;
  line-clamp:2;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.store-product-card p{
  min-height:38px !important;
  margin-top:0 !important;
  margin-bottom:10px !important;
  color:#cbd5e1 !important;
  font-size:13px !important;
  line-height:1.35 !important;
  display:-webkit-box;
  line-clamp:2;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.product-stats{
  display:grid !important;
  gap:4px !important;
  margin-bottom:10px !important;
}

.product-stock{
  display:block !important;
  margin:0 !important;
  color:#dbeafe !important;
  font-size:12px !important;
  font-weight:850 !important;
}

.store-product-card strong{
  display:block !important;
  margin-top:8px !important;
  margin-bottom:14px !important;
  color:#22c55e !important;
  font-size:25px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.store-product-card button{
  width:calc(100% - 28px) !important;
  min-height:46px !important;
  border:0 !important;
  border-radius:12px !important;
  background:linear-gradient(135deg,#8b5cf6,#7c3aed) !important;
  color:#fff !important;
  font-size:14px !important;
  font-weight:950 !important;
  box-shadow:none !important;
}

.store-product-card button:disabled{
  background:linear-gradient(135deg,#16a34a,#15803d) !important;
  opacity:.95 !important;
}

.store-categories{
  max-width:1280px !important;
  margin:0 auto 28px !important;
  padding:0 42px !important;
}

.store-categories button{
  border:1px solid rgba(139,92,246,.35) !important;
  background:rgba(15,23,42,.82) !important;
}

.store-categories button.active{
  background:linear-gradient(135deg,#22c55e,#16a34a) !important;
  border-color:transparent !important;
}

@media (max-width:900px){
  .store-products{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .store-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px !important;
  }

  .product-image-box,
  .product-icon{
    height:120px !important;
  }
}

@media (max-width:520px){
  .store-products-grid{
    grid-template-columns:1fr !important;
  }

  .product-image-box,
  .product-icon{
    height:165px !important;
  }

  .store-category-block h2{
    width:100%;
    justify-content:center;
    font-size:16px !important;
  }

  .store-category-block h2::after{
    display:none;
  }
}
@media (max-width: 800px){
  .store-body{
    overflow-x: hidden !important;
  }

  .new-store-header{
    width: 100% !important;
    overflow: visible !important;
  }

  .store-categories{
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100% !important;
    padding: 10px 14px !important;
    gap: 10px !important;
    scroll-snap-type: x mandatory;
  }

  .store-categories button{
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    min-width: max-content !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }

  .store-products{
    display: block !important;
    width: 100% !important;
    padding: 0 14px 30px !important;
  }

  .store-products-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .store-product-card{
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* =========================================================
   FIX FINAL MOBILE LOJA - YELLONBOARD
   Cole no FINAL do styles.css
   ========================================================= */

@media (max-width: 800px){

  html,
  body,
  .store-body{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
  }

  .new-store-header{
    position:sticky !important;
    top:0 !important;
    z-index:9999 !important;
    width:100% !important;
    height:auto !important;
    min-height:74px !important;
    padding:12px 14px !important;
    display:grid !important;
    grid-template-columns:44px 1fr !important;
    gap:10px !important;
    align-items:center !important;
    overflow:visible !important;
  }

  .menu-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:44px !important;
    height:44px !important;
    flex:0 0 44px !important;
  }

  .store-logo{
    min-width:0 !important;
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
  }

  .store-logo span{
    width:40px !important;
    height:40px !important;
    flex:0 0 40px !important;
  }

  .store-logo strong{
    font-size:18px !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }

  .store-top-search{
    grid-column:1 / -1 !important;
    order:unset !important;
    width:100% !important;
    max-width:100% !important;
    flex:none !important;
    margin:0 !important;
  }

  .store-top-search input{
    width:100% !important;
    height:46px !important;
    margin:0 !important;
    font-size:14px !important;
  }

  .store-actions{
    grid-column:1 / -1 !important;
    order:unset !important;
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    margin:0 !important;
    align-items:center !important;
  }

  .store-login,
  .cart-btn{
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    height:44px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    font-size:13px !important;
    white-space:normal !important;
    line-height:1.1 !important;
    padding:0 10px !important;
    border-radius:14px !important;
  }

  .new-store-hero{
    min-height:auto !important;
    padding:42px 18px 44px !important;
  }

  .hero-content{
    width:100% !important;
    max-width:100% !important;
    text-align:center !important;
  }

  .new-store-hero h1{
    font-size:32px !important;
    line-height:1.02 !important;
    margin:10px 0 12px !important;
    letter-spacing:-1px !important;
  }

  .new-store-hero p{
    font-size:15px !important;
    line-height:1.35 !important;
  }

  .hero-buttons{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    margin-top:22px !important;
  }

  .hero-btn{
    width:100% !important;
    text-align:center !important;
  }

  .store-highlight{
    width:auto !important;
    margin:18px 14px 24px !important;
    padding:18px !important;
    display:block !important;
  }

  .store-highlight h2{
    font-size:22px !important;
    line-height:1.1 !important;
  }

  .store-search-box{
    width:100% !important;
    margin-top:14px !important;
  }

  .store-categories{
    display:flex !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 0 18px !important;
    padding:0 14px 12px !important;
    gap:10px !important;
    -webkit-overflow-scrolling:touch !important;
    scrollbar-width:none !important;
  }

  .store-categories::-webkit-scrollbar{
    display:none !important;
  }

  .store-categories button{
    flex:0 0 auto !important;
    min-width:max-content !important;
    white-space:nowrap !important;
    height:42px !important;
    min-height:42px !important;
    padding:0 14px !important;
    font-size:13px !important;
    border-radius:999px !important;
  }

  .store-products{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 14px 36px !important;
  }

  .store-category-block{
    width:100% !important;
    margin:32px 0 !important;
  }

  .store-category-block h2{
    width:100% !important;
    min-height:44px !important;
    justify-content:center !important;
    text-align:center !important;
    font-size:15px !important;
    padding:0 12px !important;
    margin:0 0 16px !important;
    border-radius:14px !important;
  }

  .store-category-block h2::after{
    display:none !important;
  }

  .store-products-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
    width:100% !important;
  }

  .store-product-card{
    width:100% !important;
    min-width:0 !important;
    max-width:100% !important;
    margin:0 !important;
  }

  .product-image-box,
  .product-icon{
    height:165px !important;
  }

  .cart-toast{
    left:14px !important;
    right:14px !important;
    top:auto !important;
    bottom:18px !important;
    min-width:0 !important;
    max-width:none !important;
    text-align:center !important;
  }
}
.yb-header{
  padding:24px 18px;
  background:#090814;
}

.yb-header-inner{
  max-width:1280px;
  margin:auto;
  height:66px;
  padding:0 24px;
  display:flex;
  align-items:center;
  gap:18px;
  border:1px solid rgba(168,85,247,.25);
  border-radius:18px;
  background:linear-gradient(135deg,#24113f,#171326);
}

.yb-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:white;
  font-weight:900;
  font-size:20px;
}

.yb-logo span{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#6d28d9;
}

.yb-search{
  width:42px;
  height:42px;
  border:0;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:white;
}

.yb-nav{
  display:flex;
  gap:28px;
  margin:auto;
}

.yb-nav a{
  color:#c4b5fd;
  text-decoration:none;
  font-weight:800;
}

.yb-login{
  padding:12px 24px;
  border-radius:999px;
  background:#27272a;
  color:white;
  text-decoration:none;
  font-weight:900;
}

@media(max-width:800px){
  .yb-header-inner{
    height:auto;
    flex-wrap:wrap;
    justify-content:center;
    padding:14px;
  }

  .yb-nav{
    order:3;
    width:100%;
    overflow-x:auto;
    gap:18px;
    justify-content:flex-start;
  }

  .yb-nav a{
    white-space:nowrap;
  }
}
.yb-search-box{
  width:260px;
  height:44px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}

.yb-search-box input{
  width:100%;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  margin:0;
  padding:0;
  font-weight:800;
}

.yb-search-box input::placeholder{
  color:#a1a1aa;
}

@media(max-width:800px){
  .yb-search-box{
    order:3;
    width:100%;
  }
}
.yb-search-box{
  width:260px;
  height:50px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 16px;
  background:#1a1530;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
}

.yb-search-box input{
  background:transparent !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;

  width:100%;
  height:100%;

  color:#fff;
  font-size:16px;
}
@media(max-width:800px){

  .yb-header{
    padding:12px;
  }

  .yb-header-inner{
    height:auto !important;
    padding:18px 14px !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
    text-align:center;
  }

  .yb-logo{
    justify-content:center;
    font-size:22px;
  }

  .cart-btn,
  .yb-login{
    width:100% !important;
    height:52px !important;
    justify-content:center;
  }

  .yb-search-box{
    width:100% !important;
    height:54px !important;
    order:4;
  }

  .yb-nav{
    order:5;
    width:100%;
    display:flex;
    overflow-x:auto;
    gap:22px;
    padding:8px 0 2px;
    scrollbar-width:none;
  }

  .yb-nav::-webkit-scrollbar{
    display:none;
  }

  .yb-nav a{
    flex:0 0 auto;
    white-space:nowrap;
    font-size:15px;
  }

  .new-store-hero{
    padding:50px 20px 70px !important;
  }

  .new-store-hero h1{
    font-size:38px !important;
  }
}
.yb-logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.yb-logo img{
  width:52px;
  height:52px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 0 20px rgba(168,85,247,.35);
}

.yb-logo strong{
  color:#fff;
  font-size:20px;
  font-weight:900;
}
.yelloncoin-section{
  padding:70px 5%;
  max-width:1180px;
  margin:0 auto;
}

.yelloncoin-card{
  background:linear-gradient(135deg,rgba(124,58,237,.25),rgba(236,72,153,.16));
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:45px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.yelloncoin-card h2{
  font-size:42px;
  margin:12px 0;
}

.yelloncoin-card p{
  color:#b9c3d9;
  max-width:650px;
  margin:0 auto 30px;
}

.coin-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:30px 0;
}

.coin-grid div{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:22px;
}

.coin-grid strong{
  display:block;
  font-size:18px;
  margin-bottom:8px;
}

.coin-grid span{
  color:#b9c3d9;
}

.coin-btn{
  border:none;
  background:linear-gradient(135deg,#7c3aed,#ec4899);
  color:white;
  padding:15px 28px;
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(124,58,237,.35);
}

@media(max-width:700px){
  .yelloncoin-section{
    padding:45px 5%;
  }

  .yelloncoin-card{
    padding:30px 20px;
  }

  .coin-grid{
    grid-template-columns:1fr;
  }

  .yelloncoin-card h2{
    font-size:34px;
  }
}
.coin-page-hero{
  min-height:420px;
  padding:90px 5% 60px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.coin-page-hero h1{
  font-size:54px;
  max-width:850px;
  margin-bottom:18px;
}

.coin-page-hero p{
  color:#b9c3d9;
  max-width:700px;
  font-size:18px;
  margin-bottom:30px;
}

.coin-page-grid,
.coin-level-grid{
  max-width:1200px;
  margin:0 auto;
  padding:40px 5%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.coin-page-card,
.coin-level-grid div{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:28px;
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.coin-page-card h3,
.coin-level-grid h3{
  margin-bottom:12px;
}

.coin-page-card p,
.coin-level-grid p{
  color:#b9c3d9;
}

.coin-table-section,
.coin-levels,
.coin-cta{
  max-width:1200px;
  margin:0 auto;
  padding:45px 5%;
  text-align:center;
}

.coin-table-section h2,
.coin-levels h2,
.coin-cta h2{
  font-size:34px;
  margin-bottom:25px;
}

.coin-table{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.coin-table div{
  background:linear-gradient(135deg,rgba(124,58,237,.22),rgba(236,72,153,.14));
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:26px;
}

.coin-table strong{
  display:block;
  font-size:22px;
  margin-bottom:10px;
}

.coin-table span{
  color:#b9c3d9;
}

.coin-level-grid{
  grid-template-columns:repeat(4,1fr);
}

.coin-cta{
  margin-bottom:60px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
}

.coin-cta p{
  color:#b9c3d9;
  margin-bottom:25px;
}

.coin-cta a{
  display:inline-block;
  background:linear-gradient(135deg,#7c3aed,#ec4899);
  color:white;
  padding:15px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
}

@media(max-width:900px){
  .coin-page-grid,
  .coin-table,
  .coin-level-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .coin-page-hero h1{
    font-size:40px;
  }
}

@media(max-width:600px){
  .coin-page-grid,
  .coin-table,
  .coin-level-grid{
    grid-template-columns:1fr;
  }

  .coin-page-hero{
    padding:60px 5% 35px;
  }

  .coin-page-hero h1{
    font-size:32px;
  }
}
.rewards-table{
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}

.rewards-table div{
  min-height:140px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.coin-body{
  background:
    radial-gradient(circle at top left,rgba(34,197,94,.18),transparent 30%),
    radial-gradient(circle at top right,rgba(168,85,247,.25),transparent 35%),
    #050816 !important;
}

.coin-page{
  max-width:1200px;
  margin:0 auto;
  padding:40px 5% 70px;
}

.coin-hero-new{
  text-align:center;
  padding:80px 0 60px;
}

.coin-hero-new span{
  display:inline-block;
  color:#22c55e;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.25);
  padding:10px 20px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:20px;
}

.coin-hero-new h1{
  font-size:56px;
  line-height:1.05;
  margin:0 0 18px;
}

.coin-hero-new p{
  color:#cbd5e1;
  font-size:18px;
  margin-bottom:28px;
}

.coin-hero-new a,
.coin-cta-new a{
  display:inline-block;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;
  padding:15px 28px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
}

.coin-how{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-bottom:55px;
}

.coin-how div,
.reward-row,
.coin-levels-new article,
.coin-cta-new{
  background:rgba(15,23,42,.78);
  border:1px solid rgba(148,163,184,.18);
  border-radius:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.coin-how div{
  padding:26px;
}

.coin-how p,
.coin-levels-new p,
.coin-cta-new p{
  color:#cbd5e1;
}

.coin-rewards h2,
.coin-levels-new h2{
  text-align:center;
  font-size:34px;
  margin-bottom:25px;
}

.reward-list{
  display:grid;
  gap:14px;
}

.reward-row{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:20px;
  align-items:center;
  padding:22px;
}

.reward-row strong{
  font-size:28px;
  color:#facc15;
}

.reward-row small{
  display:block;
  color:#22c55e;
  font-size:13px;
}

.reward-row span{
  font-size:18px;
  font-weight:800;
}

.coin-levels-new{
  margin-top:65px;
}

.coin-levels-new > div{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.coin-levels-new article{
  padding:28px;
  text-align:center;
  font-size:28px;
}

.coin-levels-new b{
  display:block;
  margin-top:12px;
  font-size:22px;
}

.coin-cta-new{
  margin-top:60px;
  padding:45px 25px;
  text-align:center;
}

@media(max-width:800px){
  .coin-hero-new h1{
    font-size:36px;
  }

  .coin-how,
  .coin-levels-new > div{
    grid-template-columns:1fr;
  }

  .reward-row{
    grid-template-columns:1fr;
    text-align:center;
  }
}