/* =========================
   Base
========================= */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
  line-height: 1.5;
}

/* =========================
   Layout
========================= */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 32px;
}

/* =========================
   Header
========================= */
header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 32px;
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

.logo {
  height: 42px;
  width: auto;
}

header h1 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #f8fafc;
}

/* =========================
   Products
========================= */
.product {
  margin-bottom: 48px;
}

.product h2 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
  color: #38bdf8;
}

/* =========================
   Grid
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* =========================
   Card
========================= */
.card {
  background: linear-gradient(180deg, #020617, #020617);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #1e293b;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.card img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: #22c55e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.card a:hover {
  text-decoration: underline;
}

/* =========================
   Empty State
========================= */
.empty {
  opacity: 0.55;
  font-size: 14px;
  padding: 12px 0;
}

/* =========================
   Footer
========================= */
.footer {
  background: #020617;
  border-top: 1px solid #1e293b;
  padding: 18px 32px;
  font-size: 12px;
  color: #cbd5f5;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-block {
  max-width: 320px;
  line-height: 1.6;
}

.footer a {
  color: #38bdf8;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  opacity: 0.75;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  main {
    padding: 20px;
  }

  header {
    padding: 16px 20px;
  }

  .footer {
    padding: 16px 20px;
  }
}



/* ===== Footer ===== */
.site-footer {
  margin-top: 60px;
  padding: 20px 30px;
  background: #020617;
  border-top: 1px solid #1e293b;
  font-size: 12px;
  color: #94a3b8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-left {
  font-weight: 500;
}

.footer-right div {
  margin-bottom: 6px;
}

.site-footer a {
  color: #38bdf8;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  opacity: 0.7;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 15px;
  }
}
