@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

#sternify-upsell {
  --product_title-type: text;
  --product_title-font_size: 18px;
  --product_title-font_weight: 600;
  --product_title-color: rgba(0, 0, 0, 1);
  --subtitle-font_size: 22px;
  --subtitle-type: text;
  --subtitle-font_weight: 500;
  --subtitle-color: rgba(0, 0, 0, 1);
  --price-font_size: 16px;
  --price-type: text;
  --price-font_weight: 400;
  --price-color: rgba(64, 64, 64, 1);
  --price_compareAt-font_size: 15px;
  --price_compareAt-type: text;
  --price_compareAt-font_weight: 100;
  --price_compareAt-color: rgba(0, 0, 0, 1);
  --badge-type: box;
  --badge-background_color: rgba(255, 17, 17, 1);
  --badge-text_color: rgba(255, 255, 255, 1);
  --checkbox-type: box;
  --checkbox-background_color: rgba(70, 61, 61, 1);
  --checkbox-text_color: rgba(255, 255, 255, 1);
  --box_color-type: box;
  --box_color-border_color: rgba(0, 0, 0, 1);
  --box_color-background_color: rgba(255, 255, 255, 1);
  --box_color-hovered_background_color: rgba(255, 255, 255, 1);
  --box_color-border_width: 2px;
  --box_color-border_radius: 0px;
  --image-type: box;
  --image-image_size: 75px;
  --image-border_radius: 0px;
  --button-background_color: rgba(0, 0, 0, 1);
  --button-hover_background_color: rgba(51, 51, 51, 1);
  --button-text_color: rgba(255, 255, 255, 1);
  --button-font_size: 16px;
  --button-font_weight: 600;
  --button-border_radius: 4px;
  --button-padding: 12px;
  --plus_icon-background_color: rgba(0, 0, 0, 1);
  --plus_icon-text_color: rgba(255, 255, 255, 1);
  --plus_icon-size: 24px;
  --plus_icon-border_radius: 50%;
  --block_title-font_size: 18px;
  --block_title-font_weight: 600;
  --block_title-color: rgba(0, 0, 0, 1);
  --block_title-text_align: left;
  --footer_text-font_size: 16px;
  --footer_text-font_weight: 600;
  --footer_text-color: rgba(0, 0, 0, 1);
  margin-block: 5px;
  max-width: 550px;
  display: block;
  width: 100%;
  line-height: 1.4;
}

/* Block title styles */
.st_block_title {
  font-size: var(--block_title-font_size);
  font-weight: var(--block_title-font_weight);
  color: var(--block_title-color);
  text-align: var(--block_title-text_align);
  font-family: inherit;
  margin-bottom: 5px;
}

#sternify-upsell * {
  letter-spacing: normal;
  text-transform: initial;
}

#sternify-upsell select:focus-visible {
  outline: initial;
  outline-offset: initial;
  box-shadow: initial;
}

.st_single-upsell-checkbox * {
  box-sizing: border-box;
}

.st_single-upsell-checkbox .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  background: transparent;
  display: block;
  transition: all 0.2s ease;
  width: 100%;
}

.st_single-upsell-checkbox .cbx:not(:last-child) {
  margin-right: 6px;
}

.st_single-upsell-checkbox .cbx:hover {
  background: transparent;
}

.st_single-upsell-checkbox .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.st_single-upsell-checkbox .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.st_single-upsell-checkbox .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 12px;
  fill: none;
  stroke: var(--checkbox-text_color);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.st_single-upsell-checkbox .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.st_single-upsell-checkbox .cbx:hover span:first-child {
  border-color: rgb(28, 28, 28);
}

.st_single-upsell-checkbox .st_single-upsell-checkbox-input {
  position: absolute;
  visibility: hidden;
}

.st_single-upsell-checkbox .st_single-upsell-checkbox-input:checked+.cbx span:first-child {
  background: var(--checkbox-background_color);
  border-color: var(--checkbox-background_color);
  animation: wave-4 0.4s ease;
}

.st_single-upsell-checkbox .st_single-upsell-checkbox-input:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.st_single-upsell-checkbox .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

/* .st_single-upsell-wrapper-1 */

.st_single-upsell-wrapper-1 .st_single-upsell-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  padding-right: 20px;
  border-radius: var(--box_color-border_radius);
  border: var(--box_color-border_width) solid var(--box_color-border_color);
  background-color: var(--box_color-background_color);
  gap: 10px;
  min-height: 90px;
  position: relative;
}

.st_single-upsell-wrapper-1 .st_single-upsell-content-wrapper[badge-active="true"] {
  padding-top: 18px;
}

