* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #00aaff;
  --blue2: #1769ff;
  --bg: #031a31;
  --panel: #072844;
  --text: #eef8ff;
  --muted: #91adbf;
  --danger: #ff4568;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Tahoma, Arial, sans-serif;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(0, 190, 255, 0.24),
      transparent 30%
    ),
    radial-gradient(circle at 85% 80%, rgba(0, 90, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #031a31, #062b4b, #021426);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 17, 32, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 180, 255, 0.2);
}
.navbar {
  max-width: 1400px;
  min-height: 78px;
  margin: auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo {
  min-width: 100px;
  height: 46px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 0 14px var(--blue);
  box-shadow: 0 0 18px rgba(0, 174, 255, 0.35);
}
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}
.menu a {
  padding: 11px 13px;
  color: #a9c4d5;
  font-size: 11px;
  border-radius: 10px;
  transition: 0.25s;
}
.menu a:hover,
.menu a.active {
  color: #fff;
  background: rgba(0, 160, 255, 0.09);
}
.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(0, 20, 40, 0.7);
  border: 1px solid rgba(0, 174, 255, 0.2);
  border-radius: 10px;
}
.lang button {
  border: 0;
  padding: 8px 10px;
  border-radius: 7px;
  color: #7897aa;
  background: transparent;
  font-size: 9px;
}
.lang button.active {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
}
.cart-btn,
.mobile-btn {
  border: 1px solid rgba(0, 174, 255, 0.2);
  background: rgba(0, 100, 180, 0.08);
  color: #fff;
  border-radius: 10px;
}
.cart-btn {
  width: 44px;
  height: 44px;
  position: relative;
}
.cart-count {
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--danger);
  border-radius: 50%;
  min-width: 19px;
  height: 19px;
  font-size: 9px;
  display: grid;
  place-items: center;
}
.mobile-btn {
  display: none;
  width: 42px;
  height: 42px;
}
.hero {
  min-height: 440px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 20px;
  position: relative;
}
.hero-content {
  max-width: 850px;
}
.eyebrow {
  color: #00c0ff;
  font-size: 10px;
  letter-spacing: 3px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  margin: 15px 0;
  line-height: 1.05;
}
.hero h1 span {
  color: var(--blue);
}
.hero p {
  max-width: 680px;
  margin: 0 auto 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}
.primary {
  border: 0;
  border-radius: 11px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-size: 10px;
  box-shadow: 0 10px 35px rgba(0, 130, 255, 0.25);
  transition: 0.25s;
}
.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(0, 150, 255, 0.4);
}
.container {
  max-width: 1300px;
  margin: auto;
  padding: 25px;
}
.section-title {
  text-align: center;
  margin: 25px 0 40px;
}
.section-title span {
  color: #00baff;
  font-size: 9px;
  letter-spacing: 3px;
}
.section-title h2 {
  font-size: 32px;
  margin: 10px 0;
}
.section-title p {
  color: var(--muted);
  font-size: 11px;
}
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cat {
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(0, 174, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(9, 46, 75, 0.9),
    rgba(3, 18, 33, 0.95)
  );
  transition: 0.3s;
}
.cat:hover {
  transform: translateY(-7px);
  border-color: var(--blue);
}
.cat .icon {
  font-size: 38px;
  margin-bottom: 14px;
}
.cat h3 {
  font-size: 16px;
}
.cat p {
  color: var(--muted);
  font-size: 10px;
  margin: 9px 0 18px;
  line-height: 1.9;
}
.tools {
  display: flex;
  gap: 10px;
  margin: 0 auto 30px;
  max-width: 1100px;
  padding: 18px;
  background: rgba(3, 25, 45, 0.82);
  border: 1px solid rgba(0, 174, 255, 0.18);
  border-radius: 18px;
}
.tools input,
.tools select,
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: 1px solid rgba(0, 174, 255, 0.18);
  outline: 0;
  background: rgba(0, 10, 25, 0.75);
  color: #fff;
  font-size: 10px;
}
.tools select {
  max-width: 180px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  overflow: hidden;
  border: 1px solid rgba(0, 174, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(9, 46, 75, 0.95),
    rgba(3, 18, 33, 0.98)
  );
  transition: 0.35s;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 55px rgba(0, 150, 255, 0.17);
}
.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #06223a;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.card:hover img {
  transform: scale(1.07);
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 160, 255, 0.9);
  padding: 7px 10px;
  border-radius: 20px;
  font-size: 8px;
}
.card-body {
  padding: 21px;
}
.category {
  color: #00aaff;
  font-size: 8px;
}
.card h3 {
  font-size: 18px;
  margin: 9px 0;
}
.card p {
  color: var(--muted);
  font-size: 10px;
  line-height: 2;
  min-height: 56px;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}
