/* STEZEY SHOP page only */

.shop-page {
  position: relative;
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 70px 0 38px;
  text-align: center;
}


/* Small vertical STEZE.ME signature */

.shop-brand {
  position: absolute;
  top: 24px;
  right: 18px;

  color: #111;
  text-decoration: none;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.73rem;
  font-weight: 400;
  letter-spacing: 0.22em;

  writing-mode: vertical-rl;
  text-orientation: sideways;

  white-space: nowrap;
}


/* Main shop heading */

.shop-header {
  margin-bottom: 68px;
}

.shop-header h1 {
  margin: 0 0 26px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400;

  letter-spacing: 0.18em;
  line-height: 1;

  padding-left: 0.18em;
}

.shop-header p {
  max-width: 720px;
  margin: 0 auto;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.88rem, 1.45vw, 1rem);
  font-weight: 400;

  letter-spacing: 0.08em;
  line-height: 1.8;
}


/* Collections */

.collection {
  margin: 0 0 112px;
}

.collection h2 {
  margin: 0 0 44px;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 400;

  letter-spacing: 0.24em;
  line-height: 1.25;

  padding-left: 0.24em;
}


/* Product grid */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 62px 46px;

  align-items: start;
}

.product-card {
  min-width: 0;
}

.product-card img {
  display: block;

  width: 100%;
  height: auto;

  margin: 0 auto;
}

.product-card h3 {
  margin: 20px 0 0;

  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  font-weight: 400;

  letter-spacing: 0.20em;
  line-height: 1.4;

  padding-left: 0.20em;
}


/* Third Sound Ninja product centered */

.product-card--center {
  grid-column: 1 / -1;

  width: calc(50% - 23px);

  justify-self: center;
}


/* Footer */

.shop-footer {
  margin-top: 24px;
  padding-top: 12px;

  font-family: Arial, Helvetica, sans-serif;
}

.shop-footer > a {
  display: inline-block;

  margin-bottom: 52px;

  color: #111;
  text-decoration: none;

  font-size: 0.92rem;
  letter-spacing: 0.22em;

  padding-left: 0.22em;
}

.shop-footer-copy {
  color: #777;

  font-size: 0.72rem;
  line-height: 1.8;
  letter-spacing: 0.27em;

  padding-left: 0.27em;
}


/* Hover effect */

@media (hover: hover) {

  .product-card img {
    transition: opacity 160ms ease;
  }

  .product-card:hover img {
    opacity: 0.82;
  }
}


/* Mobile */

@media (max-width: 700px) {

  .shop-page {
    width: min(100% - 24px, 1180px);
    padding-top: 58px;
  }

  .shop-brand {
    top: 18px;
    right: 6px;

    font-size: 0.82rem;
  }

  .shop-header {
    margin-bottom: 58px;
  }

  .shop-header h1 {
    margin-bottom: 20px;
  }

  .shop-header p {
    max-width: 390px;
  }

  .collection {
    margin-bottom: 84px;
  }

  .collection h2 {
    margin-bottom: 28px;
  }

  .product-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .product-card--center {
    grid-column: auto;

    width: 100%;
  }

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

  .shop-footer-copy {
    font-size: 0.64rem;
  }
}