.shop-the-look-section .shop-the-look-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--shop-the-look--gap);
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  .shop-the-look-section .shop-the-look-container {
    gap: var(--shop-the-look--gap);
    flex-direction: column;
  }
}
.shop-the-look-section .shop-the-look-container .shop-the-look-text-block {
  display: flex;
  justify-content: center;
}
.shop-the-look-section .shop-the-look-container .shop-the-look-text-block.half {
  width: calc(50% - var(--shop-the-look--gap) / 2);
}
@media only screen and (max-width: 991.98px) {
  .shop-the-look-section .shop-the-look-container .shop-the-look-text-block.half {
    width: 100%;
  }
}
.shop-the-look-section .shop-the-look-container .shop-the-look-text-block .shop-the-look-text-content {
  text-align: center;
  width: 50%;
}
.shop-the-look-section .shop-the-look-image-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.shop-the-look-section .shop-the-look-image-block.half {
  width: calc(50% - var(--shop-the-look--gap) / 2);
}
@media only screen and (max-width: 991.98px) {
  .shop-the-look-section .shop-the-look-image-block.half {
    width: 100%;
  }
}
.shop-the-look-section .shop-the-look-image-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  top: 5px;
  left: 5px;
  padding: 10px 20px 10px 5px;
  background: rgba(0, 0, 0, 0.1882352941);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  color: #ffffff;
  cursor: pointer;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-overlay svg {
  width: 20px;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-overlay:hover {
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  color: #e2e1df;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-overlay.hidden {
  display: none;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-products {
  display: none;
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.1882352941);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 10px;
  color: #ffffff;
  max-width: 95%;
  z-index: 10;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-products ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-products ul li {
  margin-bottom: 5px;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-products ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.shop-the-look-section .shop-the-look-image-block .shop-the-look-products ul li a:hover {
  color: #e2e1df;
}
.shop-the-look-section .shop-the-look-image-block.show-products .shop-the-look-overlay {
  display: none;
}
.shop-the-look-section .shop-the-look-image-block.show-products .shop-the-look-products {
  display: block;
}
