.collection-showcase-wrapper .column-wrapper {
  --_column-row-spacer: 2rem;
}
.collection-showcase-wrapper .collection-showcase-header {
  display: flex;
  flex-direction: column;
  column-gap: calc(3rem * var(--body-scale));
  row-gap: calc(2rem * var(--body-scale));
  margin-bottom: calc(2rem * var(--body-scale));
}
.collection-showcase-wrapper .collection_swiper-nav-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-left: auto;
  color: rgb(var(--text-color));
  text-align: center;
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.8px;
}
.collection-showcase-wrapper .collection_swiper-nav-action:has(.swiper-button-lock){
  display: none;
}
.collection-showcase-wrapper .collection_swiper-nav-action .collection_swiper-button-prev,
.collection-showcase-wrapper .collection_swiper-nav-action .collection_swiper-button-next,
.collection-showcase-wrapper .collection_swiper-nav-action .collection_swiper-pagination {
  padding: 10px;
  cursor: pointer;
}
.collection-showcase-wrapper .collection_swiper-nav-action:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background: rgb(var(--line-color));
  bottom: 0px;
  left: 0px;
}
.collection-showcase-wrapper swiper-container {
  width: 100%;
}
.collection-showcase-wrapper swiper-slide{
  height: auto;
}
@media only screen and (min-width: 768px) {
  .collection-showcase-wrapper .collection-showcase-header {
    flex-direction: row;
    margin-bottom: calc(2.5rem * var(--body-scale));
  }
  .collection-showcase-wrapper .collection-showcase-head{
    flex-grow: 1;
  }
  .collection-showcase-wrapper .collection_swiper-nav-action{
    margin-left: 0;
    flex-shrink: 0;
    align-self: flex-end;
  }
  .collection-showcase-wrapper .collection_swiper-nav-action:first-child{
    margin-left: auto;
  }
}

