#collectie {
  background-color: #F6F8FA;
}
.intro-melding {
  color: #6c757d;
  text-align: center;
  padding: 0 24px 0 24px;
  margin: 2rem auto 1rem auto;
  max-width: 560px;
}

.collectie-intro {
  max-width: 1200px;
  width: calc(100% - 48px);
  margin: auto;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 1rem;
}

/* Dames collectie */
.collectie-intro-dames {
  background: linear-gradient(135deg, #ffffba, #f5f599);
}
.collectie-intro-dames h1 {
  background: linear-gradient(150deg, #100d02 0%, #5c4b06 70%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Heren collectie */
.collectie-intro-heren {
  background: linear-gradient(135deg, #bae9ff, #99f5b6);
}
.collectie-intro-heren h1 {
  background: linear-gradient(150deg, #000000 0%, #065c44 70%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* MOODBOOK */
.collectie-intro-moodbook {
  background: linear-gradient(135deg, #f9dec1, #ffa04c);
}
.collectie-intro-moodbook h1 {
  background: linear-gradient(150deg, #000000 0%, #5c2b06 70%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Over ons */
.collectie-intro-over-ons {
  background: linear-gradient(135deg, #c2ffba, #4bff87);
}
.collectie-intro-over-ons h1 {
  background: linear-gradient(150deg, #000000 0%, #065c19 70%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.collectie-intro h1 {
  font-family: 'Recoleta';
  margin: 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .collectie-intro {
    width: calc(100% - 24px);
    padding: 32px 0;
  }
}


.collectie-nav-filters {
  position: sticky;
  top: -90px;
  z-index: 4;
  /* background-color: rgba(253, 254, 255, 0.9); */
  background: linear-gradient(180deg, rgba(253, 254, 255, 0), rgba(255, 255, 255, 1));
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 1rem;
}

.collectie-dames-heren-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 16px;
}
.collectie-dames-heren-nav a {
  background-color: transparent;
  border: 1px solid #000000;

  position: relative;
  color: #838392;
  padding: .5rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  transition: .3s all;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  margin-bottom: .25rem;
}

.collectie-dames-heren-nav a:hover {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.collectie-dames-heren-nav .active {
  background-color: #000000;
  color: #ffffff;
}



.masonry-wrapper {
  padding: 1.5rem;
  max-width: 1480px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
.masonry {
  --columns: 1;
  --gap: 10px;
  width: 100%;
  position: relative;
  transition: height 400ms ease;
}
@media only screen and (max-width: 999px) and (min-width: 716px) {
  .masonry {
    --columns: 2;
  }
}
@media only screen and (min-width: 1000px) {
  .masonry {
    --columns: 3;
  }
}
.masonry-item {
  width: calc((100% - (var(--gap) * (var(--columns) - 1))) / var(--columns));
  min-width: 100px;
  display: inline-block;
  vertical-align: top;
  transition: left 400ms ease, top 400ms ease, clip-path 400ms ease-out;  
  z-index: 1;
}
.masonry-content {
  width: 100%;
  height: auto;
  object-fit: cover;
}












.filter-menu-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  display: block;
  width: 90vw;
}
.filter-menu {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding: .75rem 0;
  margin: 0 3rem;
}
.filter-menu li {
  display: inline-block;
  margin: 0 .25rem 0rem .25rem;
  padding: 6px 10px;
  color: #676767;
  cursor: pointer;
  transition: .2s ease all;
  border: 1px solid transparent;
  border-radius: 50px;
}
.filter-menu li {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}



.filter-menu .van-bommel {
  font-weight: bold;
  color: #FFA800;
  margin-bottom: -1px;
  
}

.filter-menu .van-bommel img {
  /* display: block; */
  height: 20px;
  margin-right: 2px;
  margin-left: -0.25rem;
  animation: sparkle 3s infinite ease-in-out;
}
.filter-menu .van-bommel.current {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff;
}
.filter-menu .van-bommel:hover {
  border: 1px solid #FFA800;

}
.filter-menu .van-bommel.current:hover {
  border: 1px solid #000000;
}


.filter-menu li:hover {
  color: #000000;
  border: 1px solid rgb(150, 149, 160);
}
.filter-menu li.current {
  color: #f5f5f5;
  background-color: #000000;
  border: 1px solid rgb(0, 0, 0);
}
.filter-menu::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}
.left, .right {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  border: .0625rem solid rgb(138, 138, 138);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  transition: .3s all;
}
.left:hover, .right:hover {
  cursor: pointer;
  transform: translateY(-50%) scale(1.1);
}
.left {
  left: 0;
}
.right {
  right: 0;
}
.left img, .right img {
  position: absolute;
  height: 1rem;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 600px) {
  .filter-menu {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding: .5rem 0;
  margin: 0 2.5rem;
}

  .left, .right {
    height: 2rem;
    width: 2rem;
  }
  
}









.border {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(130deg, #ffffff, #e4f1f1) border-box;
  -webkit-mask:
     linear-gradient(#fff 0 0) padding-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}



.collection-item-card {
  height: auto;
  border-radius: 20px;
  /* border: 1px solid #eeeeee; */
  background-color: #ffffff;
  overflow: hidden;

  /* background: linear-gradient(160deg, #ffffff, #fcfcfc, #ffffff, #f8f8f8, #ffffff); */
}
.collection-item-card img {
 transition: 0.7s all;
 border-bottom: 1px solid #f0f0f0;
}


.collection-card-content {
  padding: 24px 24px 4px 24px;
}



.brand-name {
  font-family: 'Recoleta';
  background: linear-gradient(150deg, #000000 0%, #06445c 70%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.brand-name h2 {
  font-size: 1.5rem;

}

.info-art p {
  color: rgb(223, 223, 223);
  margin: 4px auto;
}

.art-nr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}


.art-nr p:nth-child(1) {
  color: #676767;
  font-size: .875rem;
}

.art-nr p:nth-child(2) {
  font-size: 1.25rem;
  font-weight: 600;

  background: linear-gradient(150deg, #000000 0%, #06445c 70%, #000000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.art-nr span {
  font-size: .875rem;
}





