@media (max-width: 768px) {
  .elementor-widget-cak_product_items {
    overflow: hidden;
  }
}

.cak-product-items-section .cak-product-items-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}

.cak-product-items-section .cak-product-items-section-header h2 {
  color: #09090B;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -1px;
  margin: 0;
}

.cak-product-items-section .cak-product-items-section-header a,
.cak-product-items-section .cak-product-list .button {
  font-size: 21px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.5;
  fill: #09090B;
  color: #09090B;
  background-color: #FFF;
  border: 2px solid #FF330A;
  border-radius: 40px;
  padding: 18px 37px;
  transition: all .3s;
  max-height: 70px;
}

.cak-product-items-section .cak-product-items-section-header a.button-small {
  display: none;
  border-radius: 50%;
  padding: 18px 24px;
}

.cak-product-items-section .cak-product-list a.button {
  display: inline-flex;
  fill: #09090B;
  color: #09090B;
  background-color: #A9FF00;
  border-color: #A9FF00;
  margin-top: 20px;
}

.cak-product-items-section .cak-product-list a.button.button-small {
  font-size: 28px;
  padding: 16px 19px 10px;
  max-height: 70px;
  max-width: 70px;
}

.cak-product-items-section .cak-product-list .button.button-large .icon {
  padding-left: 10px;
}

.cak-product-items-section .cak-product-items-section-header a:hover {
  color: #FFF;
  background-color: #FF330A;
  border-color: #FF330A;
}

.cak-product-items-section .cak-product-list .button:hover {
  background-color: #90DA00;
  border-color: #90DA00;
}

.cak-product-list .button .color {
  transition: all .3s;
}

.cak-product-items-section .cak-product-items-section-header a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 800;
  box-sizing: border-box;
  font-style: normal;
  padding-left: 15px;
}

.cak-product-items-section-header a.button-small:after {
  padding-left: 0;
}

.cak-product-list .cak-product-list-item {
  border-radius: 24px;
  background-color: #F2F2F6;
  padding: 30px 20px;
}

.cak-product-list-item .product-name {
  color: #09090B;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  font-style: italic;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0;
}

.cak-product-list-item .price,
.cak-product-list-item .price del {
  color: #09090B;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.cak-product-list-item .price del {
  color: #7d7d80;
}

.cak-product-list-item .price ins {
  text-decoration: none;
}

.cak-product-list-item .tags {
  display: flex;
  gap: 8px;
}

.cak-product-list-item .tag {
  background-color: #09090B;
  border-radius: 4px;
  color: #FFF;
  padding: 2px 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 12px;
  max-width: fit-content;
}

.cak-product-list-item .tag.tag-sale {
  background-color: #FF330A;
}

/* Grid */
.cak-product-items-section.grid .cak-product-list-item {
  min-height: 260px;
  padding: 40px 30px 25px;
}

.cak-product-items-section.grid .cak-product-list-item .tags {
  min-height: 40px;
}

.cak-product-items-section.grid .product-name,
.cak-product-items-section.grid .price {
  color: #FFF;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* Masonry */
.cak-product-items-section.masonry .cak-product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: masonry;
  gap: 15px;
}

.cak-product-items-section.masonry .even .product-name,
.cak-product-items-section.masonry .even .price {
  color: #FFF;
}

.cak-product-items-section.masonry .cak-product-list-item img {
  max-height: 200px;
  max-width: 200px;
  border-radius: 24px;
}

.cak-product-items-section.masonry .cak-product-list-item.even {
  grid-row: span 2;
  height: 610px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 30px;
}

.cak-product-items-section.masonry .cak-product-list-item.odd {
  grid-row: span 1;
  height: 262px;
  display: flex;
  gap: 15px;
  justify-content: space-around;
}

.cak-product-items-section.masonry .cak-product-list-item.odd .item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Carousel */
.cak-product-items-section.carousel .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.cak-product-items-section.carousel .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.cak-product-items-section.carousel .flip-card-front,
.cak-product-items-section.carousel .flip-card-back {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cak-product-items-section.carousel .flip-card-front {
	position: absolute;
  padding: 20px 25px 30px;
}

.cak-product-items-section.carousel .flip-card-back {
	transform: rotateY(180deg);
  padding: 40px 30px;
}

.cak-product-list-item.flip-card-back .product-name,
.cak-product-list-item.flip-card-back .price {
  color: #FFF;
}

.cak-product-items-section.carousel .cak-product-list-item .cak-carousel-image-wrapper {
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 24px;
}

.cak-product-items-section.carousel .cak-product-list-item img {
  max-height: 400px;
  max-width: 100%;
  border-radius: 24px;
  aspect-ratio: 1;
  object-fit: contain;
}

.cak-product-items-section.carousel .cak-product-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 610px;
  min-width: 100%;
}

.cak-product-items-section.carousel .item-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
  width: 100%;
  gap: 10px;
}

.cak-product-items-section.carousel .flip-card-back .item-content {
  align-items: start;
  flex-direction: column;
}

/* Masonry */
@media screen and (max-width: 1575px) {
  .cak-product-items-section.masonry .cak-product-list-item.odd {
    flex-direction: column;
    height: 100%;
    align-items: center;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(5),
  .cak-product-items-section.masonry .cak-product-list-item:nth-child(11),
  .cak-product-items-section.masonry .cak-product-list-item:nth-child(17) {
    height: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .cak-product-list {
    overflow: hidden;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(4) {
    order: 5 !important;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(5) {
    order: 4 !important;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(10) {
    order: 11 !important;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(11) {
    order: 10 !important;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(16) {
    order: 17 !important;
  }

  .cak-product-items-section.masonry .cak-product-list-item:nth-child(17) {
    order: 16 !important;
  }
}

@media screen and (max-width: 1024px) {
  .cak-product-items-section .cak-product-items-section-header {
    margin-bottom: 30px;
  }

  .cak-product-items-section .cak-product-items-section-header h2 {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .cak-product-items-section .cak-product-items-section-header a.button-small {
    display: block;
    font-size: 10px;
    padding: 8px 11px;
    max-height: 36px;
    max-width: 36px;
  }

  .cak-product-items-section .cak-product-items-section-header a.button-large {
    display: none;
  }
  
  .cak-product-list .cak-product-list-item {
    min-width: 300px;
  }
  
  .cak-product-list-item .product-name {
    -webkit-line-clamp: 2;
  }

  /* Carousel */
  .cak-product-items-section.carousel .cak-product-list-item img {
    max-height: 250px;
    max-width: 100%;
    border-radius: 24px;
  }
  
  .cak-product-items-section.carousel .cak-product-list-item {
    height: 460px;
  }
}

@media screen and (max-width: 1440px) {
  .cak-product-items-section.grid .cak-product-list-item,
  .cak-product-items-section.carousel .cak-product-list-item {
    margin-bottom: 55px;
  }
}