.product-bundle-info-wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.product-bundle-item {
  background-color: #FFFCF6;
  padding: 20px;
  border-radius: 10px;
}
.product-bundle-info-wrapper img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
}
.product-bundle-info {
  display: flex;
  gap: 20px;
  min-height: 100px;
}
.product-bundle-text span {
  font-size: var(--font-heading);
  line-height: var(--font-line-heading);
}
.product-bundle-text span p {
  margin: 0;
  padding: 0;
  margin-top: 6px;
  font-size: var(--font-text);
  line-height: var(--font-line-text);
  color: #687787;
}
.product-bundle-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--font-heading);
  line-height: var(--font-line-heading);
}
.product-bundle-price {
  color: #A26A53;
}
.product-bundle-compare-price {
  color: #BCBCBC;
}
.product-bundle-form__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-bundle-form__form {
  font-size: var(--font-heading);
  line-height: var(--font-line-heading);
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.product-bundle-form__form .select {
  border: none;
  font-size: var(--font-heading);
  line-height: var(--font-line-heading);
  height: 56px;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #fff;
  color: #5C5B5B;
}
.product-bundle-form__form .combo-box__color-swatch,
.product-bundle-form__form .select__color-swatch {
  width: 36px;
  height: 36px;
}
.product-bundle-form__form .combo-box__option-item:not([hidden]) {
  padding: 10px 20px;
}
.product-bundle-form__form .combo-box {
  width: auto;
  min-width: 200px;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 2px 12px 0px #00000012;
}
.product-bundle-form__form .product-form__payment-container {
  margin: 0;
}
.product-bundle-form__form .btn {
  font-weight: 400;
  background: #B18976;
  border: 1px solid transparent;
  color: #fff;
}
.product-bundle-form__form .product-form__buy-buttons {
  margin-left: auto;
}
.product-bundle-form__form .btn:hover {
  font-weight: 400;
}
.product-bundle-text p {
  color: #687787;
}

@media screen and (min-width: 741px) {
  .bundle-sale-main .swiper-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

@media screen and (max-width: 740px) {
  .product-bundle-item {
    padding: 10px;
  }
  .product-bundle-form__variants {
    gap: 10px;
  }
  .product-bundle-info-wrapper img {
    width: 60px;
    height: 60px;
  }
  .product-bundle-form__form {
    font-size: 14px;
  }
  .product-bundle-text span {
    font-size: 14px;
  }
  .product-bundle-price-wrapper {
    font-size: 14px;
  }
  .product-bundle-info {
    gap: 15px;
  }
  .product-bundle-item .btn {
    padding: 11px 40px;
  }
}