.st_single-upsell-wrapper-1 .st_single-upsell-content-wrapper:hover {
  background-color: var(--box_color-hovered_background_color);
  transition: all 0.5s ease;
}

.st_single-upsell-wrapper-1 .st_single-upsell-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  align-items: center;
}

.st_single-upsell-wrapper-1 .st_single-upsell-img {
  min-width: var(--image-image_size);
  min-height: var(--image-image_size);
  width: var(--image-image_size);
  height: var(--image-image_size);
  border-radius: var(--image-border_radius);
  display: flex;
}

.st_single-upsell-wrapper-1 .st_single-upsell-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--image-border_radius);
}

.st_single-upsell-wrapper-1 .st_single-upsell-img-text-wrapper {
  grid-column: span 9 / span 9;
  display: flex;
  gap: 10px;
  align-items: center;
}

.st_single-upsell-wrapper-1 .st_single-upsell-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.st_single-upsell-wrapper-1 .st_single-upsell-title {
  font-size: var(--product_title-font_size);
  color: var(--product_title-color);
  font-weight: var(--product_title-font_weight, 500);
}

.st_single-upsell-wrapper-1 .st_single-upsell-subtitle {
  font-size: var(--subtitle-font_size);
  font-weight: var(--subtitle-font_weight);
  color: var(--subtitle-color);
}

.st_single-upsell-wrapper-1 .st_single-upsell-price-wrapper {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.st_single-upsell-wrapper-1 .st_single-upsell-price {
  font-size: var(--price-font_size);
  font-weight: var(--price-font_weight, 500);
  color: var(--price-color);
}

.st_single-upsell-wrapper-1 .st_single-upsell-compareAt-price {
  font-size: var(--price_compareAt-font_size);
  font-weight: var(--price_compareAt-font_weight);
  color: var(--price_compareAt-color);
  text-decoration: line-through;
}

.st_single-upsell-wrapper-1 .st_single-upsell-badge {
  position: absolute;
  top: 0;
  right: 4%;
  background-color: var(--badge-background_color);
  border-radius: 8px;
  padding: 4px 10px;
  color: var(--badge-text_color);
  font-size: 14px;
  font-weight: 500;
  font-family: sans-serif;
  transform: translate(0%, -50%);
  z-index: 20;
}

/* .st_single-upsell-wrapper-2 */

.st_single-upsell-wrapper-2 .st_single-upsell-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  border-radius: var(--box_color-border_radius);
  border: var(--box_color-border_width) solid var(--box_color-border_color);
  background-color: var(--box_color-background_color);
  gap: 10px;
}

.st_single-upsell-wrapper-2 .st_single-upsell-content-wrapper:hover {
  background-color: var(--box_color-hovered_background_color);
  transition: all 0.5s ease;
}

.st_single-upsell-wrapper-2 .st_single-upsell-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  align-items: center;
}

.st_single-upsell-wrapper-2 .st_single-upsell-img {
  min-width: var(--image-image_size);
  min-height: var(--image-image_size);
  width: var(--image-image_size);
  height: var(--image-image_size);
  border-radius: var(--image-border_radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.st_single-upsell-wrapper-2 .st_single-upsell-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--image-border_radius);
}

.st_single-upsell-wrapper-2 .st_single-upsell-img-text-wrapper {
  grid-column: span 9 / span 9;
  display: flex;
  align-items: center;
  gap: 15px;
}

.st_single-upsell-wrapper-2 .st_single-upsell-title {
  font-size: var(--product_title-font_size);
  color: var(--product_title-color);
  font-weight: var(--product_title-font_weight, 500);
}

.st_single-upsell-wrapper-2 .st_single-upsell-subtitle {
  font-size: var(--subtitle-font_size);
  color: var(--subtitle-color);
  font-weight: var(--subtitle-font_weight);
}

.st_single-upsell-wrapper-2 .st_single-upsell-badge {
  background-color: var(--badge-background_color);
  border-radius: 8px;
  padding: 4px 10px;
  color: var(--badge-text_color);
  font-size: 14px;
  font-weight: 500;
  font-family: sans-serif;
  width: fit-content;
  margin-bottom: 4px;
}

.st_single-upsell-wrapper-2 .st_single-upsell-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.st_single-upsell-wrapper-2 .st_single-upsell-price-wrapper {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-right: 5px;
}

.st_single-upsell-wrapper-2 .st_single-upsell-price {
  font-size: var(--price-font_size);
  font-weight: var(--price-font_weight, 500);
  color: var(--price-color);
}

