/** Lookbook Page Styles START */

.lookbook {
  padding: 18px 0 80px
}

.lookbook-page-info {
  display: grid;
  grid-template-areas: "gallery info";
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: 0 70px;
  align-items: start;
}

.lookbook-page-sticky-info {
  grid-area: info;
}

.lookbook-page-sticky-grid {
  display: grid;
  grid-template-areas: "name name"
                       "price banner"
                       "steps steps"
                       "buy buy";
  grid-template-columns: 0.5fr auto;
  align-items: start;
}

.lookbook-page-gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 14px;
  grid-template-rows: auto auto;
  align-self: start;
}

.lookbook-page-gallery-image {
  grid-column: 1/2;
}

.lookbook-page-gallery-video {
  grid-column: 2/3;
  position: relative;
}

.lookbook-page-gallery-seconds .lookbook-page-gallery-video {
  grid-column: auto;
}

.lookbook-page-gallery-image,
.lookbook-page-gallery-video {
  width: 100%;
  height: auto;
  aspect-ratio: 383 / 575;
  max-height: 575px;
}

.lookbook-page-gallery-image img,
.lookbook-page-gallery-video video,
.lookbook-page-gallery-video img {
  width: 100%;
  height: 100%;
  line-height: 0;
  object-fit: cover;
}

.lookbook-page-gallery-video-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.lookbook-page-gallery-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: var(--basicTransition);
  z-index: 2;
}

.lookbook-page-gallery-video-play:hover svg {
  transform: scale(1.2);
}

.lookbook-page-gallery-video-play svg {
  width: 25px;
  height: 28px;
  margin-left: 10px;
  transition: var(--basicTransition);
}

.lookbook-page-gallery-image,
.lookbook-page-gallery-video,
.lookbook-page-gallery-small-image {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.lookbook-page-gallery-seconds {
  grid-column: 1/3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.lookbook-page-gallery-small-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 144 / 229;
  flex-shrink: 0;
}

.lookbook-page-gallery-small-image.hidden-image {
  display: none;
}

.lookbook-page-gallery-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  line-height: 0;
}

.lookbook-page-gallery-more {
  align-self: center;
  justify-self: start;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: var(--blackTitle, #2B2B2B);
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
}

.lookbook-page-gallery-more:hover {
  background-color: rgba(247, 200, 104, 0.15);
  border: 1px solid rgba(247, 200, 104, 0.5);
}

.lookbook-page-gallery-more svg {
  width: 20px;
  height: 20px;
  stroke: var(--blackTitle, #2B2B2B);
  transition: var(--basicTransition);
}

.lookbook-page-gallery-more:hover svg {
  stroke: #FFBF3D;
}

.lookbook-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.lookbook-product {
  padding: 30px; 
  background-color: #FFFBF2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 6px rgba(83, 83, 83, 0.2);
  border-radius: 14px;
  height: auto !important;
  max-width: 780px;
}

.lookbook-products-title {
  margin-top: 80px;
  margin-bottom: 40px;
  font-family: 'Quincy CF';
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 100%;
  color: #2B2B2B;
}

.lookbook-product-item  {
  display: grid;
  grid-template-columns: minmax(158px, 277px) 1fr;
  grid-gap: 0 35px;
  height: 100%;
}

.lookbook-product-item-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 277px;
  min-height: 323px;
  min-width: 158px;
  aspect-ratio: 277 / 323;
  align-self: start;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  line-height: 0;
  overflow: hidden;
  grid-area: image;
  flex-shrink: 0;
}

.lookbook-product-item-size-wrapper {
  grid-area: size;
  margin-top: 20px;
}

.lookbook-product-item-size {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lookbook-product-item-size-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #0E0E0E;
  max-width: 240px;
  flex-shrink: 0;
}

.lookbook-product-item-size-dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: transparent solid;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  flex-direction: column;
  gap: 8px;
}

