.responsive-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: scale-down;
}

.reflow-product {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .reflow-product .ref-media {
    width: 100%;
  }
}

.reflow-product .ref-media {
  width: 100%;
  margin-bottom: 2em;
  position: relative;
}

.reflow-product .ref-media .ref-preview {
  margin-bottom: var(--ref-gutter-sm);
}

.reflow-product .ref-media .ref-preview .ref-image.active {
  display: block;
}

.reflow-product .ref-media .ref-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: center no-repeat;
  background-size: cover;
  border-radius: var(--ref-border-radius);
  cursor: pointer;
}

@media (min-width: 768px) {
  .reflow-product .ref-product-data {
    padding-left: 2em;
  }
}

.reflow-product .ref-product-data {
  flex: 1;
}

.reflow-product .ref-categories {
  margin-bottom: .6em;
}

.reflow-product .ref-price {
  display: block;
  margin-bottom: 1em;
}

.reflow-product .reflow-add-to-cart.ref-product-controls {
  margin-bottom: 1em;
}

.reflow-add-to-cart.ref-product-controls .ref-quantity-widget {
  margin: 0 var(--ref-gutter-sm) var(--ref-gutter-sm) 0;
  display: none !important;
}

.ref-quantity-widget {
  display: inline-flex;
  border: 1px solid var(--ref-gray-300);
  border-radius: var(--ref-border-radius);
  box-shadow: 2px 2px 2px #0000000d;
}

.ref-quantity-widget > div:active {
  background-color: #979ca01a;
}

.ref-quantity-widget .ref-decrease {
  border-right-width: 1px;
}

.ref-quantity-widget > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 solid;
  border-color: inherit;
  cursor: pointer;
  font-size: 1.1em;
  line-height: 1.5em;
  width: 1.6em;
  padding: .2em 0;
  text-align: center;
  user-select: none;
  padding: var(--ref-input-padding);
  min-width: 32px;
}

.ref-quantity-widget .ref-increase {
  border-left-width: 1px;
}

.ref-increase span:before, .ref-increase span:after, .ref-decrease span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.ref-increase span, .ref-decrease span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
}

.ref-increase span:after {
  transform: translateY(-50%) rotate(90deg);
}

.ref-increase span:before, .ref-increase span:after, .ref-decrease span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.ref-button:active {
  position: relative;
  bottom: -1px;
}

.ref-button:hover {
  opacity: .92;
  color: var(--ref-white);
}

.ref-button:hover {
  opacity: .92;
  color: var(--ref-white);
}

.ref-button {
  display: inline-block;
  text-decoration: none;
  padding: var(--ref-btn-padding);
  background-color: var(--ref-primary);
  color: var(--ref-white);
  border-radius: var(--ref-btn-border-radius);
  line-height: 1.5;
  font-size: 1em;
  cursor: pointer;
  user-select: none;
}

.ref-summary, .ref-summary.dropdown {
  background-color: #2c2c2c;
}

.reflow-shopping-cart .ref-checkout .ref-billing-container .ref-button {
  background: #f96332;
  color: #FFFFFF;
  border: 1px solid #f96332;
  font-size: .9rem;
  padding: 4px 10px 2px;
  border-radius: 4px;
  cursor: pointer;
}

.reflow-auth-button .ref-button.ref-sign-out {
  background-color: #f96332;
  color: #FFFFFF;
  margin-left: 20px;
}

.reflow-shopping-cart .ref-message, .reflow-cart-toggler .ref-message {
  background-color: #2c2c2c;
  padding: 10px;
  text-align: center;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.price-row .h4 {
  margin-bottom: 0;
}

.price-row .btn {
  flex-shrink: 0;
}

