/* ============================================================
   QayGo — Global Styles
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --orange: #f97316;
  --orange-dk: #ea580c;
  --green: #10b981;
  --red: #ef4444;
  --yellow: #f59e0b;

  --bg: #f8fafd;
  --surface: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --subtle: #94a3b8;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);

  --font-head: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --nav-h: 64px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}
input,
select,
textarea {
  font-family: var(--font-body);
  outline: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s;
  background: var(--surface);
  color: var(--text);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange:hover {
  background: var(--orange-dk);
}
.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
}
.btn-ghost:hover {
  background: var(--border);
}
.btn-danger {
  background: var(--red);
  color: #fff;
}
.btn-success {
  background: var(--green);
  color: #fff;
}
.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: var(--radius);
}
.btn-full {
  width: 100%;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--orange);
}
.nav-search {
  flex: 1;
  max-width: 480px;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  padding: 0 16px;
  gap: 8px;
  transition: border-color 0.2s;
}
.nav-search:focus-within {
  border-color: var(--blue);
}
.nav-search input {
  border: none;
  background: transparent;
  padding: 10px 0;
  flex: 1;
  font-size: 14px;
}
.nav-search button {
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.nav-greeting {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.cart-btn {
  position: relative;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
}
.cart-btn:hover {
  background: var(--blue);
  color: #fff;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Section / Container ─────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 56px 0;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.section-link {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}
.section-link:hover {
  text-decoration: underline;
}

/* ── Product Cards ──────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-category {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.product-info {
  padding: 14px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-seller {
  font-size: 12px;
  color: var(--subtle);
  margin-bottom: 10px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}
.btn-add-cart {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-add-cart:hover {
  background: var(--orange-dk);
  transform: scale(1.05);
}

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.badge-warning {
  background: #fef3c7;
  color: #92400e;
}
.badge-info {
  background: #dbeafe;
  color: #1e40af;
}
.badge-primary {
  background: #ede9fe;
  color: #5b21b6;
}
.badge-success {
  background: #d1fae5;
  color: #065f46;
}
.badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

/* ── Auth Forms ──────────────────────────────────────────────── */
 .auth-page {
  position: relative;
  min-height: 100vh;

  background: 
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
    url("https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?auto=format&fit=crop&w=1200&q=80");
    /* url("https://imgs.search.brave.com/FroeKudcmcHLoQTUciG9ekcXHz0rLXqvEYhh0y1MM8Q/rs:fit:500:0:1:0/g:ce/aHR0cHM6Ly9rYXNo/Z2Fpbi5zMy5hbWF6/b25hd3MuY29tL2Fz/c2V0cy9pbWFnZXMv/YmxvZy8yMDI1LTA0/LTAxLzE3NDM1MjE0/MDktbG9jYWwtbWFy/a2V0LmpwZWc"); */


  background-size: cover;
  background-position: center;

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

  
}

.auth-card {
  width: 350px;
  padding: 30px;
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.15);  /* transparent */
  backdrop-filter: blur(10px);            /* glass effect */
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  color: white;
  text-align: center;
}
.auth-logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  text-align: center;
  margin-bottom: 8px;

  
  display: block;
  margin: 0 auto;
  width: 150px;

  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));

}
.auth-logo span {
  color: var(--orange);
}
.auth-subtitle {
  color: #4960d4;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
    color: #ffffff;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}
.auth-footer a {
  color: var(--blue);
  font-weight: 600;
}
.msg {
  font-size: 13px;
  margin-top: 12px;
  display: none;
  padding: 10px 14px;
  border-radius: 8px;
}

/* ── Dashboard Layout ─────────────────────────────────────────── */
.dash-layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 50;
  overflow-y: auto;
}
.sidebar-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  padding: 24px 20px 20px;
}
.sidebar-logo span {
  color: var(--orange);
}
.sidebar-nav {
  flex: 1;
  padding: 8px 12px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
  margin-bottom: 2px;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--blue-light);
  color: var(--blue);
}
.sidebar-nav a svg {
  flex-shrink: 0;
}
.sidebar-nav .nav-section {
  font-size: 11px;
  font-weight: 700;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 12px 6px;
}
.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}
.dash-main {
  margin-left: 240px;
  flex: 1;
}
.dash-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-topbar h1 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
}
.dash-content {
  padding: 32px;
}

