/** Shopify CDN: Minification failed

Line 84:56 Unexpected "{"
Line 84:57 Expected identifier but found "%"
Line 223:4 Unexpected "{"
Line 223:5 Expected identifier but found "%"

**/
/* Custom Product Grid */
.custom-collection-grid {
  background: #d9d9d9;
}
.custom-collection-grid .container {
  padding-left: 0;
  padding-right: 0;
}
.custom-collection-grid .card__title {
  text-transform: uppercase
}
.custom-products-grid__container {
  display: flex;
  align-items: stretch;
}
.custom-products-grid__container.media-left {
  flex-direction: row;
  background: #d9d9d9;
  gap: 1px
}
.custom-products-grid__container.media-right {
  flex-direction: row-reverse;
}
.custom-products-grid__media,
.custom-products-grid__products {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.custom-media__visual {
  position: relative;
  width: 100%;
  height: 100%; /* instead of aspect-ratio */
  background: url('{{ section.settings.media_image | img_url: "master" }}') center/cover no-repeat;
}
.custom-media__visual img,
.custom-media__visual video {
  flex: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.custom-media__overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
  text-align: left;
}
.custom-media__heading {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.custom-media__text {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 15px;
}
.custom-media__overlay .button {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
}
/* RIGHT PRODUCTS */
.custom-products-grid__products {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  background: #d9d9d9; /* for internal divider color */ {% endcomment %}
}
.products-grid__first-row {
  list-style: none;
  flex: 1; /* match media height */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #d9d9d9;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0
}
.custom-products-grid__remaining .products-grid__wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; /* this becomes the border */
  background: #d9d9d9; /* border color */
  border: 1px solid #d9d9d9;
}
.products-grid__first-row > li {
  border-top: 1px solid #d9d9d9;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.custom-products-grid__remaining .products-grid__wrapper > li {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.products-grid__first-row > li:last-child {
  border-right: none; /* prevent double border on row end */
}
.products-grid__first-row .collection-product-card {
  background: #fff; /* card white so borders show */
}
.collection-product-card {
  background: #fff;
  display: block;
  height: 100%;
}
.collection-product-card .card-information {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
  height: auto;
}
.collection-product-card .card-information__wrapper:first-of-type {
  display: block;
}
.collection-product-card .card-information__wrapper:first-of-type .card-information-block {
  min-height: auto;
}
.collection-product-card .card-information__wrapper:first-of-type .card-add-to-cart {
  margin-top: 0.75rem;
}
.collection-product-card .card-information__wrapper:first-of-type .add-to-cart-link {
  display: inline-flex;
  /* width: 100%; */
  justify-content: center;
  align-items: center;
  /* padding: 0.65rem 1rem; */
  text-align: center;
}

@media (max-width: 749px) {
  .collection-product-card .card-information__wrapper:first-of-type .card-information-block {
    min-height: calc(1.4em * 2);
  }
}
.custom-products-grid__remaining .collection-product-card--filler {
  background: #fff;
  pointer-events: none;
  min-height: 100%;
}

/* PRODUCTS TOOLBAR */
.custom-products-grid__toolbar {
  background: #fff;
  padding: 1.5rem 2rem;
  margin-bottom: 1px;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.sort-dropdown {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  font-size: 0.875rem;
  color: #333;
  border-radius: 0;
  cursor: pointer;
  min-width: 200px;
}

.sort-dropdown:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.products-toolbar__count {
  font-size: 0.875rem;
  color: #666;
}

.product-count {
  font-weight: 500;
}

@media (max-width: 991px) {
  .custom-products-grid__container {
    flex-direction: column !important;
  }
  .custom-products-grid__media,
  .custom-products-grid__products {
    max-width: 100%;
    height: auto;
  } {% endcomment %}
  .custom-products-grid__container {
    flex-direction: column !important;
  }
  .custom-media__visual {
    height: auto;
    aspect-ratio: 16/9;
    min-height: 250px;
  }
  .custom-media__visual img,
  .custom-media__visual video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .custom-products-grid__media,
  .custom-products-grid__products {
    max-width: 100%;
    flex: none;
  }
  .products-grid__first-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-products-grid__remaining .products-grid__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile toolbar */
  .custom-products-grid__toolbar {
    padding: 1rem;
  }
  
  .products-toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .products-toolbar__sort {
    width: 100%;
    justify-content: space-between;
  }
  
  .sort-dropdown {
    min-width: 150px;
  }
  
  .products-toolbar__count {
    width: 100%;
    text-align: left;
  }
}