* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green:       #2e7d32;
  --green-dark:  #1b5e20;
  --green-light: #e8f5e9;
  --accent:      #f9a825;
  --text:        #212121;
  --muted:       #666;
  --border:      #ddd;
  --white:       #fff;
  --bg:          #f5f5f5;
  --red:         #c62828;
}

body {
  font-family: Georgia, serif;
  background: var(--bg);
  color: var(--text);
}

/* ─── NAV ─── */
nav {
  background: var(--green);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--white);
  padding: 14px 0;
  letter-spacing: 1px;
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  background: transparent;
  border: none;
  color: #c8e6c9;
  font-size: .95rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.cart-link {
  background: var(--accent) !important;
  color: #000 !important;
  font-weight: bold;
}

.cart-link:hover { background: #f57f17 !important; }

#cartCount {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  padding: 1px 6px;
  font-size: .75rem;
  margin-left: 4px;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #388e3c 100%);
  color: white;
  text-align: center;
  padding: 70px 20px 60px;
}

.hero h1 { font-size: 2.4rem; margin-bottom: 12px; }
.hero p {
  font-size: 1.1rem;
  color: #c8e6c9;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: #f57f17; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

.btn-submit {
  width: 100%;
  background: var(--green);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 1.05rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  transition: background .2s;
}
.btn-submit:hover { background: var(--green-dark); }

/* ─── FEATURE CARDS (home) ─── */
.features-section {
  max-width: 900px;
  margin: 36px auto;
  padding: 0 16px;
}
.features-section h2 {
  text-align: center;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.feature-card .icon { font-size: 2.2rem; margin-bottom: 10px; }
.feature-card h4 { color: var(--green-dark); margin-bottom: 6px; }
.feature-card p  { font-size: .85rem; color: var(--muted); }

/* ─── PRODUCTS GRID ─── */
.shop-header {
  background: var(--white);
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.shop-header h2 { color: var(--green-dark); flex: 1; min-width: 120px; }

#searchInput {
  flex: 2;
  min-width: 180px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
}

#categoryFilter {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  cursor: pointer;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  padding: 24px 20px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
}

.product-img {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--green-light);
}

.product-info { padding: 14px; }
.product-info h3 { font-size: 1rem; margin-bottom: 4px; }

