.lia-model {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.lia-svg-container {
  width: 100%;
  max-width: 550px;
  height: auto;
}

.lia-svg-container svg {
  width: 450px;
}

.filter-btn {
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: #111111;
  color: #fff;
  border-color: #1e1e1e;
}

.filter-btn:hover {
  background-color: #111111;
  color: white;
}

@media (min-width: 992px) {
  .wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 1280px) {
  .product-name {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .collection-hero {
    padding-top: 80px;
  }

  .lia-svg-container {
    max-width: 300px;
  }

  .lia-svg-container svg {
    width: 300px;
  }
}

.product-collection-item {
  perspective: 1000px;
}

.product-collection-item .product-image {
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

.product-collection-item:hover .product-image {
  transform: scale(1.2);
  filter: brightness(1.05);
}

.dress-icon-box svg {
  transition: color 0.35s ease-in-out;
}

.dress-icon-box {
  transition: background-color 0.35s ease-in-out;
}

.dress-icon-box:hover {
  background-color: #512f17;
}

.dress-icon-box:hover svg {
  color: #fff;
}
