* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #eaf6ff;
  color: #0a1f44;
}

/* Header */
header {
  background: #0a1f44;
  color: white;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: #38b6ff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #38b6ff, #0a1f44);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero button {
  margin-top: 20px;
  padding: 12px 30px;
  background: white;
  color: #0a1f44;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.hero button:hover {
  background: #0a1f44;
  color: white;
  border: 2px solid white;
}

/* Products */
.products {
  padding: 60px 40px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card button {
  margin-top: 10px;
  background: #38b6ff;
  color: #0a1f44;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.product-card button:hover {
  background: #0a1f44;
  color: white;
}

/* Price styling in orange shades */
.price {
  color: #ff6600;
  font-weight: bold;
}

/* Cart */
.cart-section {
  padding: 60px 40px;
  background: #ffffff;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  padding: 10px;
  background: #ffe6cc; /* light orange background for cart items */
  border-radius: 8px;
}

/* Footer */
footer {
  background: #071633;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Responsive */
@media(max-width: 768px){
  header {
    flex-direction: column;
  }
}