.single-product-wrap {
  padding-top: 2em;
}
.single-product-wrap > .row {
  --bs-gutter-x: 3.5rem;
}
.single-product-wrap .product-image img {
  width: 100%;
}
.single-product-wrap .product-info {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.single-product-wrap .product-title {
  display: flex;
  align-items: end;
  gap: 1em;
}
.single-product-wrap .product-title h2 {
  font-size: 34px;
  font-weight: 600;
}
.single-product-wrap .product-title > span {
  font-size: 18px;
  font-weight: 500;
}
.single-product-wrap .tag-wrap {
  display: inline-flex;
  gap: 26px;
  border: 1px solid var(--light-gray);
  padding: 4px 18px 5px;
  font-size: 15px;
  align-items: center;
  position: relative;
}
.single-product-wrap .tag-wrap > span {
  display: flex;
  place-content: center;
  position: relative;
}
.single-product-wrap .tag-wrap > span:not(:last-child):after {
  width: 1px;
  height: 100%;
  background-color: #eee;
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
}
.single-product-wrap .tag-wrap .icon-info {
  width: 16px;
  height: 24px;
  margin-right: 6px;
}
.single-product-wrap .price-info {
  display: flex;
  gap: 1em;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.single-product-wrap .price-info .product-price {
  margin: 0;
  font-weight: 700;
  font-size: 34px;
}
.single-product-wrap .price-info .selection {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.single-product-wrap .price-info .selection label {
  min-width: 85px;
}
.single-product-wrap .price-info .selection select {
  width: 100%;
}
/* STREAMING_CHUNK:Initializing design variables... */
/* STREAMING_CHUNK:Styling the layout and structural container... */
.stepper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  user-select: none;
  /* STREAMING_CHUNK:Styling the numeric input element... */
}
.stepper__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 48px;
  padding: 0;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  /* STREAMING_CHUNK:Configuring button hover and active interactive states... */
  /* STREAMING_CHUNK:Setting up specific button corner geometries... */
}
.stepper__btn:focus-visible {
  outline: 2px solid #084c31;
  outline-offset: 2px;
}
.stepper__btn:focus {
  background-color: #084c31 !important;
}
.stepper__btn:hover:not(:disabled) {
  background-color: #084c31 !important;
  filter: brightness(92%);
}
.stepper__btn:active:not(:disabled) {
  transform: scale(0.96);
}
.stepper__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.stepper__btn--decrement {
  background-color: #084c31 !important;
  border-radius: 24px 0 0 24px;
}
.stepper__btn--increment {
  background-color: #719354;
  border-radius: 0 24px 24px 0;
}
.stepper.theme-orange .stepper__btn {
  background-color: var(--theme-orange);
}
.stepper.disabled {
  pointer-events: none;
}
.stepper__value {
  display: block;
  width: 66px !important;
  height: 48px !important;
  background-color: transparent !important;
  border: 1px solid transparent !important;
  border-radius: 6px;
  padding: 0;
  margin: 0;
  text-align: center;
  color: #111827;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  box-sizing: border-box;
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  /* STREAMING_CHUNK:Suppressing native browser number spin controls... */
  -moz-appearance: textfield;
  /* STREAMING_CHUNK:Defining focus and selection highlights... */
}
.stepper__value::-webkit-outer-spin-button, .stepper__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stepper__value:focus {
  outline: none;
  box-shadow: none;
}
.stepper__value:focus {
  background-color: rgba(8, 76, 49, 0.02);
  border-color: rgba(8, 76, 49, 0.3);
  box-shadow: 0 0 0 4px rgba(8, 76, 49, 0.15);
}
.stepper__value::selection {
  background-color: rgba(113, 147, 84, 0.25);
}
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.ac {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ac h2.ac-header {
  margin: 0;
  padding: 0;
}
.ac .ac-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-family);
  padding: 16px 15px;
  background-color: #f4f5f4;
  color: #0a1f16;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
}
.ac .ac-trigger:focus, .ac .ac-trigger:hover {
  background-color: #f4f5f4 !important;
}
.ac .ac-trigger::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #084c31;
  mask-image: url("../images/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("../images/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: 12px 5px;
  opacity: 0.6;
}
.ac .ac-trigger:hover {
  background-color: #eff0ef;
}
.ac .ac-trigger:focus-visible {
  outline: 2px solid rgba(8, 76, 49, 0.4);
  outline-offset: -2px;
}
.ac .ac-panel {
  background-color: #ffffff;
  overflow: hidden;
  transition: height 400ms ease;
}
.ac .ac-panel .ac-text {
  padding: 14px 18px;
  font-family: var(--font-family);
}
.ac .ac-text {
  margin: 0;
  padding: 24px 15px;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.6;
  font-family: var(--font-family);
}
.ac .ac-text p + p {
  margin-top: 16px;
}
.ac.is-active {
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.ac.is-active .ac-trigger {
  background-color: #f4f5f4;
  border-bottom: 1px solid #dfe2e6;
}
.ac.is-active .ac-trigger::after {
  transform: rotate(-180deg);
  opacity: 1;
}
