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

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background:#333;
  color: white;
}

.hero {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 40px 40px;
  margin-top: 100px;
  background-color:beige;
}

.hero-content h1 {
  font-size: 5rem;
  color: #222;
}

.hero-content p {
  margin: 10px 0 20px;
  font-size: 1.4rem;
}

.btn {
  background:#333;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.hero-image img {
 width: 600px;
  height: 400px;
  border-radius: 10px;
 
}

.arrivals {
  text-align: center;
  padding: 60px 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card img {
  width: 100%;
  height: 400px;           /* Set image height */
  object-fit: cover;       /* Keep aspect ratio and crop overflow */
  border-radius: 8px;
}


.product-card h3 {
  margin-top: 10px;
}

.promo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 60px 20px;
  background: #f8f8f8;
}

.promo-card {
  text-align: center;
}

.promo-card img {
  width: 100%;
  height: 500px;           /* Set consistent height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
}
/* Unique backgrounds */
.hat-card {
  background-color: #fff7e6; /* soft yellow/peach */
  
}

.bag-card {
  background-color: #f0e6ff; /* soft purple */
}


.footer {
  text-align: center;
  padding: 30px;
  background: #222;
  color: white;
}
#navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}