.lookbook-product-item-size-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.lookbook-product-item-size-dropdown svg {
  width: 20px;
  height: 20px;
}

.lookbook-product-item-size-dropdown .show svg {
  transform: rotate(180deg);
}

.lookbook-product-item-size-dropdown-menu.show {
  display: flex;
  gap: 20px;
}

.lookbook-product-item-size-dropdown-menu .dropdown-item {
  padding: 0;
  margin: 0;
}

.lookbook-product-item-size-grid-button {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  display: flex;
  align-items: flex-end;
  color: #0E0E0E;
  cursor: pointer;
  gap: 4px;
  flex-shrink: 0;
  padding: 0px 0px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  min-width: 119px;
}

.lookbook-product-item-size-grid-button:hover {
  color: #00988E;
  font-weight: 500;
  border-bottom: 1px solid #00988E;
}

.lookbook-product-item-size-grid-button img {
  width: 22px;
  height: 11px;
  object-fit: cover;
}

.lookbook-product-item-size-dropdown-menu .dropdown-item .input_checkbox:checked + label, .lookbook-product-item-size-dropdown-menu .dropdown-item .input_checkbox:not(:checked) + label {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.lookbook-product-item-size .product-page-size-dropdown {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}

.lookbook-product-item-size .product-page-size-select {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 50px;
  background: var(--white, #fff);
  color: var(--blackTitle, #2b2b2b);
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  cursor: pointer;
  transition: var(--basicTransition);
}

.lookbook-product-item-size .product-page-size-select svg {
  width: 18px;
  height: 10px;
  flex-shrink: 0;
  transition: var(--basicTransition);
}

.lookbook-product-item-size .product-page-size-dropdown.open .product-page-size-select {
  border-color: rgba(247, 200, 104, .7);
}

.lookbook-product-item-size .product-page-size-dropdown.open .product-page-size-select svg {
  transform: rotate(180deg);
}

.lookbook-product-item-size .product-page-sizes-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 8px;
  background: var(--white, #fff);
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--fastTransition);
  z-index: 12;
}

.lookbook-product-item-size .product-page-size-dropdown.open .product-page-sizes-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lookbook-product-item-size .product-page-size-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--blackTitle, #2b2b2b);
  background: transparent;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: lowercase;
  cursor: pointer;
}

.lookbook-product-item-size .product-page-size-option:hover,
.lookbook-product-item-size .product-page-sizes-list-item.checked .product-page-size-option {
  background: rgba(247, 200, 104, .15);
}

.lookbook-product-item-size .product-page-size-option span:last-child {
  color: #848484;
  font-size: 12px;
  text-align: right;
}

.lookbook-product-item-image-placeholder {
  height: 100%;
  width: 100%;
  background-color: #f4f4f4;
}

.lookbook-product-item-wishlist {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 18px;
  right: 18px;
  visibility: hidden;
  opacity: 0;
}

.lookbook-product-item-wishlist.active,
.lookbook-product-item-image-wrapper:hover .lookbook-product-item-wishlist {
  opacity: 1;
  visibility: visible;
}

.lookbook-product-item-wishlist svg {
  min-height: 18px;
  max-height: 18px;
  width: auto;
}

.lookbook-product-item-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  object-fit: cover;
}

.lookbook-product-item-name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-area: name;
}

.lookbook-product-item-params {
  grid-area: unset;
  padding: 0 0 5px;
  overflow-x: auto;
}

.lookbook-product-item-params .product-page-param span {
  flex-shrink: 0;
}

.lookbook-product-item-name {
  font-family: 'Quincy CF';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: #2B2B2B;
}

.lookbook-product-item-color {
  padding-top: 20px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  width: 100%;
}

.lookbook-product-item-color.has-scroll {
  padding-bottom: 5px;
}

.lookbook-product-item-color-item label input {
  display: none;
}

