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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0B1C2D;
  color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #071524;
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
}

.logo span {
  color: #FFC107;
}

nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  color: #FFC107;
}

.products-section {
  padding: 80px 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.top-bar h1 {
  color: #FFC107;
}

select {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
}

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

.product-card {
  background: #10283F;
  padding: 20px;
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.price {
  color: #FFC107;
  font-weight: bold;
  margin-top: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.9rem;
}

.discount {
  background: #ff3b3b;
  color: #fff;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-top: 5px;
}

.rating {
  font-size: 0.9rem;
  color: #555;
}

.btn-ver {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.btn-ver:hover {
  opacity: 0.85;
}