/* ==========================================================================
   SAJILO MART — MINIMAL MONOCHROME (BLACK & WHITE) STOREFRONT
   ========================================================================== */

:root {
  --mart-bg: #07080a;
  --mart-card: #0f1115;
  --mart-card-hover: #16181f;
  --mart-border: rgba(255, 255, 255, 0.1);
  --mart-border-hover: rgba(255, 255, 255, 0.25);
  --mart-text: #ffffff;
  --mart-text-muted: #888d96;
}

body.mart-page {
  background-color: var(--mart-bg);
  color: var(--mart-text);
  font-family: var(--font-sans);
}

.mart-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 1.5rem 0;
  background: rgba(7, 8, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mart-border);
}

.mart-hero {
  padding: 10rem 0 6rem;
  text-align: left;
}

.mart-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.mart-lead {
  font-size: 1.15rem;
  color: var(--mart-text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* Button override for Mart (Black on White) */
.btn-mart-mono {
  background: #ffffff;
  color: #07080a;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-mart-mono:hover {
  background: #e6e6e6;
  transform: translateY(-1px);
}

/* Giveaways / Gear Grids */
.mart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.mart-card {
  background: var(--mart-card);
  border: 1px solid var(--mart-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.mart-card:hover {
  background: var(--mart-card-hover);
  border-color: var(--mart-border-hover);
}

.mart-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.mart-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.mart-card-desc {
  color: var(--mart-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.mart-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--mart-border);
  padding-top: 1.2rem;
}
