body {
  margin: 0;
  font-family: "Inria Sans", sans-serif;
}

/* === Collections Section === */
.collections-section {
  padding: 50px 0;
  margin-top: 32px;
}

.collections-title {
  color: #121212;
  font-family: "Inria Sans", sans-serif;
  font-size: 15.4px;
  font-weight: 700;
  line-height: 39px;
  margin-bottom: 40px;
  text-transform: uppercase;
  margin-top: 30px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.collection-card {
  position: relative;
}

.collection-image {
  width: 100%;
  display: block;
  border-radius: 7.4px;
}

.collection-overlay {
  position: absolute;
  bottom: 16px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collection-link {
  padding: 13px 35px;
  border-radius: 100px;
  border: 1px solid #000;
  color: #00e;
  text-align: center;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 15.6px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

/* === Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.page-number,
.page-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #121212;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;

  font-family: sans-serif;
  font-size: var(--font-size-14, 14px);
  font-style: normal;
  font-weight: var(--font-weight-500, 500);
  line-height: var(--line-height-22_4, 22.4px); /* 160% */
}

.page-number:hover,
.page-arrow:hover {
  border-color: #121212;
}

.page-number.active {
  background-color: #2e2e2e;
  color: #fff;
  border-color: #2e2e2e;
}

.page-arrow img {
  width: 12px;
  height: 12px;
}

@media (min-width: 767px) {
  .collections-section {
    margin-top: 45px;
  }
}

@media (min-width: 960px) {
  body {
    overflow-x: hidden;
  }

  .collections-section {
    margin-top: 0;
  }

  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) and (max-width: 989px) {
  .collections-title {
    margin-top: 65px;
  }
}
