/* HWID Spoofers hub — duo product cards (flat orange, no shadows, no overlay text) */
.hwid-page {
  padding-bottom: 3rem;
}
.hwid-page-head {
  max-width: 1120px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}
.hwid-page-head h1 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hwid-page-head p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
}

.hwid-duo-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.hwid-duo-grid--single {
  max-width: 520px;
  grid-template-columns: 1fr;
}
@media (max-width: 800px) {
  .hwid-duo-grid {
    grid-template-columns: 1fr;
  }
}

.hwid-card {
  background: linear-gradient(180deg, #18181f 0%, #12121a 100%);
  border: 1px solid rgba(255, 150, 0, 0.55);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
}

.hwid-card-hero {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0e;
}
.hwid-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1) contrast(1.02) brightness(1);
}

.hwid-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
}
.hwid-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.hwid-card-row h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
}
.hwid-price-tag {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: linear-gradient(145deg, #ff8c00 0%, #ff7700 40%, #e86500 100%);
  box-shadow: none;
}
.hwid-from {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hwid-amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0b0b0e;
}

.hwid-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  margin-bottom: 1.1rem;
  box-shadow: none;
}
.hwid-status svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hwid-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(180deg, #2a2a34 0%, #1e1e26 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
/* Same look on hover — no color or shadow shift */
.hwid-buy-btn:hover {
  color: var(--white);
  background: linear-gradient(180deg, #2a2a34 0%, #1e1e26 100%);
  border-color: rgba(255, 255, 255, 0.1);
}
.hwid-buy-btn svg {
  width: 18px;
  height: 18px;
}

.hwid-simple-foot {
  max-width: 1120px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
}
.hwid-simple-foot a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 600;
}
.hwid-simple-foot a:hover {
  text-decoration: underline;
}
