:root {
  --brand-900: #4A102A;
  --brand-700: #85193C;
  --brand-500: #C5172E;
  --accent: #FCF259;
  --bg: #0b0b0b;
  --panel: #111111;
  --muted: #9aa4b2;
  --glass: rgba(255,255,255,0.04);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-card {
  background-color: var(--panel);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card .product-info {
  padding: 16px;
}

.product-card .product-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-price {
  font-weight: 700;
  color: var(--brand-500);
  margin-bottom: 4px;
}

.product-card .compare-price {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.875rem;
}

.product-card .product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--accent);
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background-color: var(--brand-500);
  color: white;
}

.badge-accent {
  background-color: var(--accent);
  color: var(--brand-900);
}

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

.btn-primary {
  background-color: var(--brand-500);
  color: white;
}

.btn-primary:hover {
  background-color: var(--brand-700);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--brand-900);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    padding: 0 20px;
  }
}