.card-item {
  position: relative;
  background-color: #20232F;
  border-radius: 24px;
}

.card-item .image{
  margin-bottom: 15px;
  position: relative;
}

.card-item .image .youtube{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-item .body {
  position: relative;
  padding: 0 15px;
}

.card-item .cart-buttons {
  position: relative;
  padding: 0 15px;
  padding-bottom: 15px;
  margin: 15px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.card-item .characters {
  position: relative;
  padding: 0 15px;
  margin: 15px 0;
}

.card-item .characters .character {
  font-size: 12px;
  margin: 10px 0;
  padding-left: 0;
  line-height: 1;
  color: #fff;
  opacity: .6;
  font-weight: 100;
}

@media (max-width: 1024px) {
  .card-item .characters {
    padding: 0 5px;
    gap: 0px;
  }
  .card-item .characters .character {
    font-size: 8px;
    margin: 5px 0;
    padding-left: 0px;
  }
}

.card-item .img .brand {
  padding: 24px 10px 30px;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  color: #afb6c3;
  text-align: center;
  margin: 0;
}

.card-item .img .brand span {
  border-radius: 8px;
  padding: 4px 6px;
  background-color: #fafafa;
}

.card-item .img .labels {
  position: absolute;
  display: flex;
  align-items: center;
  left: 15px;
  top: 18px;
  gap: 10px;
  width: auto;
  font-size: 10px;
  z-index: 1;
}

.card-heading {
  height: 56px;
  display: flex;
  align-items: center;
}

.card-heading a {
  position: absolute;
  right: 15px;
  top: 18px;
  font-size: 26px;
  color: #fff;
  line-height: 0;
  height: 26px;
}



@media (max-width: 959px) and (min-width: 1024px), (max-width: 389px) {
  .card-heading a{
    top: 10px;
  }
  .card-heading {
    height: 46px;
  }
}

.card-item .img .labels label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: auto;
  height: 24px;
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.card-item .img .labels label.new {
  width: auto;
  height: 24px;
  padding: 0 10px;
  background-color: transparent;
  border: 1px solid #8E85FF;
}

.card-item .img .labels label.top {
  width: auto;
  height: 24px;
  padding: 0 10px;
  background-color: transparent;
  border: 1px solid #AD71D2;
}

@media (max-width: 1024px) {
  .card-item .body{
    padding: 0 5px;
  }
  .card-item .body .description{
    font-size: 10px!important;
  }
  .card-item{
    border-radius: 16px;
  }
  .card-item .img .labels {
    display: row;
    top: 10px;
    left: 10px;
    gap: 4px;
  }
  .card-item .img .labels label{
    border-radius: 4px;
    height: 16px;
    font-size: 8px;
  }
  .card-item .img .labels label.new{
    height: 16px;
  }
  .card-item .img .labels label.top{
    height: 16px;
  }
  .card-item .img .labels {
    display: grid;
  }
  .card-heading {
    height: 36px;
  }
  .card-heading a {
    right: 10px;
    top: 10px;
    font-size: 16px;
    height: 16px;
  }
}

.card-item .img .colors {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  left: 12px;
  bottom: 12px;
  gap: 4px;
}

.card-item .img .colors a,
.card-item .img .colors span {
  border-radius: 100%;
  width: 16px;
  height: 16px;
  background-color: var(--clr);
  box-shadow: inset 0 -2px 8px 0 rgba(0, 0, 0, 0.05);
  font-size: 0;
}

.card-item .img .colors a {
  filter: drop-shadow(1px 1px 3px transparent);
  transition: filter 0.3s;
}

.card-item .img .colors a:hover {
  filter: drop-shadow(1px 1px 3px #888);
}

.card-item .img .colors span {
  position: relative;
}

.card-item .img .colors span:before {
  content: "";
  border-radius: 100%;
  display: block;
  margin: -2px;
  width: 18px;
  height: 18px;
  border: 1px solid #853103;
}

.card-item .img .btns {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 16px;
  bottom: 16px;
  gap: 8px;
  --font-size: 20px;
  --padding: 10px;
}

@media (max-width: 959px) and (min-width: 1024px), (max-width: 389px) {
  .card-item .img .btns {
    right: 10px;
    bottom: 10px;
    --padding: 8px;
    --font-size: 14px;
  }
}

.card-item .img .btns a {
  font-size: var(--font-size);
  backdrop-filter: blur(8px);
  background-color: rgba(11, 13, 15, 0.2);
  border-radius: 40px;
  padding: var(--padding);
  color: #fff;
  text-decoration: unset;
}

@media (max-width: 959px) {
  .card-item .img .btns a:first-child {
    display: none;
  }
}

@media (pointer: fine) {
  .card-item .img .btns a {
    opacity: 0;
    transition: background-color 0.3s, margin-bottom 0.3s, opacity 0.3s;
  }

  .card-item .img .btns a:not(:last-child) {
    margin-bottom: -40px;
  }
}

.card-item .img .btns a:hover {
  background-color: rgba(11, 13, 15, 0.5);
}

.card-item .img .btns a span {
  display: flex;
}

.card-item .img .btns a:has(.icon-add-to-cart) {
  background-color: #fa7a35;
}

.card-item .img .btns a:has(.icon-add-to-cart):hover {
  background-color: #f05806;
}

.card-item .img img {
  max-height: 232px;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.3s;
}

.card-item a.link-product {
  text-decoration: unset;
  margin: 5px 0;
}

.card-item a.link-product:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.card-item a.link-product .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 1024px) {
  .card-item a.link-product .name {
    font-size: 16px;
  }
}

.card-item .body .description {
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.card-item .body .description span {
  font-weight: 100;
}

.card-item .price {
  margin: 15px 0 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
}

.card-item .price .old-price {
  margin: 0 8px;
  font-weight: 200;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  position: relative;
}

.card-item .price .old-price:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #838da1;
  transform: rotate(0deg) translateY(0);
  transform-origin: center;
  z-index: 0;
  box-shadow: 0 0 1px #838da1;
}

.card-item .price[data-discount]:after {
  content: attr(data-discount);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background-color: #FF5A3E;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

@media (max-width: 1024px) {
  .card-item .price {
    font-size: 15px;
  }
  .card-item .price .old-price{
    font-size: 8px;
    margin: 0 4px;
  }
  .card-item .price[data-discount]:after {
    padding: 4px 6px;
    font-size: 10px;
    position: absolute;
    right: 5px;
    bottom: 0;
  }
  .card-item .cart-buttons{
    padding: 0 5px;
    padding-bottom: 10px;
  }
}

.card-item .stoc {
  font-weight: 700;
  font-size: 16px;
  color: #aa0800;
  margin: 8px 0 0;
}

.card-item:hover .btns a {
  margin-bottom: 0 !important;
  opacity: 1;
}

/*# sourceMappingURL=card-item.css.map */
