/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080c14;
  --bg2:       #0d1220;
  --card:      #111827;
  --card2:     #161f30;
  --border:    #1e2d45;
  --neon:      #00b4ff;
  --neon2:     #0077cc;
  --neon-glow: rgba(0,180,255,0.15);
  --text:      #e8edf5;
  --subtext:   #7a8fa8;
  --accent:    #00b4ff;
  --orange:    #ff6b2b;
  --green:     #00e676;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Rajdhani', sans-serif; }

a { text-decoration: none; color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon2); border-radius: 3px; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,12,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
#navbar.scrolled { background: rgba(8,12,20,0.98); }

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.logo { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; }
.logo span { color: var(--neon); }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a { padding: 6px 12px; font-size: 0.9rem; color: var(--subtext); border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--neon-glow); }
.btn-nav {
  background: var(--neon) !important; color: #000 !important;
  font-weight: 600 !important; padding: 8px 18px !important;
  border-radius: 6px !important;
}
.btn-nav:hover { background: #33c6ff !important; }

.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.3rem; cursor: pointer; }

.mobile-menu {
  display: none; flex-direction: column; padding: 12px 24px 16px;
  border-top: 1px solid var(--border); gap: 4px;
}
.mobile-menu a { padding: 10px 12px; color: var(--subtext); border-radius: 6px; }
.mobile-menu a:hover { color: var(--text); background: var(--neon-glow); }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,100,200,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,180,255,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #080c14 0%, #0a1020 100%);
}

/* animated grid lines */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,180,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,180,255,0.1);
  border: 1px solid rgba(0,180,255,0.3);
  color: var(--neon);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700; line-height: 1;
  letter-spacing: 4px; margin-bottom: 24px;
}
.hero-content h1 span { color: var(--neon); text-shadow: 0 0 40px rgba(0,180,255,0.5); }

.hero-content p {
  font-size: 1.1rem; color: var(--subtext);
  max-width: 560px; line-height: 1.7; margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.btn-primary {
  background: var(--neon); color: #000;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; letter-spacing: 1px;
  transition: all 0.2s; box-shadow: 0 0 24px rgba(0,180,255,0.3);
}
.btn-primary:hover { background: #33c6ff; box-shadow: 0 0 36px rgba(0,180,255,0.5); transform: translateY(-2px); }

.btn-secondary {
  border: 1px solid var(--border); color: var(--text);
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--neon); color: var(--neon); background: var(--neon-glow); }

.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--neon); }
.stat-lbl { font-size: 0.8rem; color: var(--subtext); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── SECTION COMMON ── */
section { padding: 100px 0; }
.alt-bg { background: var(--bg2); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.section-header h2 span { color: var(--neon); }
.section-header p { color: var(--subtext); font-size: 1rem; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(0,180,255,0.3); transform: translateY(-4px); background: var(--card2); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(0,180,255,0.1); border: 1px solid rgba(0,180,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--neon); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--subtext); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.service-link { color: var(--neon); font-size: 0.9rem; font-weight: 600; transition: gap 0.2s; }
.service-link:hover { text-decoration: underline; }

/* ── ITEMS GRID ── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.item-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.item-card:hover { border-color: rgba(0,180,255,0.4); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,180,255,0.1); }

.item-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--card2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* ── IMAGE PLACEHOLDER ──
   TO REPLACE AN IMAGE:
   1. Find the item by name in items.js
   2. Change the "img" property from "" to your image path
      Example: img: "images/exotics/eagle-bearer.png"
   3. Save items.js — the image will appear automatically
   ─────────────────────── */
.item-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.item-img .placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; padding: 16px; text-align: center;
}
.item-img .placeholder i { font-size: 2rem; color: rgba(0,180,255,0.3); }
.item-img .placeholder span { font-size: 0.7rem; color: var(--subtext); }

.item-type-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(0,0,0,0.7); border: 1px solid var(--border);
  color: var(--neon); font-size: 0.65rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 1px;
}

