@charset "UTF-8";
.shop {
  background: url(../../../images/mountains.svg) no-repeat #fff;
  padding: 9rem 0 6rem;
  background-position: -170px 58px;
}
.shop-top {
  margin: 0 0 2rem;
}
.shop-top-heading {
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.shop-filters {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.shop-filters-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.shop-filters-count {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.shop-filters-categories {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
}
.shop-filters-categories label {
  cursor: pointer;
  padding: 0.625rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(158, 138, 99, 0.2);
}
.shop-filters-categories label:has(input:checked) {
  background-color: var(--accent);
  color: var(--text-light);
  border-color: rgb(158, 138, 99);
}
.shop-filters-categories label:hover {
  border-color: rgb(158, 138, 99);
}
.shop-filters-categories input {
  position: absolute;
  opacity: 0;
}
.shop-filters-item {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.shop-filters-item--square label:before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  width: 16px;
  height: 16px;
  border: 1px solid var(--base-dark);
  border-radius: 3px;
  font-size: 11px;
  text-align: center;
  color: transparent;
  font-weight: 700;
  margin: 4px;
  flex-shrink: 0;
}
.shop-filters-item--square label:has(input:checked):before {
  color: var(--base-dark);
}
.shop-filters-item--circle label:before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  width: 16px;
  height: 16px;
  border: 1px solid var(--base-dark);
  border-radius: 50%;
  font-size: 11px;
  text-align: center;
  color: transparent;
  font-weight: 700;
  margin: 4px;
  flex-shrink: 0;
}
.shop-filters-item--circle label:has(input:checked):after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 8px;
  border-radius: 50%;
  background: var(--base-dark);
}
.shop-filters-item label {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.shop-filters-item label input {
  position: absolute;
  opacity: 0;
}
.shop-filters-btn {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(158, 138, 99, 0.2);
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  flex-shrink: 0;
}
.shop-filters-btn svg {
  flex-shrink: 0;
}
.shop-filters-btn:hover {
  border-color: rgb(158, 138, 99);
}
.shop-filters .shop-filters-categories {
  display: none;
}
.shop-filters label,
.shop-filters input {
  font: inherit;
}
.shop-list {
  margin: 1.5rem auto 0;
  max-width: 416px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.shop-list .shopCard {
  display: flex;
}
.shop .breadcrumbs {
  margin: 1rem 0 1.5rem;
}
@media all and (min-width: 768px) {
  .shop-list {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1024px) {
  .shop-top {
    margin: 0 0 3.5rem;
  }
  .shop-top-heading {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .shop-filters {
    width: 100%;
  }
  .shop-filters-wrapper {
    align-items: start;
    flex-flow: column;
  }
  .shop-filters .shop-filters-categories {
    display: flex;
  }
  .shop-list {
    margin: 3.5rem 0 0;
    gap: 3rem 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .shop .breadcrumbs {
    margin: 1rem 0 2.5rem;
  }
}

.shopPopup {
  top: 0;
  border: 0;
  width: 100%;
  height: 100%;
  max-width: 490px;
  max-height: 100%;
  margin: 0 0 0 auto;
}
.shopPopup::backdrop {
  background: rgba(0, 0, 0, 0.3);
}
.shopPopup-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.shopPopup-top span {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.shopPopup-close {
  cursor: pointer;
}
.shopPopup-close svg {
  width: 24px;
  height: 24px;
}
.shopPopup-close svg path {
  transition: fill 0.3s ease-out;
}
.shopPopup-close:hover svg path {
  fill: var(--accent);
}
.shopPopup-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  max-height: calc(100% - 100px);
}
.shopPopup-content-line {
  width: 100%;
  height: 1px;
  opacity: 0.2;
  background: var(--accent);
  margin: 1.5rem 0;
}
.shopPopup-filter-label {
  display: block;
  margin: 0 0 1rem;
  font-weight: 600;
}
.shopPopup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--base);
  padding: 1rem 1.5rem;
  bottom: 0;
  position: absolute;
  width: 100%;
}
.shopPopup-actions-reset {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media all and (min-width: 1024px) {
  .shopPopup-top {
    margin: 0 0 0.5rem;
  }
  .shopPopup-content {
    padding: 2.5rem 4.5rem;
    gap: 2rem;
  }
  .shopPopup-content-line {
    margin: 2rem 0;
  }
  .shopPopup-filter--category {
    display: none;
  }
  .shopPopup-actions {
    padding: 1rem 4.5rem;
    background: none;
  }
  .shopPopup-actions-reset {
    cursor: pointer;
  }
}

.shopCard {
  display: none;
  flex-flow: column;
  border-radius: 12px;
  aspect-ratio: 327/468;
  position: relative;
  overflow: hidden;
  grid-row: 3;
}
.shopCard:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.shopCard-photo img {
  position: absolute;
  z-index: 0;
}
.shopCard-content {
  display: flex;
  flex-flow: column;
  gap: 0.75rem;
  align-items: center;
  background: rgba(45, 56, 56, 0.75);
  margin: auto 0 0;
  position: relative;
  z-index: 2;
  padding: 1rem 1.5rem;
  color: var(--text-light);
  text-align: center;
}
.shopCard-content span {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
}
.shopCard-content p {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media all and (min-width: 768px) {
  .shopCard {
    grid-column: 2;
    grid-row: 2;
  }
}
@media all and (min-width: 1024px) {
  .shopCard {
    aspect-ratio: auto;
    grid-column: 3;
    grid-row: 2;
  }
  .shopCard:before {
    content: none;
  }
  .shopCard-photo img {
    aspect-ratio: 1.2;
    position: static;
  }
  .shopCard-content {
    padding: 2rem 1.5rem;
    background: var(--base-dark);
    margin: 0;
    height: 100%;
  }
  .shopCard-content span {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .shopCard-content p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}/*# sourceMappingURL=shop.css.map */