/* Collection showcase card - START */
.collection-showcase-card a{
  display: block;
  width: 100%;
  text-decoration: none;
}
.collection-showcase-card.justify-left .collection-title{
  text-align: left;
}
.collection-showcase-card.justify-center .collection-title{
  text-align: center;
}
.collection-showcase-card.justify-right .collection-title{
  text-align: right;
}
.collection-showcase-card .collection-title span{
  font-size: var(--text-size-2xl);
  font-weight: 700;
}
.collection-showcase-card img,
.collection-showcase-card svg:not(.placeholder-svg svg),
.collection-showcase-card .placeholder-svg {
  aspect-ratio: var(--_image-aspect-ratio, 1/1);
  width: 100%;
  height: auto;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.collection-showcase-card .placeholder-svg {
  background-color: rgb(var(--image-background, 244 244 244));
}
.collection-showcase-card .placeholder-svg svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: static;
  object-fit: initial;
}
.collection-showcase-card.circle img, 
.collection-showcase-card.circle svg:not(.placeholder-svg svg),
.collection-showcase-card.circle .placeholder-svg {
  --_image-aspect-ratio: 1/1;
  border-radius: 50%;
}
.collection-showcase-card.square img,
.collection-showcase-card.square svg:not(.placeholder-svg svg),
.collection-showcase-card.square .placeholder-svg {
  --_image-aspect-ratio: 1/1;
  border-radius: calc(.3px * var(--layout-radius));
}
.collection-showcase-card.rectangle img,
.collection-showcase-card.rectangle svg:not(.placeholder-svg svg),
.collection-showcase-card.rectangle .placeholder-svg {
  --_image-aspect-ratio: 4/3;
  border-radius: calc(.3px * var(--layout-radius));
}
.collection-showcase-card[class*="blob"] img,
.collection-showcase-card[class*="blob"] svg:not(.placeholder-svg svg),
.collection-showcase-card[class*="blob"] .placeholder-svg {
  --_image-aspect-ratio: 1/1;
}
.collection-showcase-card.blob-square img,
.collection-showcase-card.blob-square svg:not(.placeholder-svg svg),
.collection-showcase-card.blob-square .placeholder-svg {
  border-radius: 29% 71% 27% 73% / 70% 24% 76% 30%;
}
.collection-showcase-card.blob-circle img,
.collection-showcase-card.blob-circle svg:not(.placeholder-svg svg),
.collection-showcase-card.blob-circle .placeholder-svg {
  border-radius: 46% 54% 46% 54% / 61% 44% 56% 39%;
}
.collection-showcase-card.blob-triangle img,
.collection-showcase-card.blob-triangle svg:not(.placeholder-svg svg),
.collection-showcase-card.blob-triangle .placeholder-svg {
  border-radius: 50% 50% 48% 52% / 80% 78% 22% 20%;
}
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .collection-showcase-card{
    aspect-ratio: var(--_image-aspect-ratio, 1/1);
    overflow: hidden;
    position: relative;
    z-index: 0;
  }
  .collection-showcase-card .placeholder-svg {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .collection-showcase-card.show-shadow{
    box-shadow: 0 0 12px rgb(var(--overlay-background) / 0.5);
  }
  .collection-showcase-card.show-background{
    background-color: rgb(var(--secondary-background));
  }
  .collection-showcase-card.show-border{
    border: 1px solid rgb(var(--border-color));
  }
  .collection-showcase-card.circle, 
  .collection-showcase-card.circle .collection-title{
    --_image-aspect-ratio: 1/1;
    border-radius: 50%;
  }
  .collection-showcase-card.square, 
  .collection-showcase-card.square .collection-title{
    --_image-aspect-ratio: 1/1;
    border-radius: calc(.3px * var(--layout-radius));
  }
  .collection-showcase-card.rectangle, 
  .collection-showcase-card.rectangle .collection-title{
    --_image-aspect-ratio: 4/3;
    border-radius: calc(.3px * var(--layout-radius));
  }
  .collection-showcase-card[class*="blob"]{
    --_image-aspect-ratio: 1/1;
  }
  .collection-showcase-card.blob-square, 
  .collection-showcase-card.blob-square .collection-title{
    border-radius: 29% 71% 27% 73% / 70% 24% 76% 30%;
  }
  .collection-showcase-card.blob-circle, 
  .collection-showcase-card.blob-circle .collection-title{
    border-radius: 46% 54% 46% 54% / 61% 44% 56% 39%;
  }
  .collection-showcase-card.blob-triangle, 
  .collection-showcase-card.blob-triangle .collection-title{
    border-radius: 50% 50% 48% 52% / 80% 78% 22% 20%;
  }
  .collection-showcase-card .collection-title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: rgb(var(--secondary-background) / 0);
    display: flex;
    align-items: center;
    padding: calc(2rem * var(--body-scale));
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: background-color 300ms ease-in-out, backdrop-filter 300ms ease-in-out, -webkit-backdrop-filter 300ms ease-in-out;
  }
  .collection-showcase-card.justify-left .collection-title{
    justify-content: flex-start;
  }
  .collection-showcase-card.justify-center .collection-title{
    justify-content: center;
  }
  .collection-showcase-card.justify-right .collection-title{
    justify-content: flex-end;
  }
  .collection-showcase-card a:hover .collection-title, 
  .collection-showcase-card a:focus-visible .collection-title{
    background-color: rgb(var(--secondary-background) / 0.9);
    backdrop-filter: blur(.125rem);
    -webkit-backdrop-filter: blur(.125rem);
  }
  .collection-showcase-card .collection-title span{
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
  }
  .collection-showcase-card a:hover .collection-title span, 
  .collection-showcase-card a:focus-visible .collection-title span{
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: none), (pointer: coarse), (max-width: 767px) {
  .collection-showcase-card a{
    display: flex;
    flex-direction: column;
    row-gap: calc(1.25rem * var(--body-scale));
  }
  .collection-showcase-card.justify-left a{
    align-items: flex-start;
  }
  .collection-showcase-card.justify-center a{
    align-items: center;
  }
  .collection-showcase-card.justify-right a{
    align-items: flex-end;
  }
  .collection-showcase-card .collection-title span{
    font-size: var(--text-size-xl);
  }
  .collection-showcase-card.show-shadow img,
  .collection-showcase-card.show-shadow svg{
    box-shadow: 0 0 12px rgb(var(--overlay-background) / 0.2);
  }
  .collection-showcase-card.show-background img, 
  .collection-showcase-card.show-background svg{
    background-color: rgb(var(--secondary-background));
  }
  .collection-showcase-card.show-border img, 
  .collection-showcase-card.show-border svg{
    border: 1px solid rgb(var(--border-color));
  }
}
/* Collection showcase card - END */