.item-info { padding: 14px; }
.item-info h4 { font-size: 1rem; margin-bottom: 4px; }
.item-info .item-type { font-size: 0.75rem; color: var(--subtext); margin-bottom: 10px; }
.item-price {
  display: flex; align-items: center; justify-content: space-between;
}
.item-price .price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--neon);
}
.btn-order-item {
  background: rgba(0,180,255,0.1); border: 1px solid rgba(0,180,255,0.3);
  color: var(--neon); padding: 5px 12px; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.btn-order-item:hover { background: var(--neon); color: #000; }

/* ── ACCOUNTS ── */
.accounts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.account-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all 0.3s;
}
.account-card:hover { border-color: rgba(0,180,255,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,180,255,0.1); }

.account-header {
  padding: 20px; background: var(--card2);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.account-header h3 { font-size: 1.2rem; }
.account-badge {
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.3);
  color: var(--green); font-size: 0.7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; text-transform: uppercase;
}
.account-badge.sold { background: rgba(255,50,50,0.1); border-color: rgba(255,50,50,0.3); color: #ff5252; }

.account-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.account-img img { width: 100%; height: 100%; object-fit: cover; }
.account-img .placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.account-img .placeholder i { font-size: 2.5rem; color: rgba(0,180,255,0.2); }
.account-img .placeholder span { font-size: 0.7rem; color: var(--subtext); }

.account-details { padding: 16px; }
.account-features { list-style: none; margin-bottom: 16px; }
.account-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--subtext); padding: 4px 0;
}
.account-features li i { color: var(--neon); font-size: 0.7rem; }

.account-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-top: 1px solid var(--border);
}
.account-price { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--neon); }
.btn-buy {
  background: var(--neon); color: #000;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  border: none; transition: all 0.2s;
}
.btn-buy:hover { background: #33c6ff; transform: translateY(-1px); }
.btn-buy:disabled { background: var(--border); color: var(--subtext); cursor: not-allowed; transform: none; }

/* ── PAYMENT ── */
#payment { background: var(--bg2); }
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.payment-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 24px; text-align: center;
  transition: all 0.3s;
}
.payment-card:hover { border-color: rgba(0,180,255,0.3); transform: translateY(-3px); }
.payment-card i { font-size: 2.5rem; color: var(--neon); margin-bottom: 16px; display: block; }
.payment-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.payment-card p { color: var(--subtext); font-size: 0.85rem; line-height: 1.6; }

/* ── ORDER FORM ── */
#order { background: var(--bg); }
.order-wrapper { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

.order-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--subtext); text-transform: uppercase; letter-spacing: 1px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); padding: 12px 16px; border-radius: 8px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--neon); box-shadow: 0 0 0 3px rgba(0,180,255,0.1); }
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%; padding: 16px;
  background: var(--neon); color: #000;
  border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 700; font-family: 'Rajdhani', sans-serif;
  letter-spacing: 1px; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 0 24px rgba(0,180,255,0.3);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: #33c6ff; box-shadow: 0 0 36px rgba(0,180,255,0.5); transform: translateY(-2px); }

.order-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.info-card i { font-size: 1.3rem; color: var(--neon); margin-bottom: 10px; display: block; }
.info-card h4 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { font-size: 0.85rem; color: var(--subtext); line-height: 1.5; }