.st_single-upsell-wrapper-2 .st_single-upsell-compareAt-price {
  font-size: var(--price_compareAt-font_size);
  font-weight: var(--price_compareAt-font_weight);
  color: var(--price_compareAt-color);
  text-decoration: line-through;
}

/* .st_single-upsell-wrapper-3 */

.st_single-upsell-wrapper-3 .st_single-upsell-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  border-radius: var(--box_color-border_radius);
  border: var(--box_color-border_width) solid var(--box_color-border_color);
  background-color: var(--box_color-background_color);
  gap: 10px;
  padding: 15px 15px;
  overflow: hidden;
}

.st_single-upsell-wrapper-3 .st_single-upsell-content-wrapper:hover {
  background-color: var(--box_color-hovered_background_color);
  transition: all 0.5s ease;
}

.st_single-upsell-wrapper-3 .st_single-upsell-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  align-items: center;
}

.st_single-upsell-wrapper-3 .st_single-upsell-img {
  min-width: var(--image-image_size);
  min-height: 60px;
  width: var(--image-image_size);
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.st_single-upsell-wrapper-3 .st_single-upsell-img-wrapper {
  width: inherit;
  height: var(--image-image_size);
  position: relative;
  margin-bottom: -15px;
}

.st_single-upsell-wrapper-3 .st_single-upsell-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: var(--image-image_size);
  object-fit: cover;
  border-radius: var(--image-border_radius) var(--image-border_radius) 0px 0px;
}

.st_single-upsell-wrapper-3 .st_single-upsell-img-text-wrapper {
  grid-column: span 9 / span 9;
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
}

.st_single-upsell-wrapper-3 .st_single-upsell-title {
  font-size: var(--product_title-font_size);
  color: var(--product_title-color);
  font-weight: var(--product_title-font_weight, 500);
}

.st_single-upsell-wrapper-3 .st_single-upsell-subtitle {
  font-size: var(--subtitle-font_size);
  color: var(--subtitle-color);
  font-weight: var(--subtitle-font_weight);
}

.st_single-upsell-wrapper-3 .st_single-upsell-badge {
  background-color: var(--badge-background_color);
  color: var(--badge-text_color);
  position: absolute;
  top: -3%;
  right: 50%;
  transform: translate(50%, -50%);
  display: inline;
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 500;
  font-family: sans-serif;
  width: max-content;
  margin-bottom: 4px;
}

.st_single-upsell-wrapper-3 .st_single-upsell-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.st_single-upsell-wrapper-3 .st_single-upsell-price-wrapper {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-right: 5px;
}

.st_single-upsell-wrapper-3 .st_single-upsell-price {
  font-size: var(--price-font_size);
  font-weight: var(--price-font_weight, 500);
  color: var(--price-color);
}

.st_single-upsell-wrapper-3 .st_single-upsell-compareAt-price {
  font-size: var(--price_compareAt-font_size);
  font-weight: var(--price_compareAt-font_weight);
  color: var(--price_compareAt-color);
  text-decoration: line-through;
}

/* .st_single-upsell-wrapper-4 */

.st_single-upsell-wrapper-4 .st_single-upsell-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 15px;
  border-radius: var(--box_color-border_radius);
  border: var(--box_color-border_width) solid var(--box_color-border_color);
  background-color: var(--box_color-background_color);
  gap: 10px;
  min-height: 90px;
  position: relative;
}

.st_single-upsell-wrapper-4 .st_single-upsell-content-wrapper[badge-active="true"] {
  padding-top: 25px;
}

.st_single-upsell-wrapper-4 .st_single-upsell-content-wrapper:hover {
  background-color: var(--box_color-hovered_background_color);
  transition: all 0.5s ease;
}

.st_single-upsell-wrapper-4 .st_single-upsell-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  align-items: center;
}

.st_single-upsell-wrapper-4 .st_single-upsell-img {
  min-width: var(--image-image_size);
  min-height: var(--image-image_size);
  width: var(--image-image_size);
  height: var(--image-image_size);
  border-radius: var(--image-border_radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.st_single-upsell-wrapper-4 .st_single-upsell-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--image-border_radius);
}

.st_single-upsell-wrapper-4 .st_single-upsell-img-text-wrapper {
  grid-column: span 9 / span 9;
  display: flex;
  gap: 10px;
  align-items: center;
}

.st_single-upsell-wrapper-4 .st_single-upsell-title {
  font-size: var(--product_title-font_size);
  color: var(--product_title-color);
  font-weight: var(--product_title-font_weight, 500);
}

.st_single-upsell-wrapper-4 .st_single-upsell-subtitle {
  font-size: var(--subtitle-font_size);
  color: var(--subtitle-color);
  font-weight: var(--subtitle-font_weight);
}

