.cart-symbol-btn {
  position: relative;
  min-width: 42px;
  height: 36px;
  padding: 0 9px;
  justify-content: center;
}

.cart-symbol-btn > i {
  font-size: 19px;
  line-height: 1;
}

.detail-cart-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.detail-cart-actions #modal-add-cart-btn {
  flex: 1 1 auto;
}

.detail-open-cart-btn {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  min-height: 48px;
  border: 1px solid #222;
  border-radius: 0;
  background: #fff;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.detail-open-cart-btn > i {
  font-size: 20px;
  line-height: 1;
}

.detail-open-cart-btn:hover,
.detail-open-cart-btn:focus-visible {
  background: #222;
  color: #fff;
}

.detail-open-cart-btn:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}

.detail-open-cart-btn .cart-badge {
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  font-size: 9px;
  line-height: 15px;
}

@media (max-width: 640px) {
  .detail-open-cart-btn {
    flex-basis: 48px;
    width: 48px;
  }
}
