/* ===============================
   RESET
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #f5d76e;
  padding-bottom: 90px;
}

/* ===============================
   TYPOGRAPHY
================================ */
h1 {
  font-size: 26px;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  font-size: 14px;
  color: #c9c9c9;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   LAYOUT
================================ */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 24px;
}

/* ===============================
   DASHBOARD GRID
================================ */
.dashboard-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .dashboard-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   CARD
================================ */
.card {
  background: linear-gradient(180deg, #141414, #0b0b0b);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

/* ===============================
   BUTTON
================================ */
.btn {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  font-weight: bold;
  border-radius: 14px;
  margin-top: 10px;
}

/* ===============================
   PRODUCT GRID (USED EVERYWHERE)
================================ */
.products-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.7);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #000;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 12px;
}

.price {
  font-size: 16px;
  font-weight: bold;
  margin-top: 6px;
}

/* ===============================
   BOTTOM NAV
================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b0b0b;
  display: flex;
  border-top: 1px solid #222;
  z-index: 999;
}

.bottom-nav a {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 13px;
}