.lookbook-product-item-color-wrapp {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: var(--basicTransition);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lookbook-product-item-color-item label input:checked ~ .lookbook-product-item-color-wrapp {
  border-color: var(--grey);
}

.lookbook-product-item-color-wrapp span,
.lookbook-product-item-color-wrapp img {
  position: relative;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  overflow: hidden;
  width: 26px;
  height: 26px;
}

.lookbook-product-item-price {
  grid-area: price;
  margin-top: 30px;
}

.lookbook-product-item-price-text {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  display: flex;
  align-items: center;
  color: #525252;
}

.lookbook-product-item-price-text .old {
  font-size: 18px;
  text-decoration: line-through;
  margin-right: 12px;
}

.lookbook-product-item-buy-wrapper {
  grid-area: buy;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lookbook-page-price-button-wishlist-button {
  display: none;
}


.lookbook-product-item-buy-wishlist-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 25px;
  max-width: 234px;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 100%;
  text-align: center;
  background: transparent;
  color: #0E0E0E;
  flex-shrink: 0;
  max-height: 51px;
}

.lookbook-product-item-buy-wishlist-button span {
  width: 100%;
}

.lookbook-product-item-buy-wishlist-button:hover,
.lookbook-product-item-buy-wishlist-button.active {
  background: rgba(247, 200, 104, 0.15);
  border: 1px solid rgba(247, 200, 104, 0.5);
}

.lookbook-product-item-buy-wishlist-button svg {
  width: 24px;
  height: 21px;
}

.lookbook-product-item-buy-wishlist-button svg .contour,
.lookbook-product-item-buy-wishlist-button svg .fill {
  transition: var(--basicTransition);
}

.lookbook-product-item-buy-wishlist-button svg .contour {
  fill: rgba(0, 0, 0, 0.2)
}

.lookbook-product-item-buy-wishlist-button:hover svg .contour,
.lookbook-product-item-buy-wishlist-button.active svg .contour {
  fill: #F7C868
}

.lookbook-product-item-buy-wishlist-button:hover svg .fill,
.lookbook-product-item-buy-wishlist-button.active svg .fill {
  fill: #F7C868
}

.lookbook-product-item-buy-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 30px;
  gap: 10px;
  background: #F7C868;
  border-radius: 100px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: #0E0E0E;
  box-shadow: inset 4px 4px 6px transparent!important;
  cursor: pointer;
  width: 100%;
  max-width: 158px;
  max-height: 51px;
  height: 100%;
}

.lookbook-product-item-buy-button:hover {
  background: #FFBF3D;
  box-shadow: inset 4px 4px 6px rgba(126, 126, 126, 0.2)!important;
}

.lookbook-page-name-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-area: name;
}

.lookbook-page-name {
  font-family: 'Quincy CF';
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 100%;
  color: var(--blackTitle, #2b2b2b);
  margin: 0;
  padding: 0
}

.lookbook-page-rating-wrapper {
  display: flex;
  gap:14px;
  align-items: center;
}

.lookbook-page-price-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 44px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #525252;
  margin-top: 46px;
  grid-area: price;
}

.lookbook-page-price-text-wrapper {
  min-width: 229px;
  max-width: 229px;
  position: relative;
}

.lookbook-page-price-wrapper .old {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
  text-decoration-line: line-through;
  color: #2A2A2A;
}

.lookbook-page-price-wrapper:has(.old) {
  color: #D75D46;
  position: relative;
}

.lookbook-page-star-discount {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(11.42deg);
  flex-shrink: 0;
  right: 0;
  top: -29px;
}

.lookbook-page-star-discount span {
  position: absolute;
  font-family: 'Quincy CF';
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 38px;
  color: #FFFFFF;
}

.lookbook-page-info-badge {
  display: flex;
  align-items: end;
  gap: 24px;
  grid-area: banner;
  margin-left: 89px;
  margin-top: 10px;
}

.lookbook-page-info-badge-wrapper {
  padding: 15px 30px;
  background: #EAF5F4;
  border-radius: 20px;
  position: relative;
}

