.swiper {
  width: 100%;
  height: 78vh;
}
.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}
.swiper-slide h2 {
  color: #fff;
  font-family: owners-wide, sans-serif;
  font-weight: bolder;
  font-style: normal;
  letter-spacing: 0.16em;
  margin-bottom: 0.625rem;
  padding: 0 0 0 1.563rem;
  text-transform: uppercase;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.6));
}
.swiper-slide p {
  color: #dadada;
  font-family: owners-wide, sans-serif;
  font-size: 1em;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.2;
  padding: 0 1.563rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.swiper-slide a {
  margin: 1.25rem 1.563rem 3.438rem 1.563rem;
  padding: 0.438em 1.875rem;
  font-size: 0.9rem;
}
.swiper .btn-lg {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-bottom: 2em;
}
.swiper .btn-lg i {
  font-size: 1.6rem;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--brand-yellow);
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #fff;
}

.swiper-slide-hero {
  margin-bottom: 0.5em;
}

.swiper-helper {
  background-color: #000;
  height: 80px;
}

.btn-lg {
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.display-5 {
  font-family: "MADE Dillan", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #000;
}

.bundles-section {
  background-color: var(--body-color);
  padding-top: 0;
  padding-bottom: 1em;
}

.bundles-section h1 {
  color: #000;
}

.product-image {
  border: 2px solid #ccc !important;
  border-radius: 1em;
}

.product-info {
  /*background-color: rgb(243, 189, 72, 0.8);*/
  padding: 1em;
  text-align: center;
}

.product-info h3 {
  color: var(--brand-coral);
}

.product-title {
  color: #000;
  font-family: owners-wide, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  margin-bottom: 0.5em;
}

.product-price {
  color: #000;
  font-family: "MADE Dillan", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 0.2em;
}

/*Zoom In*/
.product-in img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.product-in:hover img {
  border: 2px solid var(--brand-yellow) !important;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.swiper-wrapper {
  background-color: transparent;
}

/* Circles Carousel Styles */
.product-circle-image {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  max-width: 80px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-circle-name {
  color: #000;
  font-family: "MADE Dillan", sans-serif;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0;
}
#circles {
  overflow: hidden;
  height: 160px;
}
.circles-carousel {
  position: relative;
  margin: 0;
  height: 200px;
}
.circles-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  flex-shrink: 0;
}
.circles-carousel .product-in {
  text-decoration: none;
  color: inherit;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  transition: transform 0.3s ease;
}
.circles-carousel .product-in:hover {
  transform: translateY(-5px);
}
.circles-carousel .product-in:hover .product-circle-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.circles-carousel .swiper-button-next,
.circles-carousel .swiper-button-prev {
  color: #000;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-top: -40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.circles-carousel .swiper-button-next:after,
.circles-carousel .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}
.circles-carousel .swiper-pagination {
  position: relative;
  margin-top: 20px;
}
.circles-carousel .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.circles-carousel .swiper-pagination-bullet-active {
  background: #000;
}

/* Artist Carousel Styles */
.artist-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0;
}
.artist-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 18px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
  cursor: grab;
  padding: 0.8em;
}
.artist-carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.artist-carousel ul {
  display: flex;
  gap: 1em;
  padding: 0;
  margin: 0;
  list-style: none;
}
.artist-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 160px;
  height: 160px;
  border-radius: 6px;
  background-color: #000;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.artist-card.active {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: scale(1.05);
}
.artist-card-name {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: "MADE Dillan", sans-serif;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  padding: 0.7rem 0.2rem;
  border-radius: 6px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.artist-carousel-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,  0, 0, 0.12);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  margin: 0 1rem;
  transition: background 0.2s;
  z-index: 2;
}
.artist-carousel-arrow:active {
  background: #eee;
}

.section-distribute {
  background-color: var(--brand-background-light-blue);
}

.section-newsletter {
  background-color: var(--brand-background-yellow);
}
.section-newsletter h4 {
  color: var(--brand-yellow);
  font-size: 2em;
}

.distribute-gallery {
  display: grid;
  grid-template-rows: 1fr;
  grid-column-gap: 18px;
  grid-row-gap: 1rem;
  height: 380px;
  overflow: auto;
  padding-top: 12px;
  padding-left: 2em;
  scroll-snap-type: both mandatory;
  scroll-padding: 1rem;
  width: 100%;
}
.distribute-gallery li {
  background-color: var(--container-color);
  border-radius: 1em;
  border-color: #000;
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  height: 340px;
  padding: 1.2rem;
  text-align: center;
  scroll-snap-align: center;
  transition: all ease 0.4s;
  cursor: crosshair;
  box-shadow: -6px 6px #fff;
}
.distribute-gallery li:hover {
  transform: translateY(-10px);
  box-shadow: -5px 6px 0px rgba(0, 0, 0, 0.8) !important;
}

.distribute-gallery li:nth-child(1) {
  /*box-shadow: -6px 6px var(--brand-light-blue);*/
  background-image: url('/store/img/colaborate/texture-1.webp');
}
.distribute-gallery li:nth-child(2) {
  /*box-shadow: -6px 6px var(--brand-coral);*/
  background-image: url('/store/img/colaborate/texture-2.webp');
}
.distribute-gallery li:nth-child(3) {
  /*box-shadow: -6px 6px var(--brand-yellow);*/
  background-image: url('/store/img/colaborate/texture-3.webp');
}
.distribute-gallery li:nth-child(4) {
  /*box-shadow: -6px 6px var(--brand-blue);*/
  background-image: url('/store/img/colaborate/texture-4.webp');
}

.distribute-gallery p {
  color: var(--text-color);
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.1em;
  margin-bottom: 2em;
}
.distribute-gallery img {
  max-width: 160px;
}
.distribute-gallery.active {
  scroll-snap-type: unset;
}

/** Mediaquery large display **/
@media (min-width: 1981px) {
  .distribute-gallery {
    grid-template-columns: repeat(10, 20vw);
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 1920px) {
  .distribute-gallery {
    grid-template-columns: repeat(10, 20vw);
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 1200px) {
  .distribute-gallery {
    grid-template-columns: repeat(10, 20vw);
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

@media (max-width: 480px) {
  .distribute-gallery {
    grid-template-columns: repeat(10, 80vw);
    overflow: auto;
  }
}

@media (max-width: 600px) {
  .artist-card {
    width: 160px;
    height: 160px;
  }
  .artist-carousel {
    max-width: 100vw;
    padding: 0.8em;
  }
}
