/** Shopify CDN: Minification failed

Line 21:1 Unexpected "/"

**/
.native-shop-page-item {
  position: relative;
  width: 350px;
  height: 250px;
  overflow: hidden;
  /* background: linear-gradient(to top, #101010, #deae8400); */
  background: black;
  margin: 0 auto;
}

/* /* Focus and active states */
.native-shop-page-item:focus,
.native-shop-page-item:active {
  background: #f5f5f5;
}
*/

/* Image styles */
.native-shop-page-item .category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Hover effect for image */
.native-shop-page-item .category-image:hover {
  transform: scale(1.05);
}

/* Title styles */
.native-shop-page-item .category-title {
  width: inherit;
  position: absolute;
  bottom: -5.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 10px;
  font-size: 16px;
}

/* Aero button styles */
.native-shop-aero {
  float: right;
  margin-top: 4px;
  margin-right: 5px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.native-shop-page-item:hover .native-shop-aero {
  transform: translateX(5px);
}

.collection_heading {
  text-align: center;
  font-size: 40px;
  margin-bottom: 5rem;
  font-weight: 500;

  line-height: 32px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .native-shop-page-item {
    /* background: linear-gradient(to top, #101010, #deae8400); */
  }

  .collection_heading {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .native-shop-page-item {
    max-width: calc(50% - 10px);
    width: calc(100% - 5px);
    margin: 0 5px;
    height: 15vh;
  }

  .native-shop-page-item .category-title {
    bottom: -15px;
    padding: 5px;
    font-size: 11px;
  }

  .native-shop-aero {
    font-size: 10px;
    margin-top: 2.5px;
    margin-right: -2px;
  }
}
