/** Shopify CDN: Minification failed

Line 27:0 Unexpected "}"

**/
/* =============================================
   CARPENTER â€” Collection Page
   ============================================= */

body {
  background: #FFFAF1 !important;
}

.carp-collection {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 6rem 8rem;
}

.carp-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 4rem;
  justify-content: start;
}
}

/* ---- Hide Dawn's collection banner ---- */
.collection-hero,
#shopify-section-template--collection-banner {
  display: none;
}

/* ---- Hide header ---- */
.carp-collection__header {
  display: none;
}

/* ---- Grid ---- */
.carp-collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ---- Product card ---- */
.carp-product-card {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.carp-product-card__image-wrap {
  position: relative;
aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #EDE8DF;
}

.carp-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.carp-product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.carp-product-card:hover .carp-product-card__image--primary {
  opacity: 0;
}

.carp-product-card:hover .carp-product-card__image--hover {
  opacity: 1;
}

.carp-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: #EDE8DF;
}

.carp-product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0 1.5rem;
}

.carp-product-card__name {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #2A2218;
}

.carp-product-card__price {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #9C8E7A;
}

/* ---- Pagination ---- */
.carp-collection__pagination {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.carp-pagination__link {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2A2218;
  text-decoration: none;
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 2px;
}

/* ---- Mobile ---- */
@media screen and (max-width: 749px) {
  .carp-collection {
    padding: 2rem 1rem 4rem;
  }

  .carp-collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
}
@media screen and (max-width: 749px) {
  .carp-product-card__image--hover {
    display: none;
  }
}