/** Shopify CDN: Minification failed

Line 114:0 Expected "}" to go with "{"

**/
/* Category List Section Styles */
.section-category-list {
  background-color: #fff;
  color: #fff;
}

.category-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

/* Category Items Container */
.category-items-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-item:hover .category-item-image{
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}
/* Category Item */
.category-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #fff;
  display: block;
  transition: transform 0.3s;
}

.category-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.category-item-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(65.01% 67.34% at 0% 100.06%, #020707 0%, rgba(2, 7, 7, 0.83) 25.79%, rgba(2, 7, 7, 0.57) 52.21%, rgba(2, 7, 7, 0.00) 100%);
z-index: 2;
}

.category-item-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-item-title {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.category-item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #020707;
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
  text-transform: lowercase;
}

.category-item-button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media screen and (min-width: 750px) {
  .category-items-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


@media screen and (min-width: 990px) {
  .category-items-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
