/* SHOP PAGE */

body.post-type-archive-product,
body.tax-product_cat {
  background: #050607;
}

.lh-shop-page {
  min-height: 100vh;
  padding: 140px 0 100px;
  background: #050607;
  color: #f4f4f4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.lh-shop-container {
  max-width: 1180px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.lh-shop-label {
  margin-bottom: 18px;
  color: #ff8618;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.lh-shop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.lh-shop-head h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.1em;
  font-weight: 900;
}

.lh-shop-count {
  color: #9da7b8;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lh-shop-hero p {
  max-width: 640px;
  margin: 34px 0 0;
  color: #9da7b8;
  font-size: 15px;
  line-height: 1.8;
}

.lh-shop-products {
  margin-top: 90px;
}

.lh-shop-toolbar {
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid #252a31;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #9da7b8;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lh-shop-toolbar select {
  height: 42px;
  background: #050607;
  color: #f4f4f4;
  border: 1px solid #252a31;
  padding: 0 14px;
  font-family: inherit;
  font-size: 11px;
}

.lh-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #252a31;
  border: 1px solid #252a31;
}

.lh-shop-card {
  background: #050607;
  min-width: 0;
}

.lh-shop-image {
  display: block;
  aspect-ratio: 1 / 1.15;
  background: #0e1114;
  overflow: hidden;
}

.lh-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.lh-shop-card:hover .lh-shop-image img {
  transform: scale(1.04);
}

.lh-shop-card-body {
  padding: 28px;
}

.lh-shop-product-code {
  margin-bottom: 18px;
  color: #ff8618;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.lh-shop-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-transform: uppercase;
}

.lh-shop-card h2 a {
  color: #f4f4f4;
}

.lh-shop-card p {
  min-height: 48px;
  margin: 0 0 22px;
  color: #9da7b8;
  font-size: 13px;
  line-height: 1.6;
}

.lh-shop-price {
  margin-bottom: 28px;
  color: #f4f4f4;
  font-size: 18px;
  font-weight: 900;
}

.lh-shop-actions {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 12px;
}

.lh-shop-more,
.lh-shop-add {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff8618;
  color: #050607 !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: 0.3s;
}

.lh-shop-add {
  font-size: 22px;
  letter-spacing: 0;
}

.lh-shop-more:hover,
.lh-shop-add:hover {
  background: #ff9d3a;
}

.lh-shop-pagination {
  margin-top: 54px;
}

.lh-shop-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.lh-shop-pagination a,
.lh-shop-pagination span {
  width: 42px;
  height: 42px;
  border: 1px solid #252a31;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9da7b8;
  font-size: 11px;
  font-weight: 900;
}

.lh-shop-pagination .current {
  background: #ff8618;
  color: #050607;
}

@media (max-width: 1000px) {
  .lh-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lh-shop-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 640px) {
  .lh-shop-page {
    padding-top: 110px;
  }

  .lh-shop-container {
    width: calc(100% - 32px);
  }

  .lh-shop-head {
    display: block;
  }

  .lh-shop-count {
    margin-top: 18px;
  }

  .lh-shop-grid {
    grid-template-columns: 1fr;
  }

  .lh-shop-toolbar {
    display: block;
  }

  .lh-shop-toolbar > div + div {
    margin-top: 18px;
  }
}