.product-info .cat {
  font-size: .78rem;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.product-info .price {
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.product-info .price span { font-size: .8rem; color: var(--muted); font-weight: normal; }
.product-info .desc { font-size: .83rem; color: var(--muted); margin-bottom: 12px; line-height: 1.5; }

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

.btn-cart {
  flex: 1;
  background: var(--green);
  color: white;
  border: none;
  padding: 9px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
  transition: background .2s;
}
.btn-cart:hover { background: var(--green-dark); }

.btn-buy {
  flex: 1;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 9px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: .9rem;
  font-weight: bold;
  transition: background .2s;
}
.btn-buy:hover { background: #f57f17; }

/* ─── CART ─── */
.page-wrap { max-width: 860px; margin: 30px auto; padding: 0 16px; }
.page-wrap h2 { color: var(--green-dark); margin-bottom: 20px; font-size: 1.5rem; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty .big { font-size: 3.5rem; margin-bottom: 14px; }

.cart-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cart-item .ci-img { font-size: 2.4rem; }
.cart-item .ci-info { flex: 1; min-width: 140px; }
.cart-item .ci-info h4 { font-size: .97rem; margin-bottom: 3px; }
.cart-item .ci-info p  { font-size: .82rem; color: var(--muted); }

.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-controls button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .15s;
}
.qty-controls button:hover { background: var(--green-light); }
.qty-controls span { font-weight: bold; min-width: 20px; text-align: center; }

.ci-price { font-weight: bold; color: var(--green-dark); min-width: 70px; text-align: right; }
.ci-remove { background: none; border: none; color: var(--red); font-size: 1.3rem; cursor: pointer; }

.cart-summary {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
  padding: 20px;
  margin-top: 20px;
}
.cart-summary h3 { margin-bottom: 14px; color: var(--green-dark); }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .95rem;
}
.summary-row.total {
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: none;
  margin-top: 8px;
}

.btn-checkout {
  width: 100%;
  margin-top: 16px;
  background: var(--green);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 1.05rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  transition: background .2s;
}
.btn-checkout:hover { background: var(--green-dark); }

/* ─── FORMS ─── */
.form-wrap { max-width: 600px; margin: 30px auto; padding: 0 16px; }
.form-wrap h2 { color: var(--green-dark); margin-bottom: 6px; }
.form-wrap .sub { color: var(--muted); margin-bottom: 22px; font-size: .9rem; }

.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: bold;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-row .form-group { flex: 1; min-width: 140px; }
.form-group textarea { resize: vertical; min-height: 90px; }

.success-msg {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 14px;
  margin-top: 16px;
  text-align: center;
  font-weight: bold;
  display: none;
}

/* ─── MY LISTINGS ─── */
.listing-item {
  background: white;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.listing-item .cat-badge {
  background: var(--green-light);
  color: var(--green);
  font-size: .78rem;
  padding: 2px 8px;
  border-radius: 20px;
}
.listing-item .price-loc { font-size: .85rem; color: var(--muted); }
.btn-remove {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  color: var(--red);
  font-family: inherit;
}

/* ─── ABOUT ─── */
.about-wrap { max-width: 760px; margin: 30px auto; padding: 0 16px; }

.about-hero {
  background: var(--green);
  color: white;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  margin-bottom: 28px;
}
.about-hero h2 { font-size: 1.9rem; margin-bottom: 10px; }
.about-hero p  { color: #c8e6c9; line-height: 1.7; }

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.about-card {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.about-card .icon { font-size: 2.4rem; margin-bottom: 10px; }
.about-card h4 { color: var(--green-dark); margin-bottom: 6px; }
.about-card p  { font-size: .85rem; color: var(--muted); line-height: 1.5; }

.about-team {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.about-team h3 { color: var(--green-dark); margin-bottom: 16px; }

.team-member {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.team-member:last-child { border-bottom: none; }

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  flex-shrink: 0;
}
.team-member .info h4 { font-size: .97rem; }
.team-member .info p  { font-size: .82rem; color: var(--muted); }

/* ─── CONTACT ─── */
.contact-wrap { max-width: 640px; margin: 30px auto; padding: 0 16px; }
.contact-wrap h2 { color: var(--green-dark); margin-bottom: 6px; }
.contact-wrap .sub { color: var(--muted); margin-bottom: 22px; font-size: .9rem; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.ci-box {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 5px rgba(0,0,0,.07);
  text-align: center;
}
.ci-box .icon { font-size: 1.8rem; margin-bottom: 8px; }
.ci-box h4 { font-size: .9rem; color: var(--green-dark); margin-bottom: 4px; }
.ci-box p  { font-size: .82rem; color: var(--muted); }

.contact-sent { display: none; }
.contact-sent .big { font-size: 3rem; text-align: center; margin-bottom: 12px; }
.contact-sent p { text-align: center; color: var(--muted); }

/* ─── ORDER MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.modal h3 { color: var(--green-dark); margin-bottom: 18px; font-size: 1.2rem; }

.modal-actions { display: flex; gap: 10px; margin-top: 20px; }

.btn-cancel {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
}
.btn-place {
  flex: 2;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: var(--green);
  color: white;
  cursor: pointer;
  font-family: inherit;
  font-size: .95rem;
  font-weight: bold;
}
.btn-place:hover { background: var(--green-dark); }

/* ─── TOAST ─── */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 11px 22px;
  border-radius: 24px;
  font-size: .92rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
#toast.show { opacity: 1; }

/* ─── FOOTER ─── */
footer {
  background: var(--green-dark);
  color: #c8e6c9;
  text-align: center;
  padding: 20px;
  font-size: .85rem;
  margin-top: 40px;
}
footer strong { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .hero h1 { font-size: 1.7rem; }
  .logo { font-size: 1.25rem; }
  .nav-links a { padding: 7px 10px; font-size: .85rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }
  .product-img { height: 120px; font-size: 2.8rem; }
}
@media (max-width: 420px) {
  .products-grid { grid-template-columns: 1fr; }
  .cart-item { flex-direction: column; align-items: flex-start; }
}

/* ─── ADMIN PANEL ─── */
.admin-body { background: #f0f2f5; font-family: Georgia, serif; }

/* Login Screen */
.admin-login-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  padding: 20px;
}
.login-box {
  background: white; border-radius: 14px;
  padding: 40px 36px; width: 100%; max-width: 380px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  text-align: center;
}
.login-box .logo-big { font-size: 2rem; font-weight: bold; color: var(--green-dark); margin-bottom: 4px; }
.login-box .logo-big span { color: var(--accent); }
.login-box p { color: var(--muted); font-size: .85rem; margin-bottom: 28px; }
.login-box .form-group { text-align: left; margin-bottom: 16px; }
.login-error {
  background: #ffebee; color: var(--red); border: 1px solid #ef9a9a;
  border-radius: 6px; padding: 10px; font-size: .85rem;
  margin-top: 12px; display: none;
}

/* Admin Layout */
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 220px; background: var(--green-dark); color: white;
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; height: 100vh;
  z-index: 50; transition: transform .3s;
}
.sidebar-logo {
  padding: 22px 20px 16px;
  font-size: 1.3rem; font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.sidebar-logo span { color: var(--accent); }
.sidebar-logo small { display: block; font-size: .72rem; color: #a5d6a7; font-weight: normal; margin-top: 2px; }

.sidebar-nav { flex: 1; padding: 16px 0; }
.sidebar-nav button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; background: none; border: none;
  color: #c8e6c9; padding: 12px 20px;
  font-size: .93rem; cursor: pointer; font-family: inherit;
  transition: background .2s, color .2s;
  text-align: left;
}
.sidebar-nav button:hover { background: rgba(255,255,255,.1); color: white; }
.sidebar-nav button.active { background: rgba(255,255,255,.18); color: white; font-weight: bold; }
.sidebar-nav button .nav-icon { font-size: 1.1rem; width: 22px; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .8rem; color: #a5d6a7;
}
.btn-logout {
  width: 100%; margin-top: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: white; padding: 8px; border-radius: 6px;
  cursor: pointer; font-family: inherit; font-size: .85rem;
  transition: background .2s;
}
.btn-logout:hover { background: rgba(255,255,255,.2); }

.admin-main {
  margin-left: 220px; flex: 1; padding: 28px 24px;
  min-height: 100vh;
}

/* Top bar */
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 10px;
}
.admin-topbar h1 { font-size: 1.4rem; color: var(--green-dark); }
.admin-topbar p  { font-size: .85rem; color: var(--muted); }

/* Stat Cards */
.stat-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px; margin-bottom: 28px;
}
.stat-card {
  background: white; border-radius: 10px;
  padding: 20px 18px; box-shadow: 0 2px 8px rgba(0,0,0,.07);
  border-left: 4px solid var(--green);
}
.stat-card.orange { border-left-color: var(--accent); }
.stat-card.blue   { border-left-color: #1565c0; }
.stat-card.red    { border-left-color: var(--red); }
.stat-card .stat-label { font-size: .8rem; color: var(--muted); margin-bottom: 6px; }
.stat-card .stat-value { font-size: 1.8rem; font-weight: bold; color: var(--text); }
.stat-card .stat-icon  { font-size: 1.4rem; float: right; margin-top: -36px; }

/* Admin Tabs */
.admin-tab { display: none; }
.admin-tab.active { display: block; }

/* Table */
.admin-table-wrap {
  background: white; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07); overflow-x: auto;
}
.admin-table-header {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.admin-table-header h3 { color: var(--green-dark); font-size: 1rem; }

table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--green-light); }
th {
  text-align: left; padding: 11px 14px;
  font-size: .82rem; color: var(--green-dark);
  font-weight: bold; white-space: nowrap;
}
td {
  padding: 11px 14px; font-size: .85rem;
  border-bottom: 1px solid #f5f5f5; vertical-align: top;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafafa; }

.badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 20px; font-size: .75rem; font-weight: bold;
}
.badge-pending  { background: #fff8e1; color: #f57f17; }
.badge-complete { background: var(--green-light); color: var(--green-dark); }
.badge-cancel   { background: #ffebee; color: var(--red); }

.order-items-list { font-size: .8rem; color: var(--muted); margin-top: 3px; }

/* Status dropdown in table */
.status-select {
  padding: 4px 8px; border-radius: 6px;
  border: 1px solid var(--border); font-family: inherit;
  font-size: .82rem; cursor: pointer; background: white;
}

/* Admin search */
.admin-search {
  padding: 8px 12px; border: 1px solid var(--border);
  border-radius: 6px; font-family: inherit; font-size: .88rem;
  min-width: 200px;
}

/* Manage Products */
.product-admin-card {
  background: white; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  padding: 0; overflow: hidden; margin-bottom: 0;
}
.product-admin-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-bottom: 1px solid #f5f5f5;
  flex-wrap: wrap;
}
.product-admin-row:last-child { border-bottom: none; }
.product-admin-row .prod-emoji { font-size: 1.8rem; }
.product-admin-row .prod-info  { flex: 1; min-width: 140px; }
.product-admin-row .prod-info h4 { font-size: .95rem; }
.product-admin-row .prod-info p  { font-size: .8rem; color: var(--muted); }
.prod-price { font-weight: bold; color: var(--green-dark); min-width: 110px; }
.btn-del {
  background: #ffebee; color: var(--red);
  border: none; padding: 7px 14px; border-radius: 6px;
  cursor: pointer; font-family: inherit; font-size: .85rem;
  transition: background .2s;
}
.btn-del:hover { background: #ef9a9a; }

/* Add Product Form */
.add-prod-form {
  background: white; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  padding: 22px; margin-bottom: 20px;
}
.add-prod-form h3 { color: var(--green-dark); margin-bottom: 16px; font-size: 1rem; }

/* Empty state */
.empty-state {
  text-align: center; padding: 50px 20px; color: var(--muted);
}
.empty-state .big { font-size: 3rem; margin-bottom: 12px; }

/* Mobile sidebar toggle */
.sidebar-toggle {
  display: none; position: fixed; top: 14px; left: 14px; z-index: 200;
  background: var(--green-dark); color: white; border: none;
  border-radius: 6px; padding: 8px 12px; font-size: 1.2rem; cursor: pointer;
}

@media (max-width: 720px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 70px 14px 24px; }
  .sidebar-toggle { display: block; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}
