/* ===================================
   MARKETPLACE PAGE - ASAHUB
   Premium Dark + Gold Theme
=================================== */

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

/* Body */
body {
  font-family: "DM Sans", sans-serif;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #ffffff;
  padding-top: 70px;
  overflow-x: hidden;
}

/* Heading font */
h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
}



/* ================= SECTION ================= */

.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 100px;
}

.section h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

/* ================= SEARCH BOX ================= */

.search-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.search-box:focus-within {
  border-color: #ffc107;
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.search-box i {
  color: #ffc107;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  width: 100%;
  font-size: 14px;
}

/* ================= GRID ================= */

.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ================= CARD ================= */

.card {
  background: #111111;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 193, 7, 0.3);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-price {
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 15px;
}

/* ================= BUTTON ================= */

.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #ffc107;
  color: #000000;
}

.btn-primary:hover {
  background: #e6b005;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 8px 16px;
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ---------- NAVBAR STYLES ---------- */

.navbar-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.navbar-links a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.navbar-links a.active {
  background: rgba(0, 0, 0, 0.15);
}

.navbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar-btn {
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.navbar-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-btn-solid {
  background: #000;
  color: #fff;
}

.navbar-btn-solid:hover {
  background: #333;
}

.navbar-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.

.navbar-logo span {
  color: #000;
}

/* ---------- HERO STYLES ---------- */
.hero h1 {
  text-align: center;
  margin-bottom: 30px;
}