/* General Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #fff;
  color: #111;
}

/* Hero Section */
#hero {
  width: 100%;
  height: auto;
}
#hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

/* Centralize Heading */
.centralize {
  text-align: center;
  margin: 2rem 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Shop Section */
#shop {
  padding: 2rem;
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.item-container {
  transition: transform 0.3s ease;
  padding: 0.5rem;
  cursor: pointer;
}
.item-container:hover {
  transform: translateY(-5px);
}
.item-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 20px;
}
.item-container h4 {
  margin: 0.3rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.top-selling {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

/* Lookbook Section */
#lookbook {
  padding: 3rem 2rem;
  background-color: #f4f4f4;
}
.lookbook-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}
.lookbook-left,
.lookbook-right {
  flex: 1;
  min-width: 300px;
}
.lookbook-left h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.lookbook-left h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
}
.lookbook-left img,
.lookbook-right img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 8px;
  object-fit: cover;
}
.lookbook-bottom {
  text-align: center;
  margin-top: 2rem;
}
.lookbook-bottom button {
  padding: 0.8rem 6rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: black;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.lookbook-bottom button:hover {
  background-color: #333;
}

/* Responsive Padding */
@media (max-width: 768px) {
  #shop {
    padding: 1rem;
  }
  .centralize {
    font-size: 1.5rem;
  }
  .lookbook-left h1 {
    font-size: 1.5rem;
  }
}