.discord-card { border-color: rgba(88,101,242,0.4); }
.discord-card i { color: #5865f2; }
.btn-discord {
  display: inline-block; margin-top: 12px;
  background: #5865f2; color: #fff;
  padding: 8px 20px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}
.btn-discord:hover { background: #4752c4; transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--subtext); font-size: 0.9rem; margin-top: 12px; max-width: 300px; line-height: 1.6; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contact h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--subtext); margin-bottom: 4px; }
.footer-links a, .footer-contact a { color: var(--subtext); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--neon); }
.footer-contact a i { margin-right: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { color: var(--subtext); font-size: 0.8rem; }

/* ── CART BUTTON IN NAV ── */
.cart-btn {
  position: relative; background: rgba(0,180,255,0.1);
  border: 1px solid rgba(0,180,255,0.3); color: var(--neon);
  width: 40px; height: 40px; border-radius: 8px;
  cursor: pointer; font-size: 1rem; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cart-btn:hover { background: rgba(0,180,255,0.2); }
#cartCount {
  position: absolute; top: -6px; right: -6px;
  background: var(--neon); color: #000;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.65rem; font-weight: 700;
  align-items: center; justify-content: center;
}

/* ── OVERLAY ── */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1100;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { display: block; }

/* ── CART SIDEBAR ── */
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; height: 100vh;
  background: var(--card); border-left: 1px solid var(--border);
  z-index: 1200; transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 10px; color: var(--neon); }
.cart-header button { background: none; border: none; color: var(--subtext); font-size: 1.2rem; cursor: pointer; transition: color 0.2s; }
.cart-header button:hover { color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; gap: 12px; color: var(--subtext); }
.cart-empty i { font-size: 2.5rem; opacity: 0.3; }

.cart-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: var(--card2);
  border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px;
}
.cart-item-info { flex: 1; }
.cart-item-name { display: block; font-size: 0.9rem; font-weight: 600; }
.cart-item-type { font-size: 0.75rem; color: var(--subtext); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; }
.cart-item-controls button {
  width: 24px; height: 24px; border-radius: 4px;
  background: var(--border); border: none; color: var(--text);
  cursor: pointer; font-size: 1rem; transition: background 0.2s;
}
.cart-item-controls button:hover { background: var(--neon); color: #000; }
.cart-item-controls span { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; color: var(--neon); min-width: 52px; text-align: right; }
.cart-item-remove { background: none; border: none; color: var(--subtext); cursor: pointer; font-size: 0.85rem; transition: color 0.2s; }
.cart-item-remove:hover { color: var(--red); }

.cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 1.1rem; font-weight: 600; }
.cart-total-row span:last-child { font-family: 'Rajdhani', sans-serif; font-size: 1.4rem; color: var(--neon); }
.btn-checkout {
  width: 100%; padding: 14px; background: var(--neon); color: #000;
  border: none; border-radius: 8px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-checkout:hover { background: #33c6ff; transform: translateY(-1px); }

/* ── CHECKOUT MODAL ── */
.checkout-modal {
  display: none; position: fixed; inset: 0; z-index: 1300;
  align-items: center; justify-content: center; padding: 20px;
}
.checkout-modal.open { display: flex; }

.checkout-inner {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--card); z-index: 1;
}
.checkout-header h3 { font-size: 1.3rem; color: var(--neon); }
.checkout-header button { background: none; border: none; color: var(--subtext); font-size: 1.2rem; cursor: pointer; }
.checkout-header button:hover { color: var(--text); }

.checkout-body { padding: 24px; }
.checkout-body h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--subtext); margin-bottom: 12px; margin-top: 20px; }
.checkout-body h4:first-child { margin-top: 0; }

.checkout-items {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
  color: var(--subtext); white-space: pre-wrap; margin-bottom: 12px;
}
.checkout-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-top: 1px solid var(--border); margin-bottom: 20px;
  font-weight: 600;
}
.checkout-total-price { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; color: var(--neon); }

.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.pay-option {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px; cursor: pointer; transition: all 0.2s;
}
.pay-option:hover { border-color: rgba(0,180,255,0.4); }
.pay-option input { accent-color: var(--neon); }
.pay-option input:checked + span { color: var(--neon); }
.pay-option span { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; }
.pay-option i { font-size: 1.1rem; }

@media (max-width: 480px) {
  .cart-sidebar { width: 100%; right: -100%; }
  .pay-methods { grid-template-columns: 1fr; }
}
/* ── NAV SEARCH ─────────────────────────────────────────────── */
.nav-search-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(0,180,255,0.1);
  padding: 12px 24px 10px;
  position: relative;
}
.nav-search-inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}
.nav-search-inner i.fa-search {
  position: absolute;
  left: 14px;
  color: var(--subtext);
  font-size: 0.9rem;
  pointer-events: none;
}
#globalSearch {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(0,180,255,0.15);
  border-radius: 8px;
  padding: 10px 40px;
  color: var(--text);
  font-size: 0.93rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
