/** Shopify CDN: Minification failed

Line 11:0 Unexpected "}"

**/
.category-slider-section .page-width {
  position: relative; /* Needed for positioning the arrows */
  padding: 0 40px; /* Add space on sides for the arrows */
  max-width: none;
}
}

.category-slider-section {
  padding: 40px 0;
}

.category-grid-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

.category-slide-link {
  display: block;
  text-decoration: none;
  color: #333;
  text-align: center;
}

.category-image-wrapper {
  position: relative;
  border-radius: 24px; /* This creates the rounded square look */
  margin-bottom: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-slide-link:hover .category-image-wrapper {
  transform: translateY(-5px);
}

.category-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Makes the image a perfect square */
  object-fit: cover;
}

.category-grid-item-title {
  font-weight: 600;
  font-size: 14px;
}

.category-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: #e11d48;
  color: white;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 12px;
  z-index: 2;
}

/* --- Swiper Arrow Styling --- */
.swiper-button-next,
.swiper-button-prev {
  color: #333; /* Arrow color */
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px; /* Arrow size */
  font-weight: bold;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

@media (max-width: 749px) {
  .category-slider-section .page-width {
    padding: 0 15px; /* Less padding on mobile */
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* Hide arrows on mobile where swiping is natural */
  }
}