/* ── Stat Cards ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon.blue {
  background: var(--blue-light);
  color: var(--blue);
}
.stat-icon.orange {
  background: #fff7ed;
  color: var(--orange);
}
.stat-icon.green {
  background: #ecfdf5;
  color: var(--green);
}
.stat-icon.red {
  background: #fef2f2;
  color: var(--red);
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
}

/* ── Table ───────────────────────────────────────────────────── */
.table-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.table-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-head h2 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
}
table {
  width: 100%;
  border-collapse: collapse;
}
thead th {
  background: var(--bg);
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
tbody td {
  padding: 16px 24px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
tbody tr:hover {
  background: var(--bg);
}
.product-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-mini img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg);
}
.product-mini-name {
  font-weight: 600;
  font-size: 14px;
}
.product-mini-cat {
  font-size: 12px;
  color: var(--subtle);
}

/* ── Filters / Search bar ────────────────────────────────────── */
.filters-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.filter-input {
  max-width: 280px;
}
.filter-select {
  max-width: 160px;
}

/* ── Empty state ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.empty-state svg {
  color: var(--subtle);
}
.empty-state h3 {
  font-family: var(--font-head);
  font-size: 18px;
}
.empty-state p {
  color: var(--muted);
  font-size: 14px;
}

/* ── Cart page ───────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}
.cart-group {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}
.cart-group-header {
  background: var(--bg);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg);
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}
.cart-item-price {
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-head);
}
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.qty-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.qty-num {
  font-weight: 600;
  font-size: 15px;
  min-width: 24px;
  text-align: center;
}
.cart-summary {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  position: sticky;
  top: 84px;
}
.cart-summary h2 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}
.summary-row.total {
  font-weight: 700;
  font-size: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

.nav-logo img {
  width: 150px;
  height: auto;
}

/* ── Footer ──────────────────────────────────────────────────── */
/* footer {
  background: #0F172A; color: #94A3B8; padding: 56px 0 32px;
  margin-top: auto;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.footer-col a { display: block; margin-bottom: 8px; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 24px; text-align: center; font-size: 13px; } */

/* HOMEPAGE FOOTER */

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background-image: url("https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  color: #fff;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.container {
  position: relative;
  z-index: 1;
}

footer .section-header {
  margin-bottom: 24px;
}
footer .section-title {
  color: #fff;
}
footer .section-link {
  color: #94a3b8;
}
footer .section-link:hover {
  color: #fff;
}

.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.3s;
}
footer .section-link:hover::after {
  transform: scaleX(1);
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 1.05em;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 1.25em;
}
li {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 14px;
}
.footer-col a {
  margin-bottom: 8px;
  font-size: 1.05em;
}
.footer-col a:hover {
  color: #1e40af;
  transition: color 0.1s ease;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 50px;
}
.footer-col {
  margin-bottom: 48px;
}
.footer-col:last-child {
  margin-bottom: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
  text-align: center;
  font-size: 13.5px;
  color: #fff;
}
/* ── Loading Spinner ─────────────────────────────────────────── */
.spinner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--blue);
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--surface);
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
}
.modal-close {
  background: var(--bg);
  border-radius: 8px;
  padding: 6px;
  display: flex;
  transition: 0.2s;
}
.modal-close:hover {
  background: var(--border);
}
.modal-body {
  padding: 24px;
}
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ── Image upload ────────────────────────────────────────────── */
.img-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
  background: var(--bg);
}
.img-upload-zone:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.img-upload-zone input[type="file"] {
  display: none;
}
.img-preview {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 10px;
  margin-top: 12px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: 0.3s;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .dash-main {
    margin-left: 0;
  }
  .navbar-inner {
    gap: 12px;
  }
  .nav-search {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .auth-card {
    padding: 28px 20px;
  }
}
.logo-container {
  display: flex;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically (optional) */
  margin-bottom: 20px;
}

.logo-container img {
  width: 150px;
  height: auto;
}