#globalSearch:focus { border-color: var(--neon); }
#globalSearch::placeholder { color: var(--subtext); }
#searchClear {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: var(--subtext);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  font-size: 0.85rem;
}
#searchClear:hover { color: var(--text); }
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: var(--card);
  border: 1px solid rgba(0,180,255,0.18);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  z-index: 2000;
  max-height: 380px;
  overflow-y: auto;
}
.search-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.search-dd-item:last-child { border-bottom: none; }
.search-dd-item:hover { background: rgba(0,180,255,0.08); }
.search-dd-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neon);
  background: rgba(0,180,255,0.12);
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-dd-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  flex: 1;
}
.search-dd-type {
  font-size: 0.78rem;
  color: var(--subtext);
  white-space: nowrap;
}
.search-dd-arrow {
  color: var(--subtext);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.search-dd-empty {
  padding: 18px 16px;
  color: var(--subtext);
  font-size: 0.88rem;
  text-align: center;
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover {
  border-color: rgba(0,180,255,0.3);
  transform: translateY(-3px);
}
.review-stars {
  color: #f39c12;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.review-author {
  color: var(--subtext);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-author i { color: #5865f2; }
.btn-write-review {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-write-review:hover { opacity: 0.85; }
.star-picker {
  display: flex;
  gap: 6px;
  margin: 8px 0;
}
.star-picker span {
  font-size: 2rem;
  cursor: pointer;
  color: var(--border);
  transition: color 0.1s;
  line-height: 1;
}
.star-picker span.active { color: #f39c12; }
.btn-delete-review {
  background: none;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  font-size: 0.78rem;
  margin-left: auto;
  padding: 2px 6px;
  opacity: 0.7;
}
.btn-delete-review:hover { opacity: 1; }

/* ── ITEM DETAIL MODAL ──────────────────────────────────────── */
.item-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.75);
}
.item-modal.open { display: flex; }
.item-modal-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(24px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.item-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--card2);
  border: none;
  color: var(--subtext);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  transition: color .2s, background .2s;
}
.item-modal-close:hover { color: var(--text); background: var(--border); }
.item-modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--card2);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.item-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.item-modal-img .placeholder { font-size: 3rem; color: rgba(0,180,255,0.2); }
.item-modal-body { padding: 24px; }
.item-modal-badge {
  display: inline-block;
  background: rgba(0,180,255,0.12);
  color: var(--neon);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.item-modal-body h2 {
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 4px;
}
.item-modal-type {
  color: var(--subtext);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.item-modal-desc {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.85;
}
.item-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.item-modal-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon);
  font-family: 'Rajdhani', sans-serif;
}
.item-modal-buy { margin: 0; padding: 12px 24px; }
.item-card { cursor: pointer; }
.item-card:hover { transform: translateY(-4px); }

.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--card); border: 1px solid var(--neon);
  color: var(--text); padding: 16px 24px; border-radius: 10px;
  font-size: 0.95rem; box-shadow: 0 8px 32px rgba(0,180,255,0.2);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ORDER ID BOX ── */
.order-id-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg); border: 1px solid var(--neon);
  border-radius: 8px; padding: 12px 16px; margin-bottom: 20px;
}
.order-id-box span { font-size: 0.8rem; color: var(--subtext); text-transform: uppercase; letter-spacing: 1px; }
.order-id-box strong { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; color: var(--neon); letter-spacing: 2px; }