.st_single-upsell-wrapper-4 .st_single-upsell-badge {
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--badge-background_color);
  color: var(--badge-text_color);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
}

.st_single-upsell-wrapper-4 .st_single-upsell-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.st_single-upsell-wrapper-4 .st_single-upsell-price-wrapper {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-right: 5px;
}

.st_single-upsell-wrapper-4 .st_single-upsell-price {
  font-size: var(--price-font_size);
  font-weight: var(--price-font_weight, 500);
  color: var(--price-color);
}

.st_single-upsell-wrapper-4 .st_single-upsell-compareAt-price {
  font-size: var(--price_compareAt-font_size);
  font-weight: var(--price_compareAt-font_weight);
  color: var(--price_compareAt-color);
  text-decoration: line-through;
}

a.st_single-upsell-title {
  text-decoration: none;
}

a.st_single-upsell-title:hover {
  text-decoration: underline;
}

.st_single-upsell-variant-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 5px;
}

.st_single-upsell-variant-selector>.st_option-wrapper:only-child {
  grid-column: span 2;
}

.st_single-upsell-variant-selector>.st_option-wrapper:only-child .st_variant-select {
  width: auto;
}

.st_option-wrapper label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.st_variant-select {
  font-size: 14px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 0 1px var(--box_color-border_color) !important;
  border: none;
  border-radius: 5px;
  padding: 6px 24px 6px 6px;
  margin: 0;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='4' viewBox='0 0 10 4' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 4L0.669872 0.25L9.33013 0.249999L5 4Z' fill='black'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-color: var(--box_color-background_color) !important;
  background-size: initial;
  color: var(--product_title-color) !important;
  outline: none;
  max-width: 100%;
  width: 100%;
  height: auto;
  min-height: auto;
}

/* Multiple Upsells Styles */
.st_multi_upsells_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Plus Icon Between Upsells */
.st_multi_plus_icon_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.st_multi_plus_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--plus_icon-size);
  height: var(--plus_icon-size);
  border-radius: var(--plus_icon-border_radius);
  background-color: var(--plus_icon-background_color);
  color: var(--plus_icon-text_color);
  font-size: calc(var(--plus_icon-size) * 0.75);
  font-weight: bold;
}

.st_multi_checkbox * {
  box-sizing: border-box;
}

.st_multi_checkbox .st_multi_cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  background: transparent;
  display: block;
  transition: all 0.2s ease;
  width: 100%;
}

.st_multi_checkbox .st_multi_cbx:not(:last-child) {
  margin-right: 6px;
}

.st_multi_checkbox .st_multi_cbx:hover {
  background: transparent;
}

.st_multi_checkbox .st_multi_cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.st_multi_checkbox .st_multi_cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.st_multi_checkbox .st_multi_cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 12px;
  fill: none;
  stroke: var(--checkbox-text_color);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.st_multi_checkbox .st_multi_cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.st_multi_checkbox .st_multi_cbx:hover span:first-child {
  border-color: var(--box_color-border_color);
}

.st_multi_checkbox .st_single-upsell-checkbox-input {
  position: absolute;
  visibility: hidden;
}

.st_multi_checkbox .st_single-upsell-checkbox-input:checked+.st_multi_cbx span:first-child {
  background: var(--checkbox-background_color);
  border-color: var(--checkbox-background_color);
  animation: wave-4 0.4s ease;
}

.st_multi_checkbox .st_single-upsell-checkbox-input:checked+.st_multi_cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.st_multi_checkbox .st_multi_svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

.st_multi_content_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 15px;
  padding-right: 20px;
  border-radius: var(--box_color-border_radius);
  border: var(--box_color-border_width) solid var(--box_color-border_color);
  background-color: var(--box_color-background_color);
  gap: 10px;
  min-height: 90px;
  position: relative;
}

.st_multi_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: 100%;
  align-items: center;
}

.st_multi_img {
  min-width: var(--image-image_size);
  min-height: var(--image-image_size);
  width: var(--image-image_size);
  height: var(--image-image_size);
  border-radius: var(--image-border_radius);
  display: flex;
}

.st_multi_img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--image-border_radius);
}

.st_multi_img_text_wrapper {
  grid-column: span 9 / span 9;
  display: flex;
  gap: 10px;
  align-items: center;
}

.st_multi_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.st_multi_title {
  font-size: var(--product_title-font_size);
  color: var(--product_title-color);
  font-weight: var(--product_title-font_weight, 500);
  text-decoration: none;
  width: fit-content;
}

.st_multi_title:hover {
  text-decoration: underline;
}

