#upsell h3 {
  text-transform: capitalize;
  font-size: 20px;
}

#upsell .upsell-container {
  display: flex;
  gap: 20px;
}

#upsell .upsell-item-wrapper {
  display: flex;
  gap: 18px;
  justify-content: center;
}

#upsell .upsell-item-wrapper .upsell-item {
  width: 0;
  min-width: 172px;
  position: relative;
}

#upsell .upsell-item-wrapper .upsell-item::after,
#upsell-sidebar-cart .cart-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  /* Adjust as needed for vertical centering */
  right: -15px;
  /* Adjust as needed for horizontal positioning */
  transform: translateY(-50%);
  /* Ensures perfect vertical centering */
  font-size: 18px;
  font-weight: 600;
}

#upsell .upsell-item-wrapper .upsell-item:last-child::after,
#upsell .upsell-item-wrapper .upsell-item.even::after,
#upsell-sidebar-cart .cart-item:last-child:after {
  content: "";
}

#upsell .upsell-item-wrapper .upsell-item .product-thumb {
  min-height: 232px;
  height: 232px;
  padding-bottom: 10px;
}

#upsell .upsell-item-wrapper .upsell-item .product-thumb .image img {
  width: 150px;
}

#upsell .upsell-item-wrapper .upsell-item .product-thumb .caption {
  padding-top: 0;
}

#upsell .upsell-item-wrapper .upsell-item .product-thumb .caption .name a {
  font-size: 12px;
  line-height: 18px !important;
  max-height: 36px;
}

#upsell .upsell-item-wrapper .upsell-item .product-thumb .price {
  font-size: 16px;
  line-height: 24px;
}

#upsell .upsell-item-wrapper .upsell-item .product-thumb .bottom {
  bottom: 10px;
}

#upsell .product-thumb .hover-block .product-btn-add {
  display: none;
}

#upsell .upsell-checkbox {
  position: absolute;
  z-index: 10;
}

#upsell .upsell-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

#upsell .upsell-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 282px;
}

#upsell-has-items {
  width: 100%;
}

#upsell-total-price span,
#upsell-sidebar-total-price span {
  font-weight: 600;
  font-size: 22px;
}

#btn-upsell-add-to-cart {
  width: 100%;
  background-color: #9ec152;
  border-radius: 15px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  border: none;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 32px;
  max-width: 282px;
}

#btn-upsell-add-to-cart:hover {
  background-color: #fc6d46;
}

#upsell-sidebar-cart {
  display: flex;
  justify-content: center;
  gap: 18px;
  text-transform: none;
  padding: 16px 15px 0;
}

#upsell-sidebar-cart .cart-item {
  position: relative;
  border: 1px solid #d1d3d4;
  flex-basis: 118px;
}

#upsell-sidebar-cart .cart-item.more {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

#upsell-sidebar-cart .cart-item img {
  height: auto;
}

#upsell-sidebar-total-price {
  text-transform: none;
}

@media (max-width: 1199.98px) {
  #upsell h3 {
    text-align: center;
  }

  #upsell .upsell-container {
    flex-direction: column;
    margin-bottom: 15px;
  }

  #upsell .upsell-item-wrapper .upsell-item .product-thumb {
    min-height: auto !important;
    height: auto !important;
  }

  #upsell .upsell-item-wrapper .upsell-item .product-thumb .bottom {
    position: static;
  }

  #upsell .upsell-item-wrapper .upsell-item .product-thumb .caption {
    min-height: auto !important;
    height: auto !important;
  }

  #btn-upsell-add-to-cart {
    width: 75%;
    line-height: 48px;
    font-size: 18px;
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {
  #upsell .upsell-item-wrapper .upsell-item .product-thumb .caption .name {
    display: none;
  }

  #upsell .upsell-item-wrapper .upsell-item {
    flex: 1;
    min-width: auto;
    max-width: 125px;
  }
}