/* ── PAYMENT INSTRUCTIONS ── */
.payment-instructions { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.pay-instr-label { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.pay-instr-note { font-size: 0.82rem; color: var(--subtext); margin-top: 12px; }

.wallet-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; margin-top: 8px; word-break: break-all;
}
.wallet-box span { font-family: monospace; font-size: 0.82rem; color: var(--text); flex: 1; }
.btn-copy {
  background: var(--neon2); border: none; color: #fff;
  padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: 0.8rem;
  white-space: nowrap; display: flex; align-items: center; gap: 6px;
}
.btn-copy:hover { background: var(--neon); }

/* ── FILE UPLOAD ── */
.file-upload-area {
  border: 2px dashed var(--border); border-radius: 10px;
  padding: 28px; text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.file-upload-area:hover, .file-upload-area.drag-over {
  border-color: var(--neon); background: rgba(0,180,255,0.05);
}
.file-upload-area i { font-size: 2rem; color: var(--subtext); margin-bottom: 8px; display: block; }
.file-upload-area p { font-size: 0.85rem; color: var(--subtext); }

/* ── BACK BUTTON ── */
.btn-back {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  width: 100%; margin-top: 10px; padding: 10px;
  background: transparent; border: 1px solid var(--border);
  color: var(--subtext); border-radius: 8px; cursor: pointer;
  font-size: 0.9rem; transition: all 0.2s;
}
.btn-back:hover { border-color: var(--neon); color: var(--text); }

/* ── BELL & NOTIFICATIONS ── */
.bell-btn { position: relative; padding: 7px 10px; }
.bell-badge {
  position: absolute; top: 2px; right: 2px;
  background: #e74c3c; color: #fff; border-radius: 50%;
  font-size: 0.65rem; font-weight: 700; min-width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px; pointer-events: none;
}

.notif-panel {
  position: fixed; top: 64px; right: 16px; z-index: 1200;
  width: 340px; background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: none; flex-direction: column; overflow: hidden;
  max-height: 480px;
}
.notif-panel.open { display: flex; }

.notif-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-weight: 600; font-size: 0.95rem;
}
.notif-header i { color: var(--neon); margin-right: 8px; }
.notif-header button {
  background: none; border: none; color: var(--subtext);
  font-size: 0.78rem; cursor: pointer; padding: 4px 8px;
  border-radius: 6px; transition: all 0.2s;
}
.notif-header button:hover { color: var(--neon); background: var(--bg); }

.notif-list { overflow-y: auto; flex: 1; }
.notif-empty { color: var(--subtext); text-align: center; padding: 30px; font-size: 0.88rem; }

.notif-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.15s; position: relative;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { background: var(--bg); }
.notif-unread { background: rgba(0,180,255,0.04); }

.notif-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.95rem;
}
.notif-icon-green { background: rgba(0,230,118,0.15); color: #00e676; }
.notif-icon-blue  { background: rgba(0,180,255,0.15); color: var(--neon); }

.notif-body { flex: 1; }
.notif-body p { font-size: 0.85rem; line-height: 1.4; margin-bottom: 4px; }
.notif-body span { font-size: 0.75rem; color: var(--subtext); }

.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); flex-shrink: 0; margin-top: 4px;
}

/* ── NAV AUTH BUTTONS ── */
.btn-nav-ghost {
  background: transparent; border: 1px solid var(--border);
  color: var(--text); padding: 7px 14px; border-radius: 8px;
  cursor: pointer; font-size: 0.85rem; display: inline-flex;
  align-items: center; gap: 6px; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-nav-ghost:hover { border-color: var(--neon); color: var(--neon); }

/* ── AUTH MODAL ── */
.auth-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: var(--bg); border-radius: 8px; padding: 4px; }
.auth-tab {
  flex: 1; padding: 8px; border: none; border-radius: 6px;
  background: transparent; color: var(--subtext); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; transition: all 0.2s;
}
.auth-tab.active { background: var(--card2); color: var(--text); }
.auth-error { color: #e74c3c; font-size: 0.85rem; margin-bottom: 12px; min-height: 18px; }
.auth-divider { text-align: center; margin: 16px 0; position: relative; }
.auth-divider::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: var(--card); padding: 0 12px; position: relative; color: var(--subtext); font-size: 0.85rem; }
.btn-google {
  width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg); color: var(--text); cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.btn-google:hover { border-color: var(--neon); background: var(--card2); }

