.product-sticky-form {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.block-product-card__modal .product-sticky-form {
  display: none !important;
}

.product-sticky-form .product-sticky-content {
  position: relative;
  width: 100%;
  padding: 20px 40px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-sticky-content .product-sticky-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
 
.product-sticky-content .product-sticky-opt {
  position: relative;
}

.product-sticky-info .product-sticky-info__image-content {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.product-sticky-info__image-content .product-sticky-info__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--variant-selector-border-radius);
}

.placeholder-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid rgba(var(--color-text), var(--variant-selector-border-opacity));
}

.placeholder-svg.hide {
  display: none;
}

.product-sticky-info .product-sticky-info__title {
  font-weight: 600;
}

.product-sticky-opt .product-detail__form {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-sticky-opt .product-detail__form .product-sticky-opt-right {
  display: flex;
  gap: 10px;
}

.product-sticky-opt .product-detail__form .form__buttons .btn-product-sticky .bps-label {
  display: none;
}

.product-sticky-opt .product-detail__form .form__buttons .btn-product-sticky .bps-label.bps-label-show {
  display: flex;
}

.product-sticky-opt .form__error-message {
  margin: 0;
}

.placeholder__image {
  width: 30px;
  height: 30px;
}

@media (max-width: 959px) {
  .product-sticky-form .product-sticky-content {
    gap: 5px;
    padding: 10px;
  }

  .product-sticky-content .product-sticky-info {
    gap: 8px;
  }

  .product-sticky-info .product-sticky-info__image-content {
    width: 46px;
    height: 46px;
  }

  .product-sticky-content .product-sticky-info .product-sticky-info__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }

  .product-sticky-opt .product-detail__form .form__buttons .icon-cart {
    width: 14px;
    height: 14px;
  }

  .product-sticky-opt .product-detail__form .form__buttons .btn-product-sticky {
    padding: 8px 15px;
    font-size: var(--body4-font-size);
  }

  .product-sticky-opt .product-detail__form .product-sticky-opt-right {
    flex-direction: column;
  }

  .product-sticky-opt theme-input-number {
    width: 85px;
    flex-shrink: 0;
  }

  .product-sticky-opt .shopline-product-form .product-sticky-opt-right theme-input-number {
    display: none;
  }

  .product-sticky-opt .shopline-product-form theme-select {
    display: none;
  }
}