/* ===== CONTAINER ===== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== SECTION SPACING ===== */

section {
  padding: 110px 0;
}

/* ===== NAVBAR STRUCTURE ===== */

.navbar {
  background: var(--light-grey);
  border-bottom: 1px solid var(--border-grey);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.nav-links {
  display: flex;
  gap: 45px;
}

.nav-icons {
  display: flex;
  gap: 28px;
}

/* ===== COLLECTION GRID ===== */

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== PRODUCT GRID ===== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}