/* ── ORDER HISTORY ── */
.oh-empty { color: var(--subtext); text-align: center; padding: 30px 0; }
.oh-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; margin-bottom: 12px;
}
.oh-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.oh-order-id { font-family: 'Rajdhani', sans-serif; font-size: 1rem; color: var(--neon); letter-spacing: 1px; }
.oh-badge { padding: 4px 10px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.badge-pending   { background: rgba(255,107,43,0.15); color: #ff6b2b; border: 1px solid rgba(255,107,43,0.3); }
.badge-confirmed { background: rgba(0,230,118,0.15); color: #00e676; border: 1px solid rgba(0,230,118,0.3); }
.oh-items { list-style: none; font-size: 0.85rem; color: var(--subtext); margin-bottom: 10px; padding: 0; }
.oh-items li { padding: 2px 0; }
.oh-card-footer { display: flex; gap: 16px; font-size: 0.82rem; color: var(--subtext); flex-wrap: wrap; }
.oh-card-footer i { margin-right: 4px; color: var(--neon); }
.oh-total { color: var(--text); font-weight: 600; margin-left: auto; }

.oh-status-note {
  padding: 10px 14px; border-radius: 8px; font-size: 0.83rem;
  margin: 10px 0; display: flex; align-items: flex-start; gap: 8px;
}
.oh-status-note i { margin-top: 2px; flex-shrink: 0; }
.oh-status-note.confirmed { background: rgba(0,230,118,0.1); color: #00e676; border: 1px solid rgba(0,230,118,0.25); }
.oh-status-note.pending   { background: rgba(255,107,43,0.1); color: #ff6b2b; border: 1px solid rgba(255,107,43,0.25); }

/* ── ADMIN CARDS ── */
.admin-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.admin-card-confirmed { border-color: rgba(0,230,118,0.3); }
.admin-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.admin-card-body { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 0.88rem; color: var(--subtext); margin-bottom: 16px; }
.admin-card-body i { color: var(--neon); margin-right: 6px; }
.btn-confirm-order {
  width: 100%; padding: 12px; background: var(--green); border: none;
  border-radius: 8px; color: #fff; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; transition: opacity 0.2s; font-family: 'Inter', sans-serif;
}
.btn-confirm-order:hover { opacity: 0.85; }
.confirmed-label { text-align: center; color: #00e676; font-size: 0.9rem; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .order-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
  .notif-panel { width: 300px; right: 8px; }
}

/* ── TABLET ── */
@media (max-width: 768px) {
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
  .checkout-inner { margin: 0 8px; }
  .item-modal { padding: 12px; }
  .item-modal-inner { max-width: 100%; }
  .item-modal-body { padding: 16px; }
  .item-modal-body h2 { font-size: 1.4rem; }
  .item-modal-footer { flex-direction: column; align-items: stretch; gap: 12px; }
  .item-modal-price { text-align: center; }
  .item-modal-buy { width: 100%; justify-content: center; }
  .hero-content { padding: 60px 16px 40px; }
  .section-header { margin-bottom: 28px; }
  .notif-panel { width: 100%; right: 0; left: 0; border-radius: 0 0 12px 12px; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .items-grid { grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 10px; }
  .item-card .item-info { padding: 10px; }
  .item-card h4 { font-size: 0.85rem; }
  .item-card .item-type { font-size: 0.72rem; }
  .item-card .price { font-size: 0.95rem; }
  .btn-order-item { padding: 5px 8px; font-size: 0.75rem; }
  .checkout-inner { padding: 0; }
  .checkout-body { padding: 16px; }
  .checkout-header { padding: 14px 16px; }
  .order-form { padding: 20px 16px; }
  .hero-content h1 { font-size: clamp(2.2rem, 10vw, 4rem); }
  .hero-content p { font-size: 0.9rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 280px; text-align: center; }
  #globalSearch { font-size: 0.85rem; padding: 9px 36px; }
  .nav-search-bar { padding: 10px 12px 8px; }
  .section-header h2 { font-size: 1.6rem; }
  .pay-methods { grid-template-columns: 1fr; }
  .cart-item { padding: 10px 12px; }
  .cart-item-name { font-size: 0.85rem; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 380px) {
  .items-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .nav-inner { padding: 0 12px; }
  .logo { font-size: 1.1rem; }
  .item-modal-body h2 { font-size: 1.2rem; }
  .payment-grid { grid-template-columns: 1fr; }
  .hero-btns { gap: 8px; }
}

/* ── ADMIN ITEMS TAB ────────────────────────────────────────── */
.admin-tabs {
  display: flex; gap: 8px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border); padding-bottom: 0;
}
.admin-tab {
  background: none; border: none; color: var(--subtext);
  font-size: 0.95rem; font-weight: 600; padding: 10px 18px;
  cursor: pointer; border-bottom: 2px solid transparent;
  transition: all .2s; font-family: 'Rajdhani', sans-serif;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--neon); border-bottom-color: var(--neon); }

.admin-items-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin: 24px 0 16px; flex-wrap: wrap; gap: 12px;
}
.admin-cat-pills {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.cat-pill {
  background: var(--card2); border: 1px solid var(--border);
  color: var(--subtext); font-size: 0.8rem; padding: 5px 12px;
  border-radius: 20px; cursor: pointer; transition: all .2s;
}
.cat-pill:hover { border-color: var(--neon); color: var(--text); }
.cat-pill.active { background: rgba(0,180,255,0.12); border-color: var(--neon); color: var(--neon); }

.btn-seed {
  background: var(--card2); border: 1px solid var(--border);
  color: var(--text); font-size: 0.85rem; padding: 8px 14px;
  border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: all .2s;
}
.btn-seed:hover { border-color: var(--neon); color: var(--neon); }

.btn-add-item {
  background: var(--neon); border: none; color: var(--bg);
  font-size: 0.85rem; font-weight: 600; padding: 8px 14px;
  border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: opacity .2s;
}
.btn-add-item:hover { opacity: 0.85; }

.admin-item-form {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin-bottom: 20px;
}
.admin-item-form h4 {
  font-size: 1.1rem; margin-bottom: 14px; color: var(--text);
}
.admin-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.admin-form-grid .form-group label {
  font-size: 0.8rem; color: var(--subtext); margin-bottom: 4px; display: block;
}
.admin-form-grid .form-group input,
.admin-form-grid .form-group select {
  width: 100%; background: var(--card); border: 1px solid var(--border);
  color: var(--text); padding: 8px 12px; border-radius: 6px;
  font-size: 0.9rem; outline: none; transition: border-color .2s;
}
.admin-form-grid .form-group input:focus,
.admin-form-grid .form-group select:focus {
  border-color: var(--neon);
}

.admin-item-list {
  display: flex; flex-direction: column; gap: 8px;
}
.admin-item-row {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  display: grid; grid-template-columns: 48px 1fr auto auto auto;
  align-items: center; gap: 14px; transition: border-color .2s;
}
.admin-item-row:hover { border-color: rgba(0,180,255,0.3); }

.admin-item-img {
  width: 48px; height: 48px; background: var(--card);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.admin-item-img img { width: 100%; height: 100%; object-fit: cover; }
.admin-item-img i { color: var(--subtext); font-size: 1.2rem; }

.admin-item-info {
  display: flex; flex-direction: column; gap: 2px;
}
.admin-item-name {
  font-weight: 600; font-size: 0.92rem; color: var(--text);
}
.admin-item-type {
  font-size: 0.78rem; color: var(--subtext);
}
.admin-item-cat {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-item-price {
  font-size: 1.1rem; font-weight: 700; color: var(--neon);
  font-family: 'Rajdhani', sans-serif;
}
.admin-item-actions {
  display: flex; gap: 6px;
}
.btn-edit-item, .btn-delete-item {
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 0.75rem; padding: 6px 10px;
  border-radius: 6px; cursor: pointer; display: flex; align-items: center; gap: 4px;
  transition: all .2s;
}
.btn-edit-item:hover { border-color: var(--neon); color: var(--neon); }
.btn-delete-item:hover { border-color: #e74c3c; color: #e74c3c; }

@media (max-width: 768px) {
  .admin-item-row {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
  .admin-item-cat, .admin-item-price {
    grid-column: 2;
  }
  .admin-item-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}