.st_multi_subtitle {
  font-size: var(--subtitle-font_size);
  color: var(--subtitle-color);
  font-weight: var(--subtitle-font_weight);
}

.st_multi_price_wrapper {
  grid-column: span 3 / span 3;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.st_multi_price {
  font-size: var(--price-font_size);
  font-weight: var(--price-font_weight, 500);
  color: var(--price-color);
}

.st_multi_compareAt_price {
  font-size: var(--price_compareAt-font_size);
  font-weight: var(--price_compareAt-font_weight);
  color: var(--price_compareAt-color);
  text-decoration: line-through;
}

.st_multi_badge {
  background-color: var(--badge-background_color);
  border-radius: 8px;
  padding: 4px 10px;
  color: var(--badge-text_color);
  font-size: 14px;
  font-weight: 500;
  font-family: sans-serif;
  width: fit-content;
  margin-bottom: 4px;
  position: relative;
}

.st_multi_variant_selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 5px;
}

.st_multi_variant_selector>.st_multi_option_wrapper:only-child {
  grid-column: span 2;
}

.st_multi_variant_select {
  font-size: 14px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 0 0 0 1px var(--box_color-border_color) !important;
  border: none;
  border-radius: 5px;
  padding: 6px 24px 6px 6px;
  margin: 0;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='4' viewBox='0 0 10 4' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 4L0.669872 0.25L9.33013 0.249999L5 4Z' fill='black'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 8px center !important;
  background-color: var(--box_color-background_color) !important;
  background-size: initial;
  color: var(--product_title-color) !important;
  outline: none;
  max-width: 100%;
  width: 100%;
  height: auto;
  min-height: auto;
}

/* Multiple Upsells Styles - Boxed Container */
.st_multi_boxed_container {
  border: var(--boxed_style-border_width) solid var(--boxed_style-border_color);
  border-radius: var(--boxed_style-border_radius);
  padding: var(--boxed_style-padding);
  background-color: var(--boxed_style-background_color);
}

.st_multi_block_title_centered {
  text-align: center;
  font-weight: 600;
}

/* Multiple Upsells Styles - Swiper Container */
.st_multi_swipable_container {
  position: relative;
}

.st_multi_swipable_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.st_multi_swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Customize Swiper navigation buttons */
.st_multi_swiper_button_prev,
.st_multi_swiper_button_next {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: var(--swipable_style-arrow_color);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.st_multi_swiper_button_prev {
  left: 5px;
}

.st_multi_swiper_button_next {
  right: 5px;
}

/* Arrow icons inside buttons */
.st_multi_swiper_button_prev:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.st_multi_swiper_button_next:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

/* Customize Swiper pagination bullets */
.st_multi_swiper_pagination {
  display: flex;
  gap: 5px;
}

.st_multi_swiper_bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  background-color: var(--swipable_style-dot_color);
}

.st_multi_swiper_bullet_active {
  transform: scale(1.2);
  opacity: 1;
  background-color: var(--swipable_style-active_dot_color) !important;
}

/* Custom ATC Button Styles */
.st_multi_atc_button_wrapper {
  text-align: center;
}

.st_multi_atc_button {
  background-color: var(--button-background_color);
  color: var(--button-text_color);
  border: none;
  border-radius: var(--button-border_radius);
  padding: var(--button-padding) 24px;
  font-weight: var(--button-font_weight);
  font-size: var(--button-font_size);
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.st_multi_atc_button:hover {
  background-color: var(--button-hover_background_color);
}

.st_multi_atc_button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
}

/* Spinner styles */
.st_button_spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: st-spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes st-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.st_multi_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
}

.st_multi_footer_text {
  font-weight: var(--footer_text-font_weight);
  font-size: var(--footer_text-font_size);
  color: var(--footer_text-color);
}

.st_multi_footer_price {
  font-weight: var(--footer_text-font_weight);
  font-size: var(--footer_text-font_size);
  color: var(--footer_text-color);
}

/* Error styles for out of stock */
.st_error-box {
  background-color: #ffebeb;
  color: #e41e1e;
  padding: 12px;
  margin-top: 10px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  display: none;
}

.st_upsell_error_box {
  background-color: #ffebeb;
  color: #e41e1e;
  padding: 12px;
  margin-top: 10px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

/* Unavailable selector styles */
.st_variant-select.unavailable,
.st_multi_variant_select.unavailable {
  box-shadow: 0 0 0 1px #e41e1e !important;
  border: none;
}

.st_unavailable-message {
  color: #e41e1e;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.st_variant-select.unavailable + .st_unavailable-message,
.st_multi_variant_select.unavailable + .st_unavailable-message {
  display: block;
}