/* ===============================
   RESET
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background:#000 !important;
}

/* ===============================
   GLOBAL BODY + SAFE AREA
================================ */
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #f5d76e;

  /* ✅ IMPORTANT: space for bottom nav + Android/iPhone safe area */
  padding-bottom: calc(env(safe-area-inset-bottom) + 100px) !important;
}

/* Force dark mode everywhere */
@media (prefers-color-scheme: light) {
  html, body {
    background:#000 !important;
    color:#f5d76e !important;
  }
}

/* ===============================
   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;
}

/* ===============================
   PRODUCT GRID
================================ */
.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;
}

/* ===============================
   HEADER
================================ */
.site-header{
  background:#120404;
  border-bottom:2px solid #2a0f0f;
}

/* ===============================
   ✅ FIXED BOTTOM NAV (ANDROID + IOS)
================================ */
.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;

  /* ✅ MOVE UP ABOVE MOBILE MENU */
  bottom: calc(env(safe-area-inset-bottom) + 8px);

  background: #050505;
  display: flex;
  justify-content: space-around;
  align-items: center;

  border-top: 1px solid #222;
  z-index: 9999;

  height: 64px; /* ✅ perfect height */
  backdrop-filter: blur(6px);
}

/* menu item */
.bottom-nav a {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: #f5d76e;
  padding: 6px 0;
  line-height: 1.2;
}

/* icon style (optional if you add icons later) */
.bottom-nav a span {
  display: block;
  font-size: 18px;
}

/* ===============================
   GLOBAL DARK FORCE (ANDROID WEBVIEW SAFE)
================================ */
div, section, main, article, header, footer, nav {
  background-color: transparent !important;
}

.card, .product-card, .container, .site-header {
  background-color: transparent !important;
}