.price {
  font-weight: bold;
  font-size: 11px;
}
.btn-small {
  border: 0;
  padding: 10px 13px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
  font-size: 9px;
}
.cart {
  margin: 70px auto;
  max-width: 1200px;
  padding: 25px;
  border-radius: 22px;
  background: rgba(3, 23, 42, 0.9);
  border: 1px solid rgba(0, 174, 255, 0.2);
}
.cart-head,
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-head {
  margin-bottom: 18px;
}
.cart-head span,
.muted {
  color: var(--muted);
  font-size: 10px;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 15px;
  padding: 14px;
  margin: 8px 0;
  border-radius: 11px;
  background: rgba(0, 100, 180, 0.06);
}
.qty {
  display: flex;
  gap: 8px;
  align-items: center;
}
.qty button,
.remove {
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(0, 150, 255, 0.12);
  color: #fff;
}
.remove {
  background: rgba(255, 50, 80, 0.1);
  color: #ff466b;
}
.cart-total {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  margin-top: 20px;
}
.checkout {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 25px;
  padding-top: 25px;
}
.checkout.show {
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form.full {
  grid-column: 1/-1;
}
.form label {
  display: block;
  color: #7896a8;
  font-size: 9px;
  margin-bottom: 7px;
}
footer {
  margin-top: 80px;
  padding: 55px 7% 22px;
  background: linear-gradient(180deg, #04192c, #010b15);
  border-top: 1px solid rgba(0, 174, 255, 0.18);
}
.footer-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer h3 {
  font-size: 15px;
  margin-bottom: 15px;
}
.footer p,
.footer a,
.contact {
  display: block;
  color: #7f9caf;
  font-size: 10px;
  line-height: 2;
  margin-bottom: 8px;
}
.footer strong {
  color: var(--blue);
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 18px;
  margin-top: 35px;
  color: #577083;
  font-size: 9px;
}
.admin-wrap {
  max-width: 1350px;
  margin: auto;
  padding: 35px 25px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.stat {
  padding: 22px;
  border: 1px solid rgba(0, 174, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 35, 58, 0.8);
}
.stat span {
  color: var(--muted);
  font-size: 9px;
}
.stat strong {
  display: block;
  font-size: 25px;
  margin-top: 10px;
}
.admin-panel {
  margin-top: 25px;
  padding: 22px;
  border: 1px solid rgba(0, 174, 255, 0.18);
  border-radius: 18px;
  background: rgba(3, 23, 42, 0.9);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.admin-table th,
.admin-table td {
  text-align: right;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.status {
  color: #36d991;
}
.toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 5000;
  background: #06233b;
  border: 1px solid var(--blue);
  border-radius: 11px;
  padding: 13px 18px;
  font-size: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: 0.3s;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.laptop-clock {
  max-width: 800px;
  margin: 60px auto;
  padding: 18px 18px 0;
  background: linear-gradient(145deg, #b8c4ce, #263746);
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.screen {
  background: #020d18;
  border: 8px solid #152534;
  border-radius: 10px;
  min-height: 250px;
  display: grid;
  place-items: center;
  text-align: center;
}
.time {
  font-size: clamp(40px, 8vw, 70px);
  color: #00c0ff;
  text-shadow: 0 0 25px #00aaff;
}
.date {
  color: #a9c7d8;
  margin-top: 10px;
  font-size: 12px;
}
.base {
  height: 22px;
  margin: 14px -18px 0;
  background: linear-gradient(#6f7d87, #35434d);
  border-radius: 0 0 12px 12px;
}
@media (max-width: 950px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu a {
    padding: 9px 8px;
  }
  .navbar {
    padding: 0 15px;
  }
}
@media (max-width: 700px) {
  .mobile-btn {
    display: block;
  }
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    right: 12px;
    left: 12px;
    padding: 12px;
    flex-direction: column;
    background: rgba(3, 24, 43, 0.98);
    border: 1px solid rgba(0, 174, 255, 0.2);
    border-radius: 15px;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    text-align: center;
  }
  .lang {
    display: none;
  }
  .tools {
    flex-direction: column;
  }
  .tools select {
    max-width: none;
  }
  .grid,
  .categories {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 1fr auto;
  }
  .cart-total {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form.full {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero {
    min-height: 390px;
  }
  .hero h1 {
    font-size: 40px;
  }
}

/* ===== INTEL STORE UPGRADE: AUTH / DASHBOARD / THEME ===== */
.theme-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 174, 255, 0.22);
  border-radius: 10px;
  background: rgba(0, 100, 180, 0.08);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 0 14px rgba(0, 174, 255, 0.08);
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-user {
  font-size: 10px;
  color: #a9c4d5;
}
.logout-btn,
.ghost-btn {
  border: 1px solid rgba(0, 174, 255, 0.2);
  background: rgba(0, 100, 180, 0.08);
  color: #dff6ff;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 9px;
}
.ghost-btn:hover,
.logout-btn:hover {
  border-color: var(--blue);
  background: rgba(0, 174, 255, 0.12);
}
html[data-theme="light"] {
  --bg: #edf6fb;
  --panel: #fff;
  --text: #10263a;
  --muted: #617b8d;
  --blue: #007dff;
  --blue2: #00a9d9;
}
html[data-theme="light"] body {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(0, 170, 255, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, #f5fbff, #e7f3f9);
  color: var(--text);
}
html[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 100, 180, 0.15);
}
html[data-theme="light"] .menu a {
  color: #557084;
}
html[data-theme="light"] .cart,
html[data-theme="light"] .admin-panel,
html[data-theme="light"] .stat {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 100, 180, 0.14);
}
html[data-theme="light"] footer {
  background: linear-gradient(180deg, #eef7fb, #dcecf4);
}
html[data-theme="light"] .cart-item {
  background: rgba(0, 100, 180, 0.05);
}
.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(0, 174, 255, 0.18),
      transparent 38%
    ),
    linear-gradient(135deg, #021527, #06345a);
}
.login-shell {
  width: min(470px, 100%);
}
.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.login-brand .logo {
  min-width: 82px;
  height: 42px;
  font-size: 21px;
}
.login-brand span {
  font-size: 10px;
  letter-spacing: 4px;
  color: #6c9bb5;
}
.login-card {
  padding: 35px;
  border: 1px solid rgba(0, 174, 255, 0.25);
  border-radius: 26px;
  background: rgba(3, 24, 43, 0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.login-icon {
  font-size: 38px;
  margin-bottom: 15px;
}
.login-card h1 {
  font-size: 27px;
  margin: 10px 0;
}
.login-card p {
  color: var(--muted);
  font-size: 10px;
  line-height: 2;
  margin-bottom: 25px;
}
.login-card label {
  display: block;
  color: #8ca8b8;
  font-size: 10px;
  margin: 13px 0 7px;
}
.login-card input {
  width: 100%;
  border: 1px solid rgba(0, 174, 255, 0.18);
  background: rgba(0, 20, 38, 0.7);
  color: #fff;
  border-radius: 11px;
  padding: 13px;
  outline: none;
}
.login-card input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 174, 255, 0.08);
}
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.remember {
  display: flex !important;
  align-items: center;
  gap: 7px;
  margin: 0 !important;
  white-space: nowrap;
}
.remember input {
  width: auto;
}
.login-error {
  min-height: 20px;
  color: #ff617c;
  font-size: 10px;
  margin-top: 10px;
}
.login-error:not(.show) {
  visibility: hidden;
}
.demo-note {
  margin-top: 18px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 174, 255, 0.06);
  color: #7696a9;
  font-size: 9px;
  line-height: 2;
}
.demo-note strong {
  color: #9fdfff;
}
.back-home {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #7ea4b9;
  font-size: 10px;
}
.admin-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}
.admin-top h1 {
  font-size: 32px;
  margin: 8px 0;
}
.admin-top p {
  color: var(--muted);
  font-size: 10px;
}
.stats {
  grid-template-columns: repeat(2, 1fr);
}
.stat small {
  display: block;
  color: #668598;
  font-size: 8px;
  margin-top: 7px;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.panel-head span {
  font-size: 8px;
  letter-spacing: 2px;
  color: #4f8aa8;
}
.panel-head h2 {
  font-size: 17px;
  margin-top: 5px;
}
.panel-head select {
  border: 1px solid rgba(0, 174, 255, 0.18);
  background: rgba(0, 50, 80, 0.35);
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  font-size: 9px;
}
.bar-chart {
  height: 250px;
  display: flex;
  align-items: end;
  gap: 7px;
  overflow: hidden;
  padding-top: 10px;
}
.bar-col {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 6px;
  min-width: 16px;
}
.bar {
  width: min(25px, 80%);
  min-height: 4px;
  background: linear-gradient(180deg, #00c5ff, #1769ff);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 0 16px rgba(0, 174, 255, 0.25);
}
.bar-value {
  font-size: 7px;
  color: #6f9aae;
  min-height: 10px;
}
.bar-col small {
  font-size: 7px;
  color: #67899b;
}
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 250px;
  overflow: auto;
}
.order-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(0, 120, 190, 0.06);
  font-size: 9px;
}
.order-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.order-row span {
  color: var(--muted);
  font-size: 8px;
}
.order-row strong {
  font-size: 9px;
}
.order-row em {
  font-style: normal;
  color: #36d991;
  background: rgba(54, 217, 145, 0.08);
  padding: 5px 7px;
  border-radius: 7px;
  font-size: 7px;
}
.empty {
  color: var(--muted);
  font-size: 10px;
  text-align: center;
  padding: 35px;
}
.users-panel {
  margin-top: 20px;
}
.table-wrap {
  overflow: auto;
}
.status-pill {
  border: 0;
  border-radius: 20px;
  padding: 6px 11px;
  background: rgba(54, 217, 145, 0.1);
  color: #36d991;
  font-size: 8px;
}
.status-pill.off {
  background: rgba(255, 69, 104, 0.1);
  color: #ff5877;
}
.icon-btn {
  border: 0;
  background: rgba(0, 150, 255, 0.08);
  border-radius: 7px;
  padding: 7px;
}
.icon-btn.danger {
  background: rgba(255, 60, 90, 0.08);
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.system-grid div {
  padding: 15px;
  border-radius: 11px;
  background: rgba(0, 100, 180, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 9px;
}
.online {
  color: #36d991;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 20, 0.72);
  backdrop-filter: blur(8px);
  z-index: 5000;
  place-items: center;
  padding: 20px;
}
.modal.show {
  display: grid;
}
.modal-card {
  width: min(480px, 100%);
  position: relative;
  padding: 30px;
  border-radius: 22px;
  background: #06233b;
  border: 1px solid rgba(0, 174, 255, 0.25);
}
.modal-card h2 {
  margin: 8px 0 20px;
}
.modal-card label {
  display: block;
  color: #83a3b6;
  font-size: 9px;
  margin: 10px 0 6px;
}
.modal-card input,
.modal-card select {
  width: 100%;
  padding: 11px;
  border-radius: 9px;
  border: 1px solid rgba(0, 174, 255, 0.18);
  background: #031b2f;
  color: #fff;
}
.modal-card .primary {
  margin-top: 18px;
  width: 100%;
}
.modal-close {
  position: absolute;
  left: 15px;
  top: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 25px;
}
@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .system-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .admin-actions .admin-user {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .system-grid {
    grid-template-columns: 1fr;
  }
  .login-card {
    padding: 25px;
  }
  .login-row {
    align-items: stretch;
    flex-direction: column;
  }
  .bar-chart {
    gap: 3px;
  }
  .order-row {
    grid-template-columns: 1fr;
  }
  .order-row strong,
  .order-row em {
    justify-self: start;
  }
}
/* =========================================
   FULL WIDTH ADMIN SECTIONS
========================================= */

.products-panel,
.users-panel,
.orders-panel {
  width: 100%;
  grid-column: 1 / -1;
}

/* =========================================
   ORDERS
========================================= */

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 20px;

  border: 1px solid rgba(128, 128, 128, 0.15);

  border-radius: 14px;

  background: rgba(128, 128, 128, 0.04);

  transition: 0.2s ease;
}

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

/* سمت راست سفارش */

.order-main {
  display: flex;
  align-items: center;
  gap: 14px;

  min-width: 220px;
}

.order-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(128, 128, 128, 0.1);

  font-size: 22px;
}

.order-main strong {
  display: block;

  font-size: 15px;

  margin-bottom: 5px;
}

.order-main span {
  display: block;

  font-size: 12px;

  opacity: 0.55;
}

/* محصول */

.order-products {
  display: flex;
  align-items: center;
  gap: 8px;

  flex: 1;
}

.order-products span {
  font-size: 14px;
}

.order-products small {
  opacity: 0.5;
}

/* قیمت */

.order-price {
  display: flex;
  align-items: center;
  gap: 14px;

  white-space: nowrap;
}

.order-price strong {
  font-size: 14px;
}

/* موبایل */

@media (max-width: 700px) {
  .order-item {
    flex-direction: column;
    align-items: stretch;
  }

  .order-main {
    min-width: 0;
  }

  .order-products {
    padding-right: 62px;
  }

  .order-price {
    padding-right: 62px;
    justify-content: space-between;
  }
}