.lookbook-page-info-badge-wrapper svg {
  bottom: 18px;
  width: 45px;
  height: 24px;
  right: -30px;
  position: absolute;
}

.lookbook-page-info-badge-title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 140%;
  color: #0E0E0E;
}

.lookbook-page-info-badge-list {
  margin-bottom: 0;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  font-size: 15px;
  line-height: 140%;
  color: #0E0E0E;
}

.lookbook-page-steps {
  grid-area: steps;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
}

.lookbook-page-steps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}

.lookbook-page-steps-item-number {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #404040;
  background: #FDF2DA;
  border-radius: 50%;
  width: 61px;
  height: 60px;
  flex-shrink: 0;
}

.lookbook-page-steps-item:not(:last-child)::after {
  content: '';
  height: 1px;
  width: 9999px;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  top: 30px;
  left: calc(50% + 31px);
}
.lookbook-page-steps-item:last-child::after {
  content: '';
  height: 1px;
  width: 9999px;
  background: white;
  display: block;
  position: absolute;
  top: 30px;
  left: calc(50% + 31px);
}

.lookbook-page-steps-item-text {
  max-width: 215px;
  min-height: 68px;
  width: 100%;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  display: flex;
  text-align: center;

  color: #0E0E0E;
}


.lookbook-page-buy {
  grid-area: buy;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .lookbook-products {
    grid-template-columns: 1fr;
  }

  .lookbook-product {
    padding: 16px;
    max-width: unset;
  }
  
  .lookbook-products-title {
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
  }
  
  .lookbook-product-item {
    grid-template-columns: 158px 1fr;
    grid-gap: 0 20px;
  }

  .lookbook-product-item-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
  }

  .lookbook-product-item-params {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .lookbook-product-item-params .product-page-params {
    gap: 10px;
    flex-direction: row;
  }

  .lookbook-product-item-params .product-page-param img,
  .lookbook-product-item-params .product-page-param svg {
    width: 14px;
    height: 14px;
  }
  
  .lookbook-product-item-params .product-page-param span {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
  }

  .lookbook-product-item-image-wrapper {
    min-height: unset;
  }

  .lookbook-product-item-price,
  .lookbook-product-item-size-wrapper {
    margin-top: 18px;
  }

  .lookbook-product-item-color {
    padding-top: 18px;
  }

  .lookbook-product-item-size {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .lookbook-product-item-size-grid-button {    
    width: 100%;
    justify-content: center;
    gap: 21px;
  }
  
  .lookbook-product-item-size-dropdown {
    min-width: 141px;
    max-width: unset;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    padding: 10px 12px;
  }

  .lookbook-product-item-size-dropdown-menu .dropdown-item .input_checkbox:checked + label,
  .lookbook-product-item-size-dropdown-menu .dropdown-item .input_checkbox:not(:checked) + label {
    white-space: normal;
  }

  .lookbook-product-item-size-dropdown-menu {
    padding: 15px 0 0;
  }

  .lookbook-product-item-size .product-page-size-dropdown {
    width: 100%;
    min-width: 141px;
  }

  .lookbook-product-item-size .product-page-size-select {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .lookbook-product-item-size .product-page-sizes-list {
    border-radius: 14px;
  }

  .lookbook-product-item-size .product-page-size-option {
    padding: 10px 12px;
    font-size: 12px;
  }

  .lookbook-product-item-price-text {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
  }

  .lookbook-product-item-buy-wrapper {
    margin-top: 20px;
  }

  .lookbook-product-item-buy {
    width: 100%;
  }

  .lookbook-product-item-buy-button {
    width: 100%;
    max-width: unset;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 120%;
    text-align: center;
  }

  .lookbook-product-item-buy-wishlist-button {
    padding: 11px 10px;
    flex-shrink: 0;
  }

  .lookbook-product-item-buy-wishlist-button svg .contour {
    fill: rgba(0, 0, 0, 0.5);
  }

  .lookbook-product-item-buy-wishlist-button span {
    display: none;
  }

  .lookbook-page-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .lookbook-page-steps-item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .lookbook-page-steps-item-text {
    text-align: left;
    min-height: unset;
    max-width: unset;
  }

  .lookbook-page-steps-item:not(:last-child)::after {
    display: none;
  }

  .lookbook-page-steps-item:not(:first-child)::before {
    content: '';
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    position: absolute;
    left: 30px;
    top: -20px;
  }

  .lookbook-page-info {
    grid-template-areas: "name"
                         "gallery"
                         "price"
                         "buy"
                         "banner"
                         "steps";
    grid-template-columns: 1fr;
  }

  .lookbook-page-sticky-info {
    display: contents;
  }

  .lookbook-page-sticky-grid {
    display: contents;
  }

  .lookbook-page-name-wrapper {
    margin-bottom: 30px;
  }

  .lookbook-page-name {
    font-family: 'Quincy CF';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
  }

  .lookbook-page-gallery {
    display: flex;
    grid-template-rows: initial;
    grid-template-columns: initial;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 24px;
    padding-bottom: 10px;
  }

  .lookbook-page-gallery-image {
    grid-column: initial;
    width: min(62vw, 232px);
    order: 1;
  }

  .lookbook-page-gallery-video {
    grid-column: initial;
    order: 2;
  }

  .lookbook-page-gallery-seconds .lookbook-page-gallery-video {
    order: 3;
  }

  .lookbook-page-gallery-seconds {
    display: contents;
    grid-column: initial;
  }

  .lookbook-page-gallery-image,
  .lookbook-page-gallery-video {
    min-width: initial;
    aspect-ratio: 144 / 229;
    max-height: none;
  }

  .lookbook-page-gallery-image {
    max-width: min(62vw, 232px);
    flex: 0 0 min(62vw, 232px);
    scroll-snap-align: start;
  }

  .lookbook-page-gallery-video,
  .lookbook-page-gallery-small-image {
    width: min(62vw, 232px);
    max-width: min(62vw, 232px);
    max-height: none;
    flex: 0 0 min(62vw, 232px);
    scroll-snap-align: start;
  }

  .lookbook-page-gallery-small-image {
    order: 3;
  }

  .lookbook-page-gallery-small-image img {
    max-height: none;
    min-height: 0;
  }

  .lookbook-page-gallery-more {
    display: none;
  }

  .lookbook-page-gallery-small-image.hidden-image {
    display: block;
  }

  .lookbook-page-gallery-more span {
    overflow: hidden;
    white-space: nowrap;
  }

  .lookbook-page-gallery-more svg {
    display: none;
  }

  .lookbook-page-price-button-wishlist-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 23px;
  }

  .lookbook-page-price-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 0;
    border-radius: 14px 14px 0 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    margin-top: 24px;
  }

  .lookbook-page-price-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 147px;
    max-width: unset;
  }

  .lookbook-page-star-discount {
    right: unset;
    left: -29px;
    top: -36px;
    width: 53.89px;
    height: 51.61px;
    filter: drop-shadow(0px 1.37514px 3.43784px rgba(0, 0, 0, 0.25));
    transform: rotate(-8deg);
  }

  .lookbook-page-star-discount span {
    font-family: 'Quincy CF';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 101%;
    text-transform: uppercase;
  }

  .lookbook-page-price-wrapper .old {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    text-decoration-line: line-through;
    color: #525252;
  }

  .lookbook-page-buy {
    padding: 0 16px 16px;
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 0;
    border-radius: 0 0 14px 14px;
  }


  .product-page-buy-installments {
    margin-top: 14px;
  }

  .lookbook-page-info-badge {
    margin-top: 34px;
    justify-self: center;
    margin-left: unset;
  }

  .lookbook-page-steps {
    margin-top: 30px;
  }
}

/** Lookbook Page Styles END */
