* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: #070711;
  color: white;
}

header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  z-index: 10;
  background: rgba(15,15,35,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 15px 18px;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(14px);
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.logo span {
  color: #b86cff;
}

header button {
  background: #1b1b35;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 9px 12px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(184,108,255,0.38), transparent 35%),
    linear-gradient(135deg, #070711, #19062f, #080820);
}

.hero-box {
  max-width: 760px;
  padding: 20px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184,108,255,0.18);
  color: #dab8ff;
}

h1 {
  font-size: 46px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #b86cff, #7b2cff);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 13px 18px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 80px 6%;
}

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

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  background: #17172c;
}

.card-body {
  padding: 16px;
}

.card small {
  color: #c9a4ff;
}

.card p {
  color: #cfcfe0;
}

.price {
  color: #d9b6ff;
  font-weight: bold;
  margin-bottom: 10px;
}

.full {
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 99;
  justify-content: center;
  align-items: center;
  padding: 18px;
}

.modal-box {
  width: 100%;
  max-width: 470px;
  background: #111126;
  border-radius: 20px;
  padding: 20px;
}

.close {
  float: right;
  background: none;
  color: white;
  border: none;
  font-size: 28px;
}

.cart-item {
  background: #1b1b35;
  padding: 12px;
  border-radius: 12px;
  margin-top: 10px;
}

.delete {
  background: #ff3b6b;
  color: white;
  border: none;
  padding: 9px;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 25px;
  color: #aaa;
}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  .section {
    padding: 60px 5%